blob: 15a6f466a77d0b777a588018781881842b9bdc1f [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===------------------------- chrono.cpp ---------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#include "chrono"
11#include <sys/time.h> //for gettimeofday and timeval
Marshall Clowdece7fe2013-03-18 17:45:34 +000012#ifdef __APPLE__
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000013#include <mach/mach_time.h> // mach_absolute_time, mach_timebase_info_data_t
Howard Hinnantadff4892010-05-24 17:49:41 +000014#else /* !__APPLE__ */
15#include <cerrno> // errno
16#include <system_error> // __throw_system_error
17#include <time.h> // clock_gettime, CLOCK_MONOTONIC
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000018#endif // __APPLE__
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019
20_LIBCPP_BEGIN_NAMESPACE_STD
21
22namespace chrono
23{
24
25// system_clock
26
Howard Hinnant0a69fa12012-12-12 21:14:28 +000027const bool system_clock::is_steady;
28
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000029system_clock::time_point
Howard Hinnant756a1762011-05-28 18:34:36 +000030system_clock::now() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000031{
32 timeval tv;
33 gettimeofday(&tv, 0);
34 return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));
35}
36
37time_t
Howard Hinnant756a1762011-05-28 18:34:36 +000038system_clock::to_time_t(const time_point& t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000039{
40 return time_t(duration_cast<seconds>(t.time_since_epoch()).count());
41}
42
43system_clock::time_point
Howard Hinnant756a1762011-05-28 18:34:36 +000044system_clock::from_time_t(time_t t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000045{
46 return system_clock::time_point(seconds(t));
47}
48
Howard Hinnantf8f85212010-11-20 19:16:30 +000049// steady_clock
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000050
Howard Hinnant0a69fa12012-12-12 21:14:28 +000051const bool steady_clock::is_steady;
52
Marshall Clowdece7fe2013-03-18 17:45:34 +000053#ifdef __APPLE__
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000054// mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of
55// nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom
56// are run time constants supplied by the OS. This clock has no relationship
57// to the Gregorian calendar. It's main use is as a high resolution timer.
58
59// MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize
60// for that case as an optimization.
61
62#pragma GCC visibility push(hidden)
63
64static
Howard Hinnantf8f85212010-11-20 19:16:30 +000065steady_clock::rep
66steady_simplified()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000067{
Howard Hinnantec3773c2011-12-01 20:21:04 +000068 return static_cast<steady_clock::rep>(mach_absolute_time());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069}
70
71static
72double
Howard Hinnantf8f85212010-11-20 19:16:30 +000073compute_steady_factor()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000074{
75 mach_timebase_info_data_t MachInfo;
76 mach_timebase_info(&MachInfo);
77 return static_cast<double>(MachInfo.numer) / MachInfo.denom;
78}
79
80static
Howard Hinnantf8f85212010-11-20 19:16:30 +000081steady_clock::rep
82steady_full()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000083{
Howard Hinnantf8f85212010-11-20 19:16:30 +000084 static const double factor = compute_steady_factor();
85 return static_cast<steady_clock::rep>(mach_absolute_time() * factor);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086}
87
Howard Hinnantf8f85212010-11-20 19:16:30 +000088typedef steady_clock::rep (*FP)();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000089
90static
91FP
Howard Hinnantf8f85212010-11-20 19:16:30 +000092init_steady_clock()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000093{
94 mach_timebase_info_data_t MachInfo;
95 mach_timebase_info(&MachInfo);
96 if (MachInfo.numer == MachInfo.denom)
Howard Hinnantf8f85212010-11-20 19:16:30 +000097 return &steady_simplified;
98 return &steady_full;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000099}
100
Daniel Dunbar04acaca2010-09-04 03:15:51 +0000101#pragma GCC visibility pop
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000102
Howard Hinnantf8f85212010-11-20 19:16:30 +0000103steady_clock::time_point
Howard Hinnant756a1762011-05-28 18:34:36 +0000104steady_clock::now() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000105{
Howard Hinnantf8f85212010-11-20 19:16:30 +0000106 static FP fp = init_steady_clock();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000107 return time_point(duration(fp()));
108}
109
Howard Hinnant16e6e1d2010-08-22 00:03:27 +0000110#else // __APPLE__
Howard Hinnantadff4892010-05-24 17:49:41 +0000111// FIXME: We assume that clock_gettime(CLOCK_MONOTONIC) works on
112// non-apple systems. Instead, we should check _POSIX_TIMERS and
113// _POSIX_MONOTONIC_CLOCK and fall back to something else if those
114// don't exist.
115
Howard Hinnantf8f85212010-11-20 19:16:30 +0000116// Warning: If this is not truly steady, then it is non-conforming. It is
Howard Hinnantadff4892010-05-24 17:49:41 +0000117// better for it to not exist and have the rest of libc++ use system_clock
118// instead.
119
Howard Hinnantf8f85212010-11-20 19:16:30 +0000120steady_clock::time_point
Howard Hinnant756a1762011-05-28 18:34:36 +0000121steady_clock::now() _NOEXCEPT
Howard Hinnantadff4892010-05-24 17:49:41 +0000122{
123 struct timespec tp;
124 if (0 != clock_gettime(CLOCK_MONOTONIC, &tp))
125 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed");
126 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
127}
Howard Hinnant16e6e1d2010-08-22 00:03:27 +0000128#endif // __APPLE__
Howard Hinnantadff4892010-05-24 17:49:41 +0000129
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000130}
131
132_LIBCPP_END_NAMESPACE_STD