add missing includes, makefile updates
[libfirm] / ir / ir / irflag_t.h
1 /*
2  * Copyright (C) 1995-2007 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    Flags to control optimizations, inline implementation.
23  * @author   Michael Beck
24  * @version  $Id$
25  */
26 #ifndef FIRM_IR_IRFLAG_T_H
27 #define FIRM_IR_IRFLAG_T_H
28
29 #include "firm_config.h"
30
31 #include "irflag.h"
32
33 /**
34  * current libFIRM optimizations
35  */
36 typedef enum {
37 #define E_FLAG(name, value, def)        irf_##name = (1 << value),
38 #define I_FLAG(name, value, def)        irf_##name = (1 << value),
39
40 #include "irflag_t.def"
41         irf_last
42 #undef I_FLAG
43 #undef E_FLAG
44 } libfirm_opts_t;
45
46 extern optimization_state_t libFIRM_opt;
47 extern optimization_state_t libFIRM_verb;
48 extern firm_verification_t opt_do_node_verification;
49
50 extern int firm_verbosity_level;
51
52 /** initialises the flags */
53 void firm_init_flags(void);
54
55 /* generate the getter functions for external access */
56 #define E_FLAG(name, value, def)                    \
57 static INLINE int _get_opt_##name(void) {           \
58   return libFIRM_opt & irf_##name;                  \
59 }                                                   \
60 static INLINE int get_opt_##name##_verbose(void) {  \
61   return libFIRM_verb & irf_##name;                 \
62 }
63
64 /* generate the getter functions for internal access */
65 #define I_FLAG(name, value, def)                   \
66 static INLINE int get_opt_##name(void) {           \
67   return libFIRM_opt & irf_##name;                 \
68 }                                                  \
69 static INLINE int get_opt_##name##_verbose(void) { \
70   return libFIRM_verb & irf_##name;                \
71 }
72
73 #include "irflag_t.def"
74
75 #undef I_FLAG
76 #undef E_FLAG
77
78 static INLINE int _get_firm_verbosity (void) {
79         return firm_verbosity_level;
80 }
81
82 static INLINE int _get_optimize (void) {
83   return get_opt_optimize();
84 }
85
86 static INLINE firm_verification_t
87 get_node_verification_mode(void) {
88   return opt_do_node_verification;
89 }
90
91 #define get_optimize()                           _get_optimize()
92 #define get_opt_cse()                            _get_opt_cse()
93 #define get_firm_verbosity()                     _get_firm_verbosity()
94 #define get_opt_dyn_meth_dispatch()              _get_opt_dyn_meth_dispatch()
95 #define get_opt_optimize_class_casts()           _get_opt_optimize_class_casts()
96 #define get_opt_suppress_downcast_optimization() _get_opt_suppress_downcast_optimization()
97
98 extern void firm_init_flags(void);
99
100 #endif