| 347 | } |
| 348 | |
| 349 | static __inline uint64_t |
| 350 | rdtsc(void) |
| 351 | { |
| 352 | uint32_t low, high; |
| 353 | |
| 354 | __asm __volatile("rdtsc" : "=a" (low), "=d" (high)); |
| 355 | return (low | ((uint64_t)high << 32)); |
| 356 | } |
| 357 | |
| 358 | static __inline uint64_t |
| 359 | rdtscp(void) |
no outgoing calls
no test coverage detected