1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // As part of monotonic clock support on z/OS we need macro _LARGE_TIME_API
11 // to be defined before any system header to include definition of struct timespec64.
12 #define _LARGE_TIME_API
15 #include <__system_error/system_error.h>
16 #include <cerrno> // errno
20 #include <__support/ibm/gettod_zos.h> // gettimeofdayMonotonic
23 #include <time.h> // clock_gettime and CLOCK_{MONOTONIC,REALTIME,MONOTONIC_RAW}
24 #include "include/apple_availability.h"
26 #if __has_include(<unistd.h>)
27 # include <unistd.h> // _POSIX_TIMERS
30 #if __has_include(<sys/time.h>)
31 # include <sys/time.h> // for gettimeofday and timeval
34 #if defined(__APPLE__) || defined (__gnu_hurd__) || (defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0)
35 # define _LIBCPP_HAS_CLOCK_GETTIME
38 #if defined(_LIBCPP_WIN32API)
39 # define WIN32_LEAN_AND_MEAN
40 # define VC_EXTRA_LEAN
42 # if _WIN32_WINNT >= _WIN32_WINNT_WIN8
43 # include <winapifamily.h>
45 #endif // defined(_LIBCPP_WIN32API)
47 #if defined(__Fuchsia__)
48 # include <zircon/syscalls.h>
51 #if __has_include(<mach/mach_time.h>)
52 # include <mach/mach_time.h>
55 #if defined(__ELF__) && defined(_LIBCPP_LINK_RT_LIB)
56 # pragma comment(lib, "rt")
59 _LIBCPP_BEGIN_NAMESPACE_STD
68 #if defined(_LIBCPP_WIN32API)
70 #if _WIN32_WINNT < _WIN32_WINNT_WIN8
74 typedef void(WINAPI
*GetSystemTimeAsFileTimePtr
)(LPFILETIME
);
76 class GetSystemTimeInit
{
79 fp
= (GetSystemTimeAsFileTimePtr
)GetProcAddress(
80 GetModuleHandleW(L
"kernel32.dll"), "GetSystemTimePreciseAsFileTime");
82 fp
= GetSystemTimeAsFileTime
;
84 GetSystemTimeAsFileTimePtr fp
;
87 // Pretend we're inside a system header so the compiler doesn't flag the use of the init_priority
88 // attribute with a value that's reserved for the implementation (we're the implementation).
89 #include "chrono_system_time_init.h"
94 static system_clock::time_point
__libcpp_system_clock_now() {
95 // FILETIME is in 100ns units
96 using filetime_duration
=
97 _VSTD::chrono::duration
<__int64
,
98 _VSTD::ratio_multiply
<_VSTD::ratio
<100, 1>,
99 nanoseconds::period
>>;
101 // The Windows epoch is Jan 1 1601, the Unix epoch Jan 1 1970.
102 static constexpr const seconds nt_to_unix_epoch
{11644473600};
105 #if (_WIN32_WINNT >= _WIN32_WINNT_WIN8 && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)) || \
106 (_WIN32_WINNT >= _WIN32_WINNT_WIN10)
107 GetSystemTimePreciseAsFileTime(&ft
);
108 #elif !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
109 GetSystemTimeAsFileTime(&ft
);
111 GetSystemTimeAsFileTimeFunc
.fp(&ft
);
114 filetime_duration d
{(static_cast<__int64
>(ft
.dwHighDateTime
) << 32) |
115 static_cast<__int64
>(ft
.dwLowDateTime
)};
116 return system_clock::time_point(duration_cast
<system_clock::duration
>(d
- nt_to_unix_epoch
));
119 #elif defined(_LIBCPP_HAS_CLOCK_GETTIME)
121 static system_clock::time_point
__libcpp_system_clock_now() {
123 if (0 != clock_gettime(CLOCK_REALTIME
, &tp
))
124 __throw_system_error(errno
, "clock_gettime(CLOCK_REALTIME) failed");
125 return system_clock::time_point(seconds(tp
.tv_sec
) + microseconds(tp
.tv_nsec
/ 1000));
130 static system_clock::time_point
__libcpp_system_clock_now() {
132 gettimeofday(&tv
, 0);
133 return system_clock::time_point(seconds(tv
.tv_sec
) + microseconds(tv
.tv_usec
));
138 const bool system_clock::is_steady
;
140 system_clock::time_point
141 system_clock::now() noexcept
143 return __libcpp_system_clock_now();
147 system_clock::to_time_t(const time_point
& t
) noexcept
149 return time_t(duration_cast
<seconds
>(t
.time_since_epoch()).count());
152 system_clock::time_point
153 system_clock::from_time_t(time_t t
) noexcept
155 return system_clock::time_point(seconds(t
));
161 // Warning: If this is not truly steady, then it is non-conforming. It is
162 // better for it to not exist and have the rest of libc++ use system_clock
166 #ifndef _LIBCPP_HAS_NO_MONOTONIC_CLOCK
168 #if defined(__APPLE__)
170 // On Apple platforms, only CLOCK_UPTIME_RAW, CLOCK_MONOTONIC_RAW or
171 // mach_absolute_time are able to time functions in the nanosecond range.
172 // Furthermore, only CLOCK_MONOTONIC_RAW is truly monotonic, because it
173 // also counts cycles when the system is asleep. Thus, it is the only
174 // acceptable implementation of steady_clock.
175 static steady_clock::time_point
__libcpp_steady_clock_now() {
177 if (0 != clock_gettime(CLOCK_MONOTONIC_RAW
, &tp
))
178 __throw_system_error(errno
, "clock_gettime(CLOCK_MONOTONIC_RAW) failed");
179 return steady_clock::time_point(seconds(tp
.tv_sec
) + nanoseconds(tp
.tv_nsec
));
182 #elif defined(_LIBCPP_WIN32API)
184 // https://msdn.microsoft.com/en-us/library/windows/desktop/ms644905(v=vs.85).aspx says:
185 // If the function fails, the return value is zero. <snip>
186 // On systems that run Windows XP or later, the function will always succeed
187 // and will thus never return zero.
190 __QueryPerformanceFrequency()
193 (void) QueryPerformanceFrequency(&val
);
197 static steady_clock::time_point
__libcpp_steady_clock_now() {
198 static const LARGE_INTEGER freq
= __QueryPerformanceFrequency();
200 LARGE_INTEGER counter
;
201 (void) QueryPerformanceCounter(&counter
);
202 auto seconds
= counter
.QuadPart
/ freq
.QuadPart
;
203 auto fractions
= counter
.QuadPart
% freq
.QuadPart
;
204 auto dur
= seconds
* nano::den
+ fractions
* nano::den
/ freq
.QuadPart
;
205 return steady_clock::time_point(steady_clock::duration(dur
));
208 #elif defined(__MVS__)
210 static steady_clock::time_point
__libcpp_steady_clock_now() {
211 struct timespec64 ts
;
212 if (0 != gettimeofdayMonotonic(&ts
))
213 __throw_system_error(errno
, "failed to obtain time of day");
215 return steady_clock::time_point(seconds(ts
.tv_sec
) + nanoseconds(ts
.tv_nsec
));
218 # elif defined(__Fuchsia__)
220 static steady_clock::time_point
__libcpp_steady_clock_now() noexcept
{
221 // Implicitly link against the vDSO system call ABI without
222 // requiring the final link to specify -lzircon explicitly when
223 // statically linking libc++.
224 # pragma comment(lib, "zircon")
226 return steady_clock::time_point(nanoseconds(_zx_clock_get_monotonic()));
229 # elif defined(_LIBCPP_HAS_CLOCK_GETTIME)
231 static steady_clock::time_point
__libcpp_steady_clock_now() {
233 if (0 != clock_gettime(CLOCK_MONOTONIC
, &tp
))
234 __throw_system_error(errno
, "clock_gettime(CLOCK_MONOTONIC) failed");
235 return steady_clock::time_point(seconds(tp
.tv_sec
) + nanoseconds(tp
.tv_nsec
));
239 # error "Monotonic clock not implemented on this platform"
242 const bool steady_clock::is_steady
;
244 steady_clock::time_point
245 steady_clock::now() noexcept
247 return __libcpp_steady_clock_now();
250 #endif // !_LIBCPP_HAS_NO_MONOTONIC_CLOCK
254 _LIBCPP_END_NAMESPACE_STD