diff --git a/js/src/nanojit/avmplus.h b/js/src/nanojit/avmplus.h index c29ae153134c..dd3c1a6d2024 100644 --- a/js/src/nanojit/avmplus.h +++ b/js/src/nanojit/avmplus.h @@ -92,6 +92,9 @@ void NanoAssertFail(); #if defined(AVMPLUS_IA32) #if defined(_MSC_VER) + +# define AVMPLUS_HAS_RDTSC 1 + __declspec(naked) static inline __int64 rdtsc() { __asm @@ -100,24 +103,35 @@ __declspec(naked) static inline __int64 rdtsc() ret; } } + #elif defined(SOLARIS) + +# define AVMPLUS_HAS_RDTSC 1 + static inline unsigned long long rdtsc(void) { unsigned long long int x; asm volatile (".byte 0x0f, 0x31" : "=A" (x)); return x; } + #elif defined(__i386__) + +# define AVMPLUS_HAS_RDTSC 1 + static __inline__ unsigned long long rdtsc(void) { unsigned long long int x; __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x)); return x; } + #endif /* compilers */ #elif defined(__x86_64__) +# define AVMPLUS_HAS_RDTSC 1 + static __inline__ uint64_t rdtsc(void) { unsigned hi, lo; @@ -127,6 +141,8 @@ static __inline__ uint64_t rdtsc(void) #elif defined(_MSC_VER) && defined(_M_AMD64) +# define AVMPLUS_HAS_RDTSC 1 + #include #pragma intrinsic(__rdtsc) @@ -137,6 +153,8 @@ static inline unsigned __int64 rdtsc(void) #elif defined(__powerpc__) +# define AVMPLUS_HAS_RDTSC 1 + typedef unsigned long long int unsigned long long; static __inline__ unsigned long long rdtsc(void) @@ -161,6 +179,10 @@ static __inline__ unsigned long long rdtsc(void) #endif /* architecture */ +#ifndef AVMPLUS_HAS_RDTSC +# define AVMPLUS_HAS_RDTSC 0 +#endif + struct JSContext; #ifdef PERFM