BugFix: entity allocation set for global/tls vars
[cparser] / driver / firm_timing.h
1 #ifndef __FIRM_TIMING_H__
2 #define __FIRM_TIMING_H__
3 /**
4  * @file firm_timing.h -- timing for the Firm compiler
5  *
6  * (C) 2006  Michael Beck   beck@ipd.info.uni-karlsruhe.de
7  *
8  * $Id$
9  */
10
11 enum timings {
12 #define DEFTIMEVAR(x, y, z)     x,
13 #include "firm_timing.def"
14         TV_LAST
15 #undef DEFTIMEVAR
16 };
17
18 void timer_init(void);
19 void timer_term(FILE *f);
20 void timer_push(int timer);
21 void timer_pop(void);
22 void timer_start(int timer);
23 void timer_stop(int timer);
24
25 #endif /* __FIRM_TIMING_H__ */