dfc009a835814dd0b81748a78d25e7993cae4cec
[libfirm] / ir / ir / irflag_t.def
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     Definitions for optimisation flags
23  * @author    Michael Beck
24  * @version   $Id$
25  */
26
27 /** Turn off all optimizations. */
28 I_FLAG(optimize                           , 0, ON)
29
30 /** Common subexpression eliminations: Hash the nodes. */
31 E_FLAG(cse                                , 1, ON)
32
33 /** Don't use block predecessor for comparison.
34  *  Default must be zero as code placement must
35  *  be run right after a local optimize walk with
36  *  global_cse on. */
37 I_FLAG(global_cse                         , 2, OFF)
38
39 /** Evaluate operations. */
40 I_FLAG(constant_folding                   , 3, ON)
41
42 /** Bad node propagation. */
43 I_FLAG(unreachable_code                   , 4, ON)
44
45 /** */
46 I_FLAG(control_flow_straightening         , 5, ON)
47
48 /** */
49 I_FLAG(control_flow_weak_simplification   , 6, ON)
50
51 /** */
52 I_FLAG(control_flow_strong_simplification , 7, ON)
53
54 /** Reclaim memory. */
55 I_FLAG(dead_node_elimination              , 8, ON)
56
57 /** Reassociate nodes. */
58 I_FLAG(reassociation                      , 9, ON)
59
60 /** Do inlining transformation. */
61 I_FLAG(inline                             , 10, ON)
62
63 /** Remove dynamic method dispatch. */
64 E_FLAG(dyn_meth_dispatch                  , 11, ON)
65
66 /** Transformations that normalize the firm representation
67  *  as removing Ids and Tuples, useless Phis, SymConst(id) -> Const(entity) ...
68  */
69 I_FLAG(normalize                          , 12, ON)
70
71 /** Remove tail-recursion. */
72 I_FLAG(tail_recursion                     , 13, ON)
73
74 /** Free never called methods */
75 I_FLAG(dead_method_elimination            , 14, ON)
76
77 /** precise exception context */
78 I_FLAG(precise_exc_context                , 15, ON)
79
80 /** Do loop unrolling */
81 I_FLAG(loop_unrolling                     , 16, OFF)    /* currently buggy, 2.1.2006 */
82
83 /** Do Strength reduction */
84 I_FLAG(strength_red                       , 17, ON)
85
86 /** Optimize Loads and Stores */
87 I_FLAG(redundant_loadstore                , 18, ON)
88
89 /** Optimize Fragile OPs */
90 I_FLAG(fragile_ops                        , 19, OFF)
91
92 /** Optimize function calls. */
93 I_FLAG(function_call                      , 20, ON)
94
95 /** Optimize cast nodes. */
96 E_FLAG(optimize_class_casts               , 21, ON)
97 E_FLAG(suppress_downcast_optimization     , 22, OFF)
98
99 /** Not really an optimization, removes Confirm nodes. */
100 I_FLAG(remove_confirm                     , 23, OFF)
101
102 /** Scalar replacement. */
103 I_FLAG(scalar_replacement                 , 24, ON)
104
105 /** Load and Store have only Null exceptions. */
106 I_FLAG(ldst_only_null_ptr_exceptions      , 25, ON)
107
108 /** Sel-based Null-pointer check elimination. */
109 I_FLAG(sel_based_null_check_elim          , 26, OFF)
110
111 /** Automatically create Sync node during construction. */
112 I_FLAG(auto_create_sync                   , 27, OFF)
113
114 /** Enable Alias-analysis. */
115 I_FLAG(alias_analysis                     , 28, ON)
116
117 /** Closed world assumption. */
118 I_FLAG(closed_world                       , 31, OFF)