Added option to switch of precise exception context
[libfirm] / ir / ir / irflag_t.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irgraph.c
4  * Purpose:     Flags to control optimizations, inline implementation.
5  * Author:      Michael Beck
6  * Created:
7  * CVS-ID:      $Id$
8  * Copyright:   (c) 1998-2004 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11
12 /**
13  * @file irflag_t.h
14  *
15  * Inline implementation of Optimization flags.
16  *
17  * @author Michael Beck
18  */
19 #ifndef _IRFLAG_T_H_
20 #define _IRFLAG_T_H_
21
22 #include "irflag.h"
23
24 /**
25  * current libFIRM optimizations
26  */
27 typedef enum {
28   /** Common subexpression eliminations: Hash the nodes. */
29   OPT_CSE                                = 0x00000001,
30
31   /** Don't use block predecessor for comparison.
32    *  Default must be zero as code placement must
33    *  be run right after a local optimize walk with
34    *  opt_global_cse on. */
35   OPT_GLOBAL_CSE                         = 0x00000002,
36
37   /** Evaluate operations. */
38   OPT_CONSTANT_FOLDING                   = 0x00000004,
39
40   /** Bad node propagation. */
41   OPT_UNREACHABLE_CODE                   = 0x00000008,
42
43   /** */
44   OPT_CONTROL_FLOW_STRAIGHTENING         = 0x00000010,
45
46   /** */
47   OPT_CONTROL_FLOW_WEAK_SIMPLIFICATION   = 0x00000020,
48
49   /** */
50   OPT_CONTROL_FLOW_STRONG_SIMPLIFICATION = 0x00000040,
51
52   /** */
53   OPT_CRITICAL_EDGES                     = 0x00000080,
54
55   /** Reclaim memory. */
56   OPT_DEAD_NODE_ELIMINATION              = 0x00000100,
57
58   /** Reassociate nodes. */
59   OPT_REASSOCIATION                      = 0x00000200,
60
61   /** Do inlining transformation. */
62   OPT_INLINE                             = 0x00000400,
63
64   /** Remove dynamic method dispatch. */
65   OPT_DYN_METH_DISPATCH                  = 0x00000800,
66
67   /** Transformations that normalize the firm representation
68    *  as removing Ids and Tuples, useless Phis, SymConst(id) -> Const(entity) ...
69    */
70   OPT_NORMALIZE                          = 0x00001000,
71
72   /** Remove tail-recursion. */
73   OPT_TAIL_RECURSION                     = 0x00002000,
74
75   /** Free never called methods */
76   OPT_DEAD_METHOD_ELIMINATION            = 0x00004000,
77
78   /** precise exception context */
79   OPT_PRECISE_EXC_CONTEXT                = 0x00008000,
80
81   /** Free never called methods */
82   OPT_DEAD_METHOD_ELIMINATION_VERBOSE    = 0x00010000,
83
84   /** Turn off all optimizations. */
85   OPT_OPTIMIZED                          = 0x40000000,
86 } libfirm_opts_t;
87
88 extern optimization_state_t libFIRM_opt;
89
90 /** Returns constant folding optimization setting. */
91 static INLINE int get_opt_cse(void)
92 {
93   return libFIRM_opt & OPT_CSE;
94 }
95
96 /** Returns constant subexpression elimination setting. */
97 static INLINE int get_opt_global_cse(void)
98 {
99   return libFIRM_opt & OPT_GLOBAL_CSE;
100 }
101
102 /** Returns global constant subexpression elimination setting. */
103 static INLINE int get_opt_constant_folding(void)
104 {
105   return libFIRM_opt & OPT_CONSTANT_FOLDING;
106 }
107
108 /** Returns unreachable code elimination setting. */
109 static INLINE int get_opt_unreachable_code(void)
110 {
111   return libFIRM_opt & OPT_UNREACHABLE_CODE;
112 }
113
114 /** Returns Straightening setting. */
115 static INLINE int get_opt_control_flow_straightening(void)
116 {
117   return libFIRM_opt & OPT_CONTROL_FLOW_STRAIGHTENING;
118 }
119
120 /** Returns if simplifications in local optimizations setting. */
121 static INLINE int get_opt_control_flow_weak_simplification(void)
122 {
123   return libFIRM_opt & OPT_CONTROL_FLOW_WEAK_SIMPLIFICATION;
124 }
125
126 /** Returns strong if and loop simplification setting */
127 static INLINE int get_opt_control_flow_strong_simplification(void)
128 {
129   return libFIRM_opt & OPT_CONTROL_FLOW_STRONG_SIMPLIFICATION;
130 }
131
132 /** Returns whether critical edges are removed */
133 static INLINE int get_opt_critical_edges(void)
134 {
135   return libFIRM_opt & OPT_CRITICAL_EDGES;
136 }
137
138 /** Returns reassociation setting. */
139 static INLINE int get_opt_reassociation(void)
140 {
141   return libFIRM_opt & OPT_REASSOCIATION;
142 }
143
144 /** Returns dead node elimination setting. */
145 static INLINE int get_opt_dead_node_elimination(void)
146 {
147   return libFIRM_opt & OPT_DEAD_NODE_ELIMINATION;
148 }
149
150 /** Returns dead method elimination setting. */
151 static INLINE int get_opt_dead_method_elimination(void)
152 {
153   return libFIRM_opt & OPT_DEAD_METHOD_ELIMINATION;
154 }
155
156 /** Returns dead method elimination setting. */
157 static INLINE int get_opt_dead_method_elimination_verbose(void)
158 {
159   return libFIRM_opt & OPT_DEAD_METHOD_ELIMINATION_VERBOSE;
160 }
161
162 /** Returns global optimization setting */
163 static INLINE int get_opt_optimize(void)
164 {
165   return libFIRM_opt & OPT_OPTIMIZED;
166 }
167
168 /** Returns inlining setting. */
169 static INLINE int get_opt_inline(void)
170 {
171   return libFIRM_opt & OPT_INLINE;
172 }
173
174 static INLINE int get_opt_dyn_meth_dispatch(void)
175 {
176   return libFIRM_opt & OPT_DYN_METH_DISPATCH;
177 }
178
179 static INLINE int get_opt_normalize(void)
180 {
181   return libFIRM_opt & OPT_NORMALIZE;
182 }
183
184 /** Returns tail-recursion setting. */
185 static INLINE int get_opt_tail_recursion(void)
186 {
187   return libFIRM_opt & OPT_TAIL_RECURSION;
188 }
189
190 /** Returns precise exception context setting. */
191 static INLINE int get_opt_precise_exc_context(void)
192 {
193 #if PRECISE_EXC_CONTEXT
194   return 0;
195 #else
196   return libFIRM_opt & OPT_PRECISE_EXC_CONTEXT;
197 #endif
198 }
199
200 #endif /* _IRFLAG_T_H_ */