All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
timing.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_BASE_ARCH_TIMING_H
25 #define PXR_BASE_ARCH_TIMING_H
26 
30 
31 #include "pxr/pxr.h"
32 #include "pxr/base/arch/api.h"
33 #include "pxr/base/arch/defines.h"
34 #include "pxr/base/arch/inttypes.h"
35 
38 
39 #if defined(ARCH_OS_LINUX) && defined(ARCH_CPU_INTEL)
40 #include <x86intrin.h>
41 #elif defined(ARCH_OS_DARWIN)
42 #include <mach/mach_time.h>
43 #elif defined(ARCH_OS_WINDOWS)
44 #include <intrin.h>
45 #endif
46 
47 PXR_NAMESPACE_OPEN_SCOPE
48 
54 #define ARCH_CLK_TCK 100
55 
63 inline uint64_t
65 {
66 #if defined(ARCH_OS_DARWIN)
67  // On Darwin we'll use mach_absolute_time().
68  return mach_absolute_time();
69 #elif defined(ARCH_CPU_INTEL)
70  // On Intel we'll use the rdtsc instruction.
71  return __rdtsc();
72 #elif defined (ARCH_CPU_ARM)
73  uint64_t result;
74  __asm __volatile("mrs %0, CNTVCT_EL0" : "=&r" (result));
75  return result;
76 #else
77 #error Unknown architecture.
78 #endif
79 }
80 
94 ARCH_API
95 int64_t ArchTicksToNanoseconds(uint64_t nTicks);
96 
99 ARCH_API
100 double ArchTicksToSeconds(uint64_t nTicks);
101 
104 ARCH_API
105 uint64_t ArchSecondsToTicks(double seconds);
106 
109 ARCH_API
111 
113 
114 PXR_NAMESPACE_CLOSE_SCOPE
115 
116 #endif // PXR_BASE_ARCH_TIMING_H
ARCH_API double ArchTicksToSeconds(uint64_t nTicks)
Convert a duration measured in &quot;ticks&quot;, as returned by ArchGetTickTime(), to seconds.
uint64_t ArchGetTickTime()
Return the current time in system-dependent units.
Definition: timing.h:64
ARCH_API double ArchGetNanosecondsPerTick()
Get nanoseconds per tick.
ARCH_API int64_t ArchTicksToNanoseconds(uint64_t nTicks)
Convert a duration measured in &quot;ticks&quot;, as returned by ArchGetTickTime(), to nanoseconds.
ARCH_API uint64_t ArchSecondsToTicks(double seconds)
Convert a duration in seconds to &quot;ticks&quot;, as returned by ArchGetTickTime().
Define integral types.