]> git.proxmox.com Git - qemu.git/blob - qemu-timer.h
qemu-timer: use atexit for quit_timers
[qemu.git] / qemu-timer.h
1 #ifndef QEMU_TIMER_H
2 #define QEMU_TIMER_H
3
4 #include "qemu-common.h"
5 #include "notify.h"
6 #include <time.h>
7 #include <sys/time.h>
8
9 #ifdef _WIN32
10 #include <windows.h>
11 #endif
12
13 /* timers */
14
15 #define SCALE_MS 1000000
16 #define SCALE_US 1000
17 #define SCALE_NS 1
18
19 typedef struct QEMUClock QEMUClock;
20 typedef void QEMUTimerCB(void *opaque);
21
22 /* The real time clock should be used only for stuff which does not
23 change the virtual machine state, as it is run even if the virtual
24 machine is stopped. The real time clock has a frequency of 1000
25 Hz. */
26 extern QEMUClock *rt_clock;
27
28 /* The virtual clock is only run during the emulation. It is stopped
29 when the virtual machine is stopped. Virtual timers use a high
30 precision clock, usually cpu cycles (use ticks_per_sec). */
31 extern QEMUClock *vm_clock;
32
33 /* The host clock should be use for device models that emulate accurate
34 real time sources. It will continue to run when the virtual machine
35 is suspended, and it will reflect system time changes the host may
36 undergo (e.g. due to NTP). The host clock has the same precision as
37 the virtual clock. */
38 extern QEMUClock *host_clock;
39
40 int64_t qemu_get_clock_ns(QEMUClock *clock);
41 int64_t qemu_clock_has_timers(QEMUClock *clock);
42 int64_t qemu_clock_expired(QEMUClock *clock);
43 int64_t qemu_clock_deadline(QEMUClock *clock);
44 void qemu_clock_enable(QEMUClock *clock, int enabled);
45 void qemu_clock_warp(QEMUClock *clock);
46
47 void qemu_register_clock_reset_notifier(QEMUClock *clock, Notifier *notifier);
48 void qemu_unregister_clock_reset_notifier(QEMUClock *clock,
49 Notifier *notifier);
50
51 QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
52 QEMUTimerCB *cb, void *opaque);
53 void qemu_free_timer(QEMUTimer *ts);
54 void qemu_del_timer(QEMUTimer *ts);
55 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
56 int qemu_timer_pending(QEMUTimer *ts);
57 int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time);
58
59 void qemu_run_all_timers(void);
60 int qemu_alarm_pending(void);
61 void configure_alarms(char const *opt);
62 int qemu_calculate_timeout(void);
63 void init_clocks(void);
64 int init_timer_alarm(void);
65
66 int64_t cpu_get_ticks(void);
67 void cpu_enable_ticks(void);
68 void cpu_disable_ticks(void);
69
70 static inline QEMUTimer *qemu_new_timer_ns(QEMUClock *clock, QEMUTimerCB *cb,
71 void *opaque)
72 {
73 return qemu_new_timer(clock, SCALE_NS, cb, opaque);
74 }
75
76 static inline QEMUTimer *qemu_new_timer_ms(QEMUClock *clock, QEMUTimerCB *cb,
77 void *opaque)
78 {
79 return qemu_new_timer(clock, SCALE_MS, cb, opaque);
80 }
81
82 static inline int64_t qemu_get_clock_ms(QEMUClock *clock)
83 {
84 return qemu_get_clock_ns(clock) / SCALE_MS;
85 }
86
87 static inline int64_t get_ticks_per_sec(void)
88 {
89 return 1000000000LL;
90 }
91
92 /* real time host monotonic timer */
93 static inline int64_t get_clock_realtime(void)
94 {
95 struct timeval tv;
96
97 gettimeofday(&tv, NULL);
98 return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
99 }
100
101 /* Warning: don't insert tracepoints into these functions, they are
102 also used by simpletrace backend and tracepoints would cause
103 an infinite recursion! */
104 #ifdef _WIN32
105 extern int64_t clock_freq;
106
107 static inline int64_t get_clock(void)
108 {
109 LARGE_INTEGER ti;
110 QueryPerformanceCounter(&ti);
111 return muldiv64(ti.QuadPart, get_ticks_per_sec(), clock_freq);
112 }
113
114 #else
115
116 extern int use_rt_clock;
117
118 static inline int64_t get_clock(void)
119 {
120 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
121 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
122 if (use_rt_clock) {
123 struct timespec ts;
124 clock_gettime(CLOCK_MONOTONIC, &ts);
125 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
126 } else
127 #endif
128 {
129 /* XXX: using gettimeofday leads to problems if the date
130 changes, so it should be avoided. */
131 return get_clock_realtime();
132 }
133 }
134 #endif
135
136 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
137 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
138
139 /* ptimer.c */
140 typedef struct ptimer_state ptimer_state;
141 typedef void (*ptimer_cb)(void *opaque);
142
143 ptimer_state *ptimer_init(QEMUBH *bh);
144 void ptimer_set_period(ptimer_state *s, int64_t period);
145 void ptimer_set_freq(ptimer_state *s, uint32_t freq);
146 void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload);
147 uint64_t ptimer_get_count(ptimer_state *s);
148 void ptimer_set_count(ptimer_state *s, uint64_t count);
149 void ptimer_run(ptimer_state *s, int oneshot);
150 void ptimer_stop(ptimer_state *s);
151
152 /* icount */
153 int64_t cpu_get_icount(void);
154 int64_t cpu_get_clock(void);
155
156 /*******************************************/
157 /* host CPU ticks (if available) */
158
159 #if defined(_ARCH_PPC)
160
161 static inline int64_t cpu_get_real_ticks(void)
162 {
163 int64_t retval;
164 #ifdef _ARCH_PPC64
165 /* This reads timebase in one 64bit go and includes Cell workaround from:
166 http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
167 */
168 __asm__ __volatile__ ("mftb %0\n\t"
169 "cmpwi %0,0\n\t"
170 "beq- $-8"
171 : "=r" (retval));
172 #else
173 /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
174 unsigned long junk;
175 __asm__ __volatile__ ("mfspr %1,269\n\t" /* mftbu */
176 "mfspr %L0,268\n\t" /* mftb */
177 "mfspr %0,269\n\t" /* mftbu */
178 "cmpw %0,%1\n\t"
179 "bne $-16"
180 : "=r" (retval), "=r" (junk));
181 #endif
182 return retval;
183 }
184
185 #elif defined(__i386__)
186
187 static inline int64_t cpu_get_real_ticks(void)
188 {
189 int64_t val;
190 asm volatile ("rdtsc" : "=A" (val));
191 return val;
192 }
193
194 #elif defined(__x86_64__)
195
196 static inline int64_t cpu_get_real_ticks(void)
197 {
198 uint32_t low,high;
199 int64_t val;
200 asm volatile("rdtsc" : "=a" (low), "=d" (high));
201 val = high;
202 val <<= 32;
203 val |= low;
204 return val;
205 }
206
207 #elif defined(__hppa__)
208
209 static inline int64_t cpu_get_real_ticks(void)
210 {
211 int val;
212 asm volatile ("mfctl %%cr16, %0" : "=r"(val));
213 return val;
214 }
215
216 #elif defined(__ia64)
217
218 static inline int64_t cpu_get_real_ticks(void)
219 {
220 int64_t val;
221 asm volatile ("mov %0 = ar.itc" : "=r"(val) :: "memory");
222 return val;
223 }
224
225 #elif defined(__s390__)
226
227 static inline int64_t cpu_get_real_ticks(void)
228 {
229 int64_t val;
230 asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
231 return val;
232 }
233
234 #elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
235
236 static inline int64_t cpu_get_real_ticks (void)
237 {
238 #if defined(_LP64)
239 uint64_t rval;
240 asm volatile("rd %%tick,%0" : "=r"(rval));
241 return rval;
242 #else
243 union {
244 uint64_t i64;
245 struct {
246 uint32_t high;
247 uint32_t low;
248 } i32;
249 } rval;
250 asm volatile("rd %%tick,%1; srlx %1,32,%0"
251 : "=r"(rval.i32.high), "=r"(rval.i32.low));
252 return rval.i64;
253 #endif
254 }
255
256 #elif defined(__mips__) && \
257 ((defined(__mips_isa_rev) && __mips_isa_rev >= 2) || defined(__linux__))
258 /*
259 * binutils wants to use rdhwr only on mips32r2
260 * but as linux kernel emulate it, it's fine
261 * to use it.
262 *
263 */
264 #define MIPS_RDHWR(rd, value) { \
265 __asm__ __volatile__ (".set push\n\t" \
266 ".set mips32r2\n\t" \
267 "rdhwr %0, "rd"\n\t" \
268 ".set pop" \
269 : "=r" (value)); \
270 }
271
272 static inline int64_t cpu_get_real_ticks(void)
273 {
274 /* On kernels >= 2.6.25 rdhwr <reg>, $2 and $3 are emulated */
275 uint32_t count;
276 static uint32_t cyc_per_count = 0;
277
278 if (!cyc_per_count) {
279 MIPS_RDHWR("$3", cyc_per_count);
280 }
281
282 MIPS_RDHWR("$2", count);
283 return (int64_t)(count * cyc_per_count);
284 }
285
286 #elif defined(__alpha__)
287
288 static inline int64_t cpu_get_real_ticks(void)
289 {
290 uint64_t cc;
291 uint32_t cur, ofs;
292
293 asm volatile("rpcc %0" : "=r"(cc));
294 cur = cc;
295 ofs = cc >> 32;
296 return cur - ofs;
297 }
298
299 #else
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)
304 {
305 static int64_t ticks = 0;
306 return ticks++;
307 }
308 #endif
309
310 #ifdef CONFIG_PROFILER
311 static inline int64_t profile_getclock(void)
312 {
313 return cpu_get_real_ticks();
314 }
315
316 extern int64_t qemu_time, qemu_time_start;
317 extern int64_t tlb_flush_time;
318 extern int64_t dev_time;
319 #endif
320
321 #endif