Add a hint about the infamous pn_Cmp_Lg/Ne mixup in the assertion message of verify_n...
[libfirm] / ir / stat / stat_timing.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   OS abstraction from time measurement
23  * @author  Sebastian Hack, Michael Beck, Matthias Braun
24  * @version $Id$
25  */
26 #ifndef FIRM_STAT_TIMING_H
27 #define FIRM_STAT_TIMING_H
28
29 #if defined(__i386__) || defined(_M_IX86) || defined(_M_X64)
30
31 #if defined(__GNUC__)
32 typedef unsigned long long timing_ticks_t;
33 static inline timing_ticks_t __timing_ticks(void) { timing_ticks_t result; __asm__ __volatile__ ("rdtsc" : "=A" (result)); return result; }
34
35 #elif defined(_MSC_VER)
36 #include <intrin.h>
37
38 typedef unsigned __int64 timing_ticks_t;
39 static __inline timing_ticks_t __timing_ticks(void) { return __rdtsc(); }
40 #else
41 #error need a 64bit int type
42 #endif
43
44 #define timing_ticks(t)              ((t) = __timing_ticks())
45 #define timing_ticks_init(t)         ((t) = 0)
46 #define timing_ticks_cmp(a, b, cmp)  ((a) cmp (b))
47 #define timing_ticks_sub(r, a)       ((r) = (r) - (a))
48 #define timing_ticks_add(r, a)       ((r) = (r) + (a))
49 #define timing_ticks_ulong(t)        ((unsigned long) (t))
50 #define timing_ticks_dbl(t)          ((double) (t))
51
52 #else /* !__i386__ && !__x86_64 */
53
54 #include <sys/time.h>
55
56 typedef struct timeval timing_ticks_t;
57 #define timing_ticks(t)              (gettimeofday(&(t), NULL))
58 #define timing_ticks_init(t)         memset(&(t), 0, sizeof(t))
59
60 /*
61  * This shamelessly stolen and modified from glibc's
62  * /usr/include/sys/time.h
63  */
64 #define timing_ticks_cmp(a, b, CMP)   \
65   (((a).tv_sec == (b).tv_sec) ?           \
66    ((a).tv_usec CMP (b).tv_usec) :    \
67    ((a).tv_sec CMP (b).tv_sec))
68
69 #define timing_ticks_add(r, a)                       \
70         do {                                                                     \
71                 (r).tv_sec = (r).tv_sec + (a).tv_sec;        \
72                 (r).tv_usec = (r).tv_usec + (a).tv_usec;     \
73                 if ((r).tv_usec >= 1000000) {                        \
74                         ++(r).tv_sec;                            \
75                         (r).tv_usec -= 1000000;                  \
76                 }                                                                                \
77         } while (0)
78
79 #define timing_ticks_sub(r, a)                        \
80         do {                                                                              \
81                 (r).tv_sec = (r).tv_sec - (a).tv_sec;         \
82                 (r).tv_usec = (r).tv_usec - (a).tv_usec;      \
83                 if ((r).tv_usec < 0) {                                        \
84                         --(r).tv_sec;                                                 \
85                         (r).tv_usec += 1000000;                                   \
86                 }                                                                                 \
87         } while (0)
88
89 #define timing_ticks_ulong(t)        ((unsigned long) ((t).tv_usec + 1000000 * (t).tv_sec))
90 #define timing_ticks_dbl(t)          (((t).tv_usec + 1000000.0 * (t).tv_sec))
91
92 #endif
93
94 void timing_enter_max_prio(void);
95 void timing_leave_max_prio(void);
96
97 #endif