ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright 2016 The SwiftShader Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
 
#include "Timer.hpp"
 
#if !defined(__i386__) && defined(_M_IX86)
   #define __i386__ 1
#endif
 
#if !defined(__x86_64__) && (defined(_M_AMD64) || defined (_M_X64))
   #define __x86_64__ 1
#endif
 
#if defined(_WIN32)
   #ifndef WIN32_LEAN_AND_MEAN
       #define WIN32_LEAN_AND_MEAN
   #endif
   #include <windows.h>
   #include <intrin.h>
#else
   #include <sys/time.h>
   #if defined(__i386__) || defined(__x86_64__)
       #include <x86intrin.h>
   #endif
#endif
 
namespace sw
{
   Timer::Timer()
   {
   }
 
   Timer::~Timer()
   {
   }
 
   double Timer::seconds()
   {
       #if defined(_WIN32)
           return (double)counter() / (double)frequency();
       #else
           timeval t;
           gettimeofday(&t, 0);
           return (double)t.tv_sec + (double)t.tv_usec * 1.0e-6;
       #endif
   }
 
   int64_t Timer::ticks()
   {
       #if defined(_WIN32)
           return __rdtsc();
       #elif defined(__i386__) || defined(__x86_64__)
           int64_t tsc;
           __asm volatile("rdtsc": "=A" (tsc));
           return tsc;
       #else
           return 0;
       #endif
   }
 
   int64_t Timer::counter()
   {
       #if defined(_WIN32)
           int64_t counter;
           QueryPerformanceCounter((LARGE_INTEGER*)&counter);
           return counter;
       #else
           timeval t;
           gettimeofday(&t, 0);
           return t.tv_sec * 1000000 + t.tv_usec;
       #endif
   }
 
   int64_t Timer::frequency()
   {
       #if defined(_WIN32)
           int64_t frequency;
           QueryPerformanceFrequency((LARGE_INTEGER*)&frequency);
           return frequency;
       #else
           return 1000000;   // gettimeofday uses microsecond resolution
       #endif
   }
}