6d4a972ac4be7e3219a5edafdde453f96bb912ab
[libfirm] / ir / ir / irflag.c
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   Flags to control optimizations.
23  * @author  Christian Schaefer, Goetz Lindenmaier
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdio.h>
31
32 #include "lc_opts.h"
33
34 #include "firm_common.h"
35 #include "irtools.h"
36 #include "irflag_t.h"
37
38 /* DISABLE - don't do this optimization
39    ENABLE  - lets see, if there is a better graph */
40 #define ON      (-1)
41 #define OFF  (0)
42
43 #define FLAG(name, value, def)     (irf_##name & def) |
44 #define E_FLAG(name, value, def)    FLAG(name, value, def)
45 #define I_FLAG(name, value, def)    FLAG(name, value, def)
46 #define R_FLAG(name, value)
47
48 optimization_state_t libFIRM_opt =
49 #include "irflag_t.def"
50   0;
51
52 #undef FLAG
53 #undef E_FLAG
54 #undef I_FLAG
55 #undef R_FLAG
56
57 /** The bitset of currently running phases. */
58 optimization_state_t libFIRM_running = 0;
59
60 /* verbose is always off on default */
61 optimization_state_t libFIRM_verb = 0;
62
63 /** The Firm verbosity level */
64 int firm_verbosity_level;
65
66 /* an external flag can be set and get from outside */
67 #define E_FLAG(name, value, def)           \
68 void set_opt_##name(int flag) {            \
69   if (flag) libFIRM_opt |= irf_##name;     \
70   else      libFIRM_opt &= ~irf_##name;    \
71 }                                          \
72 void set_opt_##name##_verbose(int flag) {  \
73   if (flag) libFIRM_verb |= irf_##name;    \
74   else      libFIRM_verb &= ~irf_##name;   \
75 }                                          \
76 int (get_opt_##name)(void) {               \
77   return _get_opt_##name();                \
78 }
79
80 /* an internal flag can only be set from outside */
81 #define I_FLAG(name, value, def)          \
82 void set_opt_##name(int flag) {           \
83   if (flag) libFIRM_opt |= irf_##name;    \
84   else      libFIRM_opt &= ~irf_##name;   \
85 }                                         \
86 void set_opt_##name##_verbose(int flag) { \
87   if (flag) libFIRM_verb |= irf_##name;   \
88   else      libFIRM_verb &= ~irf_##name;  \
89 }
90
91 #define R_FLAG(name, value)
92
93 /* generate them */
94 #include "irflag_t.def"
95
96 #undef I_FLAG
97 #undef E_FLAG
98 #undef R_FLAG
99
100 /* for compatibility reasons */
101 void set_optimize(int value) {
102   if (value) libFIRM_opt |= irf_optimize;
103   else       libFIRM_opt &= ~irf_optimize;
104 }
105
106 int (get_optimize)(void) {
107   return get_opt_optimize();
108 }
109
110 void set_opt_control_flow(int value)
111 {
112   set_opt_control_flow_straightening(value);
113   set_opt_control_flow_weak_simplification(value);
114   set_opt_control_flow_strong_simplification(value);
115 }
116
117 void set_firm_verbosity (int value) {
118   firm_verbosity_level = value;
119 }
120
121 int  (get_firm_verbosity) (void) {
122   return _get_firm_verbosity();
123 }
124
125 /* Save the current optimization state. */
126 void save_optimization_state(optimization_state_t *state)
127 {
128   *state = libFIRM_opt;
129 }
130
131 /* Restore the current optimization state. */
132 void restore_optimization_state(const optimization_state_t *state)
133 {
134   libFIRM_opt = *state;
135 }
136
137 /* Switches ALL optimizations off */
138 void all_optimizations_off(void)
139 {
140   libFIRM_opt = 0;
141 }
142
143 #ifdef _DEBUG
144 /* only for debugging */
145 void firm_show_flags(FILE *f) {
146   if (! f)
147     f = stdout;
148   printf("Firm optimization state:\n");
149 #define E_FLAG(name, value, def) printf(" %-20s = %s\n", #name, get_opt_##name() ? "ON" : "OFF");
150 #define I_FLAG(name, value, def) printf(" %-20s = %s\n", #name, get_opt_##name() ? "ON" : "OFF");
151 #define R_FLAG(name, value)      printf(" %-20s = %s\n", #name, is_##name##_running() ? "is running" : "not running");
152 #include "irflag_t.def"
153 #undef I_FLAG
154 #undef E_FLAG
155 #undef R_FLAG
156   printf("\n");
157 }
158 #endif
159
160 static const lc_opt_table_entry_t firm_flags[] = {
161 #define I_FLAG(name, val, def) LC_OPT_ENT_BIT(#name, #name, &libFIRM_opt, (1 << val)),
162 #define E_FLAG(name, val, def) LC_OPT_ENT_BIT(#name, #name, &libFIRM_opt, (1 << val)),
163 #define R_FLAG(name, val)
164 #include "irflag_t.def"
165 #undef I_FLAG
166 #undef E_FLAG
167 #undef R_FLAG
168         LC_OPT_LAST
169 };
170
171 void firm_init_flags(void) {
172         lc_opt_entry_t *grp = lc_opt_get_grp(firm_opt_get_root(), "opt");
173         lc_opt_add_table(grp, firm_flags);
174 }
175
176 firm_verification_t opt_do_node_verification = FIRM_VERIFICATION_ON;
177
178 void do_node_verification(firm_verification_t mode) {
179   opt_do_node_verification = mode;
180 }