Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===------------------------- chrono.cpp ---------------------------------===// |
| 2 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "chrono" |
| 11 | #include <sys/time.h> //for gettimeofday and timeval |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 12 | #if __APPLE__ |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 13 | #include <mach/mach_time.h> // mach_absolute_time, mach_timebase_info_data_t |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 14 | #else /* !__APPLE__ */ |
| 15 | #include <cerrno> // errno |
| 16 | #include <system_error> // __throw_system_error |
| 17 | #include <time.h> // clock_gettime, CLOCK_MONOTONIC |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 18 | #endif // __APPLE__ |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 19 | |
| 20 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 21 | |
| 22 | namespace chrono |
| 23 | { |
| 24 | |
| 25 | // system_clock |
| 26 | |
| 27 | system_clock::time_point |
Howard Hinnant | 756a176 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 28 | system_clock::now() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 29 | { |
| 30 | timeval tv; |
| 31 | gettimeofday(&tv, 0); |
| 32 | return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec)); |
| 33 | } |
| 34 | |
| 35 | time_t |
Howard Hinnant | 756a176 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 36 | system_clock::to_time_t(const time_point& t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 37 | { |
| 38 | return time_t(duration_cast<seconds>(t.time_since_epoch()).count()); |
| 39 | } |
| 40 | |
| 41 | system_clock::time_point |
Howard Hinnant | 756a176 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 42 | system_clock::from_time_t(time_t t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 43 | { |
| 44 | return system_clock::time_point(seconds(t)); |
| 45 | } |
| 46 | |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 47 | // steady_clock |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 48 | |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 49 | #if __APPLE__ |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | // mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of |
| 51 | // nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom |
| 52 | // are run time constants supplied by the OS. This clock has no relationship |
| 53 | // to the Gregorian calendar. It's main use is as a high resolution timer. |
| 54 | |
| 55 | // MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize |
| 56 | // for that case as an optimization. |
| 57 | |
| 58 | #pragma GCC visibility push(hidden) |
| 59 | |
| 60 | static |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 61 | steady_clock::rep |
| 62 | steady_simplified() |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 63 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 64 | return static_cast<steady_clock::rep>(mach_absolute_time()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static |
| 68 | double |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 69 | compute_steady_factor() |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 70 | { |
| 71 | mach_timebase_info_data_t MachInfo; |
| 72 | mach_timebase_info(&MachInfo); |
| 73 | return static_cast<double>(MachInfo.numer) / MachInfo.denom; |
| 74 | } |
| 75 | |
| 76 | static |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 77 | steady_clock::rep |
| 78 | steady_full() |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 79 | { |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 80 | static const double factor = compute_steady_factor(); |
| 81 | return static_cast<steady_clock::rep>(mach_absolute_time() * factor); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 84 | typedef steady_clock::rep (*FP)(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 85 | |
| 86 | static |
| 87 | FP |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 88 | init_steady_clock() |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 89 | { |
| 90 | mach_timebase_info_data_t MachInfo; |
| 91 | mach_timebase_info(&MachInfo); |
| 92 | if (MachInfo.numer == MachInfo.denom) |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 93 | return &steady_simplified; |
| 94 | return &steady_full; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Daniel Dunbar | 04acaca | 2010-09-04 03:15:51 +0000 | [diff] [blame] | 97 | #pragma GCC visibility pop |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 98 | |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 99 | steady_clock::time_point |
Howard Hinnant | 756a176 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 100 | steady_clock::now() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 101 | { |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 102 | static FP fp = init_steady_clock(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 103 | return time_point(duration(fp())); |
| 104 | } |
| 105 | |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 106 | #else // __APPLE__ |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 107 | // FIXME: We assume that clock_gettime(CLOCK_MONOTONIC) works on |
| 108 | // non-apple systems. Instead, we should check _POSIX_TIMERS and |
| 109 | // _POSIX_MONOTONIC_CLOCK and fall back to something else if those |
| 110 | // don't exist. |
| 111 | |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 112 | // Warning: If this is not truly steady, then it is non-conforming. It is |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 113 | // better for it to not exist and have the rest of libc++ use system_clock |
| 114 | // instead. |
| 115 | |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 116 | steady_clock::time_point |
Howard Hinnant | 756a176 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 117 | steady_clock::now() _NOEXCEPT |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 118 | { |
| 119 | struct timespec tp; |
| 120 | if (0 != clock_gettime(CLOCK_MONOTONIC, &tp)) |
| 121 | __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed"); |
| 122 | return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec)); |
| 123 | } |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 124 | #endif // __APPLE__ |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 125 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | _LIBCPP_END_NAMESPACE_STD |