The constructor initializes the array.
[libfirm] / ir / be / be_t.h
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   Internal backend global data structures.
23  * @author  Sebastian Hack
24  * @version $Id$
25  */
26 #ifndef FIRM_BE_BE_T_H
27 #define FIRM_BE_BE_T_H
28
29 #include "firm_types.h"
30 #include "obst.h"
31 #include "debug.h"
32 #include "bitset.h"
33 #include "timing.h"
34 #include "pmap.h"
35
36 #include "be.h"
37 #include "be_types.h"
38
39 enum {
40         DUMP_NONE     = 0,
41         DUMP_INITIAL  = 1 << 0,
42         DUMP_ABI      = 1 << 1,
43         DUMP_SCHED    = 1 << 2,
44         DUMP_PREPARED = 1 << 3,
45         DUMP_RA       = 1 << 4,
46         DUMP_FINAL    = 1 << 5,
47         DUMP_BE       = 1 << 6
48 };
49
50 enum {
51         BE_TIME_OFF,
52         BE_TIME_ON
53 };
54
55 enum {
56         BE_VERIFY_OFF,
57         BE_VERIFY_WARN,
58         BE_VERIFY_ASSERT
59 };
60
61 /** Backend options */
62 struct be_options_t {
63         unsigned dump_flags;      /**< backend dumping flags */
64         int  timing;              /**< time the backend phases */
65         int  opt_profile;         /**< instrument code for profiling */
66         int  omit_fp;             /**< try to omit the frame pointer */
67         int  pic;                 /**< create position independent code */
68         int  verify_option;       /**< backend verify option */
69         char ilp_server[128];     /**< the ilp server name */
70         char ilp_solver[128];     /**< the ilp solver name */
71         int  statev;              /**< enable stat event dumping */
72         char filtev[128];         /**< filter mask for stat events (regex is supported) */
73 };
74
75 struct be_main_env_t {
76         arch_env_t   *arch_env;
77         be_options_t *options;              /**< backend options */
78         const char   *cup_name;             /**< name of the compilation unit */
79         pmap         *ent_trampoline_map;   /**< A map containing PIC trampolines for methods. */
80         ir_type      *pic_trampolines_type; /**< Class type containing all trampolines */
81         pmap         *ent_pic_symbol_map;
82         ir_type      *pic_symbols_type;
83 };
84
85 extern asm_constraint_flags_t asm_constraint_flags[256];
86
87 void be_init_default_asm_constraint_flags(void);
88
89 void be_put_allocatable_regs(const ir_graph *irg,
90                              const arch_register_class_t *cls, bitset_t *bs);
91
92 void be_set_allocatable_regs(const ir_graph *irg,
93                              const arch_register_class_t *cls,
94                              unsigned *raw_bitset);
95
96 unsigned be_get_n_allocatable_regs(const ir_graph *irg,
97                                    const arch_register_class_t *cls);
98
99 /**
100  * Initialize the backend. Must be run first in init_firm();
101  */
102 void firm_be_init(void);
103 void firm_be_finish(void);
104
105 extern int be_timing;
106
107 typedef enum {
108         T_FIRST,
109         T_ABI = T_FIRST,
110         T_CODEGEN,
111         T_RA_PREPARATION,
112         T_SCHED,
113         T_CONSTR,
114         T_FINISH,
115         T_EMIT,
116         T_VERIFY,
117         T_OTHER,
118         T_HEIGHTS,
119         T_LIVE,
120         T_EXECFREQ,
121         T_SSA_CONSTR,
122         T_RA_PROLOG,
123         T_RA_EPILOG,
124         T_RA_CONSTR,
125         T_RA_SPILL,
126         T_RA_SPILL_APPLY,
127         T_RA_COLOR,
128         T_RA_IFG,
129         T_RA_COPYMIN,
130         T_RA_SSA,
131         T_RA_OTHER,
132         T_LAST = T_RA_OTHER
133 } be_timer_id_t;
134 ENUM_COUNTABLE(be_timer_id_t)
135 extern ir_timer_t *be_timers[T_LAST+1];
136
137 static inline void be_timer_push(be_timer_id_t id)
138 {
139         int res;
140         if (!be_timing)
141                 return;
142
143         assert(id <= T_LAST);
144         res = ir_timer_push(be_timers[id]);
145         (void) res;
146         assert(res && "Timer already on stack, cannot be pushed twice.");
147 }
148
149 static inline void be_timer_pop(be_timer_id_t id)
150 {
151         ir_timer_t *tmp;
152         if (!be_timing)
153                 return;
154
155         tmp = ir_timer_pop();
156         (void) tmp;
157         (void) id;
158         assert(tmp == be_timers[id] && "Attempt to pop wrong timer.");
159 }
160
161 #endif