1 /* Copyright (C) 2010 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 /* There are two types of clocks that can be used.
31 - gettimeofday() clock
33 Microbenchmarks on Linux 2.6.30 on Core2 Duo 3GHz (functions are inlined):
34 Calls (100000000) to tsc(): 4004035641 cycles or 40 cycles/call
35 Calls (100000000) to gettimeofday(): 9723158352 cycles or 97 cycles/call
37 For merging traces with the kernel, a time source compatible with that of
38 the kernel is necessary.
40 Instead of gettimeofday(), we are now using clock_gettime for better
41 precision and monotonicity.
44 /* Only available for x86 arch */
45 #define CLOCK_TRACE_FREQ 14
46 #define CLOCK_TRACE 15
47 union lttng_timespec
{
52 extern int ust_clock_source
;
54 /* Choosing correct trace clock */
56 static __inline__
uint64_t trace_clock_read64(void)
60 union lttng_timespec
*lts
= (union lttng_timespec
*) &ts
;
62 clock_gettime(ust_clock_source
, &ts
);
64 * Clock source can change when loading the binary (tracectl.c)
65 * so we must check if the clock source has changed before
66 * returning the correct value
68 if (likely(ust_clock_source
== CLOCK_TRACE
)) {
69 retval
= lts
->lttng_ts
;
70 } else { /* CLOCK_MONOTONIC */
79 #if __i386__ || __x86_64__
80 static __inline__
uint64_t trace_clock_frequency(void)
83 union lttng_timespec
*lts
= (union lttng_timespec
*) &ts
;
85 if (likely(ust_clock_source
== CLOCK_TRACE
)) {
86 clock_gettime(CLOCK_TRACE_FREQ
, &ts
);
91 #else /* #if __i386__ || __x86_64__ */
92 static __inline__
uint64_t trace_clock_frequency(void)
96 #endif /* #else #if __i386__ || __x86_64__ */
98 static __inline__
uint32_t trace_clock_freq_scale(void)
103 #endif /* _UST_CLOCK_H */
This page took 0.031625 seconds and 4 git commands to generate.