1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 // Implement TimeStamp::Now() with POSIX clocks.
10 // The "tick" unit for POSIX clocks is simply a nanosecond, as this is
11 // the smallest unit of time representable by struct timespec. That
12 // doesn't mean that a nanosecond is the resolution of TimeDurations
13 // obtained with this API; see TimeDuration::Resolution;
16 #include <sys/syscall.h>
21 #if defined(__DragonFly__) || defined(__FreeBSD__) \
22 || defined(__NetBSD__) || defined(__OpenBSD__)
23 #include <sys/param.h>
24 #include <sys/sysctl.h>
27 #if defined(__DragonFly__) || defined(__FreeBSD__)
31 #if defined(__NetBSD__)
33 #define KERN_PROC KERN_PROC2
34 #define KINFO_PROC struct kinfo_proc2
36 #define KINFO_PROC struct kinfo_proc
39 #if defined(__DragonFly__)
40 #define KP_START_SEC kp_start.tv_sec
41 #define KP_START_USEC kp_start.tv_usec
42 #elif defined(__FreeBSD__)
43 #define KP_START_SEC ki_start.tv_sec
44 #define KP_START_USEC ki_start.tv_usec
46 #define KP_START_SEC p_ustart_sec
47 #define KP_START_USEC p_ustart_usec
50 #include "mozilla/Sprintf.h"
51 #include "mozilla/TimeStamp.h"
54 // Estimate of the smallest duration of time we can measure.
55 static uint64_t sResolution
;
56 static uint64_t sResolutionSigDigs
;
58 static const uint16_t kNsPerUs
= 1000;
59 static const uint64_t kNsPerMs
= 1000000;
60 static const uint64_t kNsPerSec
= 1000000000;
61 static const double kNsPerMsd
= 1000000.0;
62 static const double kNsPerSecd
= 1000000000.0;
65 TimespecToNs(const struct timespec
& aTs
)
67 uint64_t baseNs
= uint64_t(aTs
.tv_sec
) * kNsPerSec
;
68 return baseNs
+ uint64_t(aTs
.tv_nsec
);
75 // this can't fail: we know &ts is valid, and TimeStamp::Startup()
76 // checks that CLOCK_MONOTONIC is supported (and aborts if not)
77 clock_gettime(CLOCK_MONOTONIC
, &ts
);
79 // tv_sec is defined to be relative to an arbitrary point in time,
80 // but it would be madness for that point in time to be earlier than
81 // the Epoch. So we can safely assume that even if time_t is 32
82 // bits, tv_sec won't overflow while the browser is open. Revisit
83 // this argument if we're still building with 32-bit time_t around
85 return TimespecToNs(ts
);
91 // NB: why not rely on clock_getres()? Two reasons: (i) it might
92 // lie, and (ii) it might return an "ideal" resolution that while
93 // theoretically true, could never be measured in practice. Since
94 // clock_gettime() likely involves a system call on your platform,
95 // the "actual" timing resolution shouldn't be lower than syscall
98 uint64_t start
= ClockTimeNs();
99 uint64_t end
= ClockTimeNs();
100 uint64_t minres
= (end
- start
);
102 // 10 total trials is arbitrary: what we're trying to avoid by
103 // looping is getting unlucky and being interrupted by a context
104 // switch or signal, or being bitten by paging/cache effects
105 for (int i
= 0; i
< 9; ++i
) {
106 start
= ClockTimeNs();
109 uint64_t candidate
= (start
- end
);
110 if (candidate
< minres
) {
116 // measurable resolution is either incredibly low, ~1ns, or very
117 // high. fall back on clock_getres()
119 if (0 == clock_getres(CLOCK_MONOTONIC
, &ts
)) {
120 minres
= TimespecToNs(ts
);
125 // clock_getres probably failed. fall back on NSPR's resolution
127 minres
= 1 * kNsPerMs
;
136 BaseTimeDurationPlatformUtils::ToSeconds(int64_t aTicks
)
138 return double(aTicks
) / kNsPerSecd
;
142 BaseTimeDurationPlatformUtils::ToSecondsSigDigits(int64_t aTicks
)
144 // don't report a value < mResolution ...
145 int64_t valueSigDigs
= sResolution
* (aTicks
/ sResolution
);
146 // and chop off insignificant digits
147 valueSigDigs
= sResolutionSigDigs
* (valueSigDigs
/ sResolutionSigDigs
);
148 return double(valueSigDigs
) / kNsPerSecd
;
152 BaseTimeDurationPlatformUtils::TicksFromMilliseconds(double aMilliseconds
)
154 double result
= aMilliseconds
* kNsPerMsd
;
155 if (result
> INT64_MAX
) {
158 if (result
< INT64_MIN
) {
166 BaseTimeDurationPlatformUtils::ResolutionInTicks()
168 return static_cast<int64_t>(sResolution
);
171 static bool gInitialized
= false;
180 struct timespec dummy
;
181 if (clock_gettime(CLOCK_MONOTONIC
, &dummy
) != 0) {
182 MOZ_CRASH("CLOCK_MONOTONIC is absent!");
185 sResolution
= ClockResolutionNs();
187 // find the number of significant digits in sResolution, for the
188 // sake of ToSecondsSigDigits()
189 for (sResolutionSigDigs
= 1;
190 !(sResolutionSigDigs
== sResolution
||
191 10 * sResolutionSigDigs
> sResolution
);
192 sResolutionSigDigs
*= 10);
198 TimeStamp::Shutdown()
203 TimeStamp::Now(bool aHighResolution
)
205 return TimeStamp::NowFuzzy(TimeStampValue(false, ClockTimeNs()));
209 TimeStamp::NowUnfuzzed(bool aHighResolution
)
211 return TimeStamp(TimeStampValue(false, ClockTimeNs()));
214 #if defined(XP_LINUX) || defined(ANDROID)
216 // Calculates the amount of jiffies that have elapsed since boot and up to the
217 // starttime value of a specific process as found in its /proc/*/stat file.
218 // Returns 0 if an error occurred.
221 JiffiesSinceBoot(const char* aFile
)
225 FILE* f
= fopen(aFile
, "r");
230 int n
= fread(&stat
, 1, sizeof(stat
) - 1, f
);
240 long long unsigned startTime
= 0; // instead of uint64_t to keep GCC quiet
241 char* s
= strrchr(stat
, ')');
247 int rv
= sscanf(s
+ 2,
248 "%*c %*d %*d %*d %*d %*d %*u %*u %*u %*u "
249 "%*u %*u %*u %*d %*d %*d %*d %*d %*d %llu",
252 if (rv
!= 1 || !startTime
) {
259 // Computes the interval that has elapsed between the thread creation and the
260 // process creation by comparing the starttime fields in the respective
261 // /proc/*/stat files. The resulting value will be a good approximation of the
262 // process uptime. This value will be stored at the address pointed by aTime;
263 // if an error occurred 0 will be stored instead.
266 ComputeProcessUptimeThread(void* aTime
)
268 uint64_t* uptime
= static_cast<uint64_t*>(aTime
);
269 long hz
= sysconf(_SC_CLK_TCK
);
278 SprintfLiteral(threadStat
, "/proc/self/task/%d/stat", (pid_t
)syscall(__NR_gettid
));
280 uint64_t threadJiffies
= JiffiesSinceBoot(threadStat
);
281 uint64_t selfJiffies
= JiffiesSinceBoot("/proc/self/stat");
283 if (!threadJiffies
|| !selfJiffies
) {
287 *uptime
= ((threadJiffies
- selfJiffies
) * kNsPerSec
) / hz
;
291 // Computes and returns the process uptime in us on Linux & its derivatives.
292 // Returns 0 if an error was encountered.
295 TimeStamp::ComputeProcessUptime()
298 pthread_t uptime_pthread
;
300 if (pthread_create(&uptime_pthread
, nullptr, ComputeProcessUptimeThread
, &uptime
)) {
301 MOZ_CRASH("Failed to create process uptime thread.");
305 pthread_join(uptime_pthread
, NULL
);
307 return uptime
/ kNsPerUs
;
310 #elif defined(__DragonFly__) || defined(__FreeBSD__) \
311 || defined(__NetBSD__) || defined(__OpenBSD__)
313 // Computes and returns the process uptime in us on various BSD flavors.
314 // Returns 0 if an error was encountered.
317 TimeStamp::ComputeProcessUptime()
320 int rv
= clock_gettime(CLOCK_REALTIME
, &ts
);
331 #if defined(__NetBSD__) || defined(__OpenBSD__)
336 u_int mibLen
= sizeof(mib
) / sizeof(mib
[0]);
339 size_t bufferSize
= sizeof(proc
);
340 rv
= sysctl(mib
, mibLen
, &proc
, &bufferSize
, nullptr, 0);
346 uint64_t startTime
= ((uint64_t)proc
.KP_START_SEC
* kNsPerSec
) +
347 (proc
.KP_START_USEC
* kNsPerUs
);
348 uint64_t now
= ((uint64_t)ts
.tv_sec
* kNsPerSec
) + ts
.tv_nsec
;
350 if (startTime
> now
) {
354 return (now
- startTime
) / kNsPerUs
;
360 TimeStamp::ComputeProcessUptime()
367 } // namespace mozilla