4 #include "qemu-common.h"
15 typedef struct QEMUClock QEMUClock
;
16 typedef void QEMUTimerCB(void *opaque
);
18 /* The real time clock should be used only for stuff which does not
19 change the virtual machine state, as it is run even if the virtual
20 machine is stopped. The real time clock has a frequency of 1000
22 extern QEMUClock
*rt_clock
;
24 /* The virtual clock is only run during the emulation. It is stopped
25 when the virtual machine is stopped. Virtual timers use a high
26 precision clock, usually cpu cycles (use ticks_per_sec). */
27 extern QEMUClock
*vm_clock
;
29 /* The host clock should be use for device models that emulate accurate
30 real time sources. It will continue to run when the virtual machine
31 is suspended, and it will reflect system time changes the host may
32 undergo (e.g. due to NTP). The host clock has the same precision as
34 extern QEMUClock
*host_clock
;
36 int64_t qemu_get_clock(QEMUClock
*clock
);
37 int64_t qemu_get_clock_ns(QEMUClock
*clock
);
38 void qemu_clock_enable(QEMUClock
*clock
, int enabled
);
40 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
);
41 void qemu_free_timer(QEMUTimer
*ts
);
42 void qemu_del_timer(QEMUTimer
*ts
);
43 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
);
44 int qemu_timer_pending(QEMUTimer
*ts
);
45 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
);
47 void qemu_run_all_timers(void);
48 int qemu_alarm_pending(void);
49 int64_t qemu_next_deadline(void);
50 void configure_alarms(char const *opt
);
51 void configure_icount(const char *option
);
52 int qemu_calculate_timeout(void);
53 void init_clocks(void);
54 int init_timer_alarm(void);
55 void quit_timers(void);
57 static inline int64_t get_ticks_per_sec(void)
62 /* compute with 96 bit intermediate result: (a*b)/c */
63 static inline uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
68 #ifdef HOST_WORDS_BIGENDIAN
78 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
79 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
82 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
86 /* real time host monotonic timer */
87 static inline int64_t get_clock_realtime(void)
91 gettimeofday(&tv
, NULL
);
92 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
95 /* Warning: don't insert tracepoints into these functions, they are
96 also used by simpletrace backend and tracepoints would cause
97 an infinite recursion! */
99 extern int64_t clock_freq
;
101 static inline int64_t get_clock(void)
104 QueryPerformanceCounter(&ti
);
105 return muldiv64(ti
.QuadPart
, get_ticks_per_sec(), clock_freq
);
110 extern int use_rt_clock
;
112 static inline int64_t get_clock(void)
114 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
115 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
118 clock_gettime(CLOCK_MONOTONIC
, &ts
);
119 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
123 /* XXX: using gettimeofday leads to problems if the date
124 changes, so it should be avoided. */
125 return get_clock_realtime();
130 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
);
131 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
);
134 typedef struct ptimer_state ptimer_state
;
135 typedef void (*ptimer_cb
)(void *opaque
);
137 ptimer_state
*ptimer_init(QEMUBH
*bh
);
138 void ptimer_set_period(ptimer_state
*s
, int64_t period
);
139 void ptimer_set_freq(ptimer_state
*s
, uint32_t freq
);
140 void ptimer_set_limit(ptimer_state
*s
, uint64_t limit
, int reload
);
141 uint64_t ptimer_get_count(ptimer_state
*s
);
142 void ptimer_set_count(ptimer_state
*s
, uint64_t count
);
143 void ptimer_run(ptimer_state
*s
, int oneshot
);
144 void ptimer_stop(ptimer_state
*s
);
145 void qemu_put_ptimer(QEMUFile
*f
, ptimer_state
*s
);
146 void qemu_get_ptimer(QEMUFile
*f
, ptimer_state
*s
);
149 int64_t qemu_icount_round(int64_t count
);
150 extern int64_t qemu_icount
;
151 extern int use_icount
;
152 extern int icount_time_shift
;
153 extern int64_t qemu_icount_bias
;
154 int64_t cpu_get_icount(void);
156 /*******************************************/
157 /* host CPU ticks (if available) */
159 #if defined(_ARCH_PPC)
161 static inline int64_t cpu_get_real_ticks(void)
165 /* This reads timebase in one 64bit go and includes Cell workaround from:
166 http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
168 __asm__
__volatile__ ("mftb %0\n\t"
173 /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
175 __asm__
__volatile__ ("mfspr %1,269\n\t" /* mftbu */
176 "mfspr %L0,268\n\t" /* mftb */
177 "mfspr %0,269\n\t" /* mftbu */
180 : "=r" (retval
), "=r" (junk
));
185 #elif defined(__i386__)
187 static inline int64_t cpu_get_real_ticks(void)
190 asm volatile ("rdtsc" : "=A" (val
));
194 #elif defined(__x86_64__)
196 static inline int64_t cpu_get_real_ticks(void)
200 asm volatile("rdtsc" : "=a" (low
), "=d" (high
));
207 #elif defined(__hppa__)
209 static inline int64_t cpu_get_real_ticks(void)
212 asm volatile ("mfctl %%cr16, %0" : "=r"(val
));
216 #elif defined(__ia64)
218 static inline int64_t cpu_get_real_ticks(void)
221 asm volatile ("mov %0 = ar.itc" : "=r"(val
) :: "memory");
225 #elif defined(__s390__)
227 static inline int64_t cpu_get_real_ticks(void)
230 asm volatile("stck 0(%1)" : "=m" (val
) : "a" (&val
) : "cc");
234 #elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
236 static inline int64_t cpu_get_real_ticks (void)
240 asm volatile("rd %%tick,%0" : "=r"(rval
));
250 asm volatile("rd %%tick,%1; srlx %1,32,%0"
251 : "=r"(rval
.i32
.high
), "=r"(rval
.i32
.low
));
256 #elif defined(__mips__) && \
257 ((defined(__mips_isa_rev) && __mips_isa_rev >= 2) || defined(__linux__))
259 * binutils wants to use rdhwr only on mips32r2
260 * but as linux kernel emulate it, it's fine
264 #define MIPS_RDHWR(rd, value) { \
265 __asm__ __volatile__ (".set push\n\t" \
266 ".set mips32r2\n\t" \
267 "rdhwr %0, "rd"\n\t" \
272 static inline int64_t cpu_get_real_ticks(void)
274 /* On kernels >= 2.6.25 rdhwr <reg>, $2 and $3 are emulated */
276 static uint32_t cyc_per_count
= 0;
278 if (!cyc_per_count
) {
279 MIPS_RDHWR("$3", cyc_per_count
);
282 MIPS_RDHWR("$2", count
);
283 return (int64_t)(count
* cyc_per_count
);
286 #elif defined(__alpha__)
288 static inline int64_t cpu_get_real_ticks(void)
293 asm volatile("rpcc %0" : "=r"(cc
));
300 /* The host CPU doesn't have an easily accessible cycle counter.
301 Just return a monotonically increasing value. This will be
302 totally wrong, but hopefully better than nothing. */
303 static inline int64_t cpu_get_real_ticks (void)
305 static int64_t ticks
= 0;
311 /* Deterministic execution requires that IO only be performed on the last
312 instruction of a TB so that interrupts take effect immediately. */
313 static inline int can_do_io(CPUState
*env
)
318 /* If not executing code then assume we are ok. */
319 if (!env
->current_tb
)
322 return env
->can_do_io
!= 0;
326 #ifdef CONFIG_PROFILER
327 static inline int64_t profile_getclock(void)
329 return cpu_get_real_ticks();
332 extern int64_t qemu_time
, qemu_time_start
;
333 extern int64_t tlb_flush_time
;
334 extern int64_t dev_time
;