Checks now the Load_mode
[libfirm] / ir / ir / irflag.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irflag.h
4  * Purpose:     Flags to control optimizations.
5  * Author:      Christian Schaefer, Goetz Lindenmaier
6  * Modified by:
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1999-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14  * @file irflag.h
15  *
16  * Optimization flags.
17  *
18  * @author Christian Schaefer
19  */
20
21 #ifndef _IRFLAG_H_
22 #define _IRFLAG_H_
23
24 /**
25  * A container type to load/restore all optimizations
26  */
27 typedef unsigned optimization_state_t;
28
29 /**
30  * This function enables/disables optimizations globally.
31  *
32  * If optimize == 0 no optimizations are performed at all.
33  * Default: optimize == 1.
34  */
35 void set_optimize (int value);
36 int get_optimize(void);
37
38 /** Enables/Disables constant folding optimization.
39  *
40  *  If opt_constant_folding == 1 perform
41  *  - constant expression evaluation (2 + 5 ==> 7, 3 < 2 ==> false)
42  *  - algebraic simplification  (a * 0 ==> 0, a or a ==> a)
43  *  - simplification of tests   ( !(a < b) ==> (a >= b))
44  *  - refining the memory representation
45  *  - remove store after load
46  * Default: opt_constant_folding == 1.
47  */
48 void set_opt_constant_folding (int value);
49
50 /** Enables/Disables removal of redundant Loads and Stores.
51  *
52  *  - Remove Store that overwrites a just stored value (WAW).
53  *  - Remove Store if it stores a value just loaded (WAR with the same value).
54  *  - Remove Load that loads a value just saved (RAW with the same value).
55  */
56 void set_opt_redundant_LoadStore(int value);
57
58 /** Enables/Disables constant subexpression elimination.
59  *
60  * If opt_cse == 1 perform constant subexpression elimination.
61  * Default: opt_cse == 1.
62  */
63 void set_opt_cse (int value);
64
65 /** Enables/Disables global constant subexpression elimination.
66  *
67  * If opt_global_cse == 1 and opt_cse == 1 perform intra procedure
68  * constant subexpression elimination for floating nodes.  Intra
69  * procedure cse gets the graph into state "floating".  It is necessary
70  * to run pre/code motion to get the graph back into state "op_pin_state_pinned".
71  * right after a call to local_optimize with global cse turned on.
72  * Default: opt_global_cse == 0.
73  */
74 void set_opt_global_cse (int value);
75
76 /** Enables/Disables unreachable code elimination.
77  *
78  * If set, evaluate conditions of conditional branch and replace the
79  * branch with a Jmp/Bad Tuple.
80  *
81  * If opt_unreachable_code == 1 replace nodes (except Block,
82  * Phi and Tuple) with a Bad predecessor by the Bad node.
83  * Default: opt_unreachable_code == 1.
84  */
85 void set_opt_unreachable_code(int value);
86
87 /** Enables/Disables control flow optimizations.
88  *
89  * Performs Straightening, if simplifications and loop simplifications.
90  * Sets all separate control flow flags (control_flow_straightening,
91  * weak_simplification, strong_simplification and critical_edges).
92  */
93 void set_opt_control_flow(int value);
94
95 /** Enables/Disables Straightening. */
96 void set_opt_control_flow_straightening(int value);
97
98 /** Enables/Disables if simplifications in local optimizations. */
99 void set_opt_control_flow_weak_simplification(int value);
100
101 /** Enables/Disables strong if and loop simplification (in optimize_cf). */
102 void set_opt_control_flow_strong_simplification(int value);
103
104 /** Enables/Disables removal of critical control flow edges. */
105 void set_opt_critical_edges(int value);
106
107 /** Enables/Disables reassociation.
108  *
109  * If opt_reassociation == 1 reassociation is performed.
110  * Default: opt_reassociation == 1.
111  */
112 void set_opt_reassociation(int value);
113
114 /** Enables/Disables dead node elimination.
115  *
116  * If opt_dead_node_elimination == 1 deallocate all dead nodes
117  * by copying the firm graph.
118  * Default: opt_dead_node_elimination == 1. */
119 void set_opt_dead_node_elimination (int value);
120
121 /** Enables/Disables dead method elimination.
122  *
123  * If opt_dead_method_elimination == 1 methods never called are
124  * removed.
125  * Default: opt_dead_method_elimination == 1. */
126 void set_opt_dead_method_elimination (int value);
127 void set_opt_dead_method_elimination_verbose (int value);
128
129 /** Enable/Disables inlining.
130  *
131  * If opt_inline == 1 the inlining transformation is performed.
132  */
133 void set_opt_inline (int value);
134
135 /** Enable/Disable optimization of dynamic method dispatch
136  *
137  * This flag enables/disables the optimization of dynamic method dispatch.
138  * If the flag is turned on Sel nodes can be replaced by Const nodes representing
139  * the address of a function.
140  */
141 void set_opt_dyn_meth_dispatch (int value);
142
143 /** Enable/Disable optimization of tail-recursion calls.
144  *
145  * This flag enables/disables the optimization tail-recursion call.
146  * If the flag is turned on tail-recursion calls are optimized into loops.
147  */
148 void set_opt_tail_recursion(int value);
149
150
151 /** Enable/Disable normalizations of the firm representation.
152  *
153  *  This flag guards transformations that normalize the firm representation
154  *  as removing Ids and Tuples, useless Phis, replacing SymConst(id) by
155  *  Const(entity) and others.
156  *  The transformations guarded by this flag are not guarded by flag
157  *  "optimize".
158  *  Many algorithms operating on firm can not deal with constructs in
159  *  the non-normalized representation.
160  *  default: 1
161  *  @@@ ATTENTION: not all such transformations are guarded by a flag.
162  */
163 void set_opt_normalize (int value);
164
165
166 /** Enable/Disable precise exception context. */
167 void set_opt_precise_exc_context(int value);
168
169 /**
170  * Save the current optimization state.
171  */
172 void save_optimization_state(optimization_state_t *state);
173
174 /**
175  * Restore the current optimization state.
176  */
177 void restore_optimization_state(const optimization_state_t *state);
178
179 #endif