1 /* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Michel Dagenais
3 * 2005 Mathieu Desnoyers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License Version 2.1 as published by the Free Software Foundation.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
25 #include <lttv/compiler.h>
27 typedef struct _LttTime
{
29 unsigned long tv_nsec
;
33 #define NANOSECONDS_PER_SECOND 1000000000
35 /* We give the DIV and MUL constants so we can always multiply, for a
36 * division as well as a multiplication of NANOSECONDS_PER_SECOND */
37 /* 2^30/1.07374182400631629848 = 1000000000.0 */
38 #define DOUBLE_SHIFT_CONST_DIV 1.07374182400631629848
39 #define DOUBLE_SHIFT 30
41 /* 2^30*0.93132257461547851562 = 1000000000.0000000000 */
42 #define DOUBLE_SHIFT_CONST_MUL 0.93132257461547851562
45 /* 1953125 * 2^9 = NANOSECONDS_PER_SECOND */
46 #define LTT_TIME_UINT_SHIFT_CONST 1953125
47 #define LTT_TIME_UINT_SHIFT 9
50 static const LttTime ltt_time_zero
= { 0, 0 };
52 static const LttTime ltt_time_one
= { 0, 1 };
54 static const LttTime ltt_time_infinite
= { G_MAXUINT
, NANOSECONDS_PER_SECOND
};
56 static inline LttTime
ltt_time_sub(LttTime t1
, LttTime t2
)
59 res
.tv_sec
= t1
.tv_sec
- t2
.tv_sec
;
60 res
.tv_nsec
= t1
.tv_nsec
- t2
.tv_nsec
;
61 /* unlikely : given equal chance to be anywhere in t1.tv_nsec, and
62 * higher probability of low value for t2.tv_sec, we will habitually
65 if(unlikely(t1
.tv_nsec
< t2
.tv_nsec
)) {
67 res
.tv_nsec
+= NANOSECONDS_PER_SECOND
;
73 static inline LttTime
ltt_time_add(LttTime t1
, LttTime t2
)
76 res
.tv_nsec
= t1
.tv_nsec
+ t2
.tv_nsec
;
77 res
.tv_sec
= t1
.tv_sec
+ t2
.tv_sec
;
78 /* unlikely : given equal chance to be anywhere in t1.tv_nsec, and
79 * higher probability of low value for t2.tv_sec, we will habitually
82 if(unlikely(res
.tv_nsec
>= NANOSECONDS_PER_SECOND
)) {
84 res
.tv_nsec
-= NANOSECONDS_PER_SECOND
;
89 /* Fastest comparison : t1 > t2 */
90 static inline int ltt_time_compare(LttTime t1
, LttTime t2
)
93 if(likely(t1
.tv_sec
> t2
.tv_sec
)) ret
= 1;
94 else if(unlikely(t1
.tv_sec
< t2
.tv_sec
)) ret
= -1;
95 else if(likely(t1
.tv_nsec
> t2
.tv_nsec
)) ret
= 1;
96 else if(unlikely(t1
.tv_nsec
< t2
.tv_nsec
)) ret
= -1;
101 #define LTT_TIME_MIN(a,b) ((ltt_time_compare((a),(b)) < 0) ? (a) : (b))
102 #define LTT_TIME_MAX(a,b) ((ltt_time_compare((a),(b)) > 0) ? (a) : (b))
104 #define MAX_TV_SEC_TO_DOUBLE 0x7FFFFF
105 static inline double ltt_time_to_double(LttTime t1
)
107 /* We lose precision if tv_sec is > than (2^23)-1
109 * Max values that fits in a double (53 bits precision on normalised
111 * tv_nsec : NANOSECONDS_PER_SECONDS : 2^30
113 * So we have 53-30 = 23 bits left for tv_sec.
116 g_assert(t1
.tv_sec
<= MAX_TV_SEC_TO_DOUBLE
);
117 if(t1
.tv_sec
> MAX_TV_SEC_TO_DOUBLE
)
118 g_warning("Precision loss in conversion LttTime to double");
120 return ((double)((guint64
)t1
.tv_sec
<<DOUBLE_SHIFT
)
121 * (double)DOUBLE_SHIFT_CONST_MUL
)
122 + (double)t1
.tv_nsec
;
126 static inline LttTime
ltt_time_from_double(double t1
)
128 /* We lose precision if tv_sec is > than (2^23)-1
130 * Max values that fits in a double (53 bits precision on normalised
132 * tv_nsec : NANOSECONDS_PER_SECONDS : 2^30
134 * So we have 53-30 = 23 bits left for tv_sec.
137 g_assert(t1
<= MAX_TV_SEC_TO_DOUBLE
);
138 if(t1
> MAX_TV_SEC_TO_DOUBLE
)
139 g_warning("Conversion from non precise double to LttTime");
142 //res.tv_sec = t1/(double)NANOSECONDS_PER_SECOND;
143 res
.tv_sec
= (guint64
)(t1
* DOUBLE_SHIFT_CONST_DIV
) >> DOUBLE_SHIFT
;
144 res
.tv_nsec
= (t1
- (((guint64
)res
.tv_sec
<<LTT_TIME_UINT_SHIFT
))
145 * LTT_TIME_UINT_SHIFT_CONST
);
149 /* Use ltt_time_to_double and ltt_time_from_double to check for lack
152 static inline LttTime
ltt_time_mul(LttTime t1
, double d
)
156 double time_double
= ltt_time_to_double(t1
);
158 time_double
= time_double
* d
;
160 res
= ltt_time_from_double(time_double
);
165 /* What is that ? (Mathieu) */
172 sec
= t1
.tv_sec
/ (double)d
;
174 res
.tv_nsec
= t1
.tv_nsec
/ (double)d
+ (sec
- res
.tv_sec
) *
175 NANOSECONDS_PER_SECOND
;
176 res
.tv_sec
+= res
.tv_nsec
/ NANOSECONDS_PER_SECOND
;
177 res
.tv_nsec
%= NANOSECONDS_PER_SECOND
;
184 /* Use ltt_time_to_double and ltt_time_from_double to check for lack
187 static inline LttTime
ltt_time_div(LttTime t1
, double d
)
191 double time_double
= ltt_time_to_double(t1
);
193 time_double
= time_double
/ d
;
195 res
= ltt_time_from_double(time_double
);
204 sec
= t1
.tv_sec
/ (double)f
;
206 res
.tv_nsec
= t1
.tv_nsec
/ (double)f
+ (sec
- res
.tv_sec
) *
207 NANOSECONDS_PER_SECOND
;
208 res
.tv_sec
+= res
.tv_nsec
/ NANOSECONDS_PER_SECOND
;
209 res
.tv_nsec
%= NANOSECONDS_PER_SECOND
;
215 static inline guint64
ltt_time_to_uint64(LttTime t1
)
217 return (((guint64
)t1
.tv_sec
*LTT_TIME_UINT_SHIFT_CONST
) << LTT_TIME_UINT_SHIFT
)
218 + (guint64
)t1
.tv_nsec
;
222 #define MAX_TV_SEC_TO_UINT64 0x3FFFFFFFFFFFFFFFULL
224 /* The likely branch is with sec != 0, because most events in a bloc
225 * will be over 1s from the block start. (see tracefile.c)
227 static inline LttTime
ltt_time_from_uint64(guint64 t1
)
229 /* We lose precision if tv_sec is > than (2^62)-1
232 g_assert(t1
<= MAX_TV_SEC_TO_UINT64
);
233 if(t1
> MAX_TV_SEC_TO_UINT64
)
234 g_warning("Conversion from uint64 to non precise LttTime");
237 //if(unlikely(t1 >= NANOSECONDS_PER_SECOND)) {
238 if(likely(t1
>>LTT_TIME_UINT_SHIFT
>= LTT_TIME_UINT_SHIFT_CONST
)) {
239 //res.tv_sec = t1/NANOSECONDS_PER_SECOND;
240 res
.tv_sec
= (t1
>>LTT_TIME_UINT_SHIFT
)
241 /LTT_TIME_UINT_SHIFT_CONST
; // acceleration
242 res
.tv_nsec
= (t1
- res
.tv_sec
*NANOSECONDS_PER_SECOND
);
245 res
.tv_nsec
= (guint32
)t1
;