ir_mode: simplify interface, improve float-mode handling
[libfirm] / ir / ir / irflag_t.def
1 /*
2  * Copyright (C) 1995-2008 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, Sebastian Hack
24  * @version   $Id$
25  */
26
27 /*
28  * We have 3 kinds of flags:
29  * I_FLAGS are INTERNAL flags: There is only a public set_opt_<flag> function
30  * E_FLAGS are EXTERNAL flags: Public get_opt_<flag> and set_opt_<flag> fucntions exists
31  * R_FLAGS are RUNNING flags: Use only internally in libfirm to indicate running states
32  */
33
34 /** Turn off all optimizations. */
35 I_FLAG(optimize                           , 0, ON)
36
37 /** Common subexpression eliminations: Hash the nodes. */
38 E_FLAG(cse                                , 1, ON)
39
40 /** Don't use block predecessor for comparison.
41  *  Default must be zero as code placement must
42  *  be run right after a local optimize walk with
43  *  global_cse on. */
44 I_FLAG(global_cse                         , 2, OFF)
45
46 /** Evaluate operations. */
47 I_FLAG(constant_folding                   , 3, ON)
48
49 /** Algebraic simplifications. */
50 I_FLAG(algebraic_simplification           , 4, ON)
51
52 /** Use Global Null Pointer Test elimination. */
53 I_FLAG(global_null_ptr_elimination        , 5, ON)
54
55 /** Remove dynamic method dispatch. */
56 E_FLAG(dyn_meth_dispatch                  , 6, ON)
57
58 /** Optimize cast nodes. */
59 E_FLAG(suppress_downcast_optimization     , 7, OFF)
60
61 /** Load and Store have only Null exceptions. */
62 I_FLAG(ldst_only_null_ptr_exceptions      , 8, ON)
63
64 /** Sel-based Null-pointer check elimination. */
65 I_FLAG(sel_based_null_check_elim          , 9, OFF)
66
67 /** Automatically create Sync node during construction. */
68 I_FLAG(auto_create_sync                   , 10, OFF)
69
70 /** Enable Alias-analysis. */
71 I_FLAG(alias_analysis                     , 11, ON)
72
73 /** Closed world assumption. */
74 I_FLAG(closed_world                       , 12, OFF)
75
76 /* -------------------- RUNNING flags ------------------- */
77
78 /** This flag is set while the reassociation optimizations are running */
79 R_FLAG(reassoc                            , 0)