00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef _HRTIME_H_121AJ1
00041 #define _HRTIME_H_121AJ1
00042
00043 #ifndef _HRTIME_CPUFREQ
00044 # define _HRTIME_CPUFREQ 2500
00045 #endif
00046
00047 #define HRTIME_NS2CYCLE(__ns) ((__ns) * _HRTIME_CPUFREQ / 1000)
00048 #define HRTIME_CYCLE2NS(__cycles) ((__cycles) * 1000 / _HRTIME_CPUFREQ)
00049
00050
00051 typedef unsigned long long hrtime_t;
00052
00053 static inline void hrtime_barrier() {
00054 asm volatile( "cpuid" :::"rax", "rbx", "rcx", "rdx");
00055 }
00056
00057 #if defined(__i386__)
00058
00059 static inline unsigned long long hrtime_cycles(void)
00060 {
00061 unsigned long long int x;
00062 __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x));
00063 return x;
00064 }
00065
00066 #elif defined(__x86_64__)
00067
00068 static inline unsigned long long hrtime_cycles(void)
00069 {
00070 unsigned hi, lo;
00071 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi));
00072 return ( (unsigned long long)lo)|( ((unsigned long long)hi)<<32 );
00073 }
00074
00075 #else
00076 #error "What architecture is this???"
00077 #endif
00078
00079
00080 #endif