ast2firm: Implement casting from complex to real types.
[cparser] / driver / firm_timing.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Michael Beck <mm.beck@gmx.net>
4  */
5
6 /**
7  * @file
8  * @brief timing for the Firm compiler
9  */
10 #ifndef __FIRM_TIMING_H__
11 #define __FIRM_TIMING_H__
12
13 #include <stdio.h>
14 #include <libfirm/timing.h>
15
16 void timer_init(void);
17 void timer_register(ir_timer_t *timer, const char *description);
18 void timer_term(FILE *f);
19 void timer_push(ir_timer_t *timer);
20 void timer_pop(ir_timer_t *timer);
21 void timer_start(ir_timer_t *timer);
22 void timer_stop(ir_timer_t *timer);
23
24 #endif