]> git.donarmstrong.com Git - mothur.git/blobdiff - timing.h
1.22.0
[mothur.git] / timing.h
index 4db7847346356b41a8a12a9e226413f2e81abecb..0a80aee10aec83e3521d7e35642489afc91392f8 100644 (file)
--- a/timing.h
+++ b/timing.h
@@ -1,5 +1,3 @@
-//uchime by Robert C. Edgar http://drive5.com/uchime This code is donated to the public domain.
-
 #define TIMING 0
 #ifndef timing_h
 #define timing_h
 #define BG_TIMING      0
 #endif
 
-//#if  UCHIMES
+#if    UCHIMES
 #undef TIMING
 #define TIMING 0
-//#endif
+#endif
 
 #if TIMING
 
@@ -59,29 +57,30 @@ const unsigned AllocerCount =
 #undef A
        ;
 
-#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
-typedef uint64_t TICKS;
-__inline__ uint64_t GetClockTicks()
-{
-       uint32_t lo, hi;
-       /* We cannot use "=A", since this would use %rax on x86_64 */
-       __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi));
-       return (uint64_t)hi << 32 | lo;
-}
-
+#ifdef _MSC_VER
 
-#else  // ifdef _MSC_VER
 typedef unsigned __int64 TICKS;
 
 #pragma warning(disable:4035)
 inline TICKS GetClockTicks()
-{
-       _asm
        {
+       _asm
+               {
                _emit   0x0f
                _emit   0x31
+               }
+       }
+
+#else  // ifdef _MSC_VER
+
+typedef uint64_t TICKS;
+__inline__ uint64_t GetClockTicks()
+       {
+       uint32_t lo, hi;
+       /* We cannot use "=A", since this would use %rax on x86_64 */
+       __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi));
+       return (uint64_t)hi << 32 | lo;
        }
-}
 
 #endif // ifdef _MSC_VER