remove class cast optimization
[libfirm] / ir / ir / irprog.c
1 /*
2  * Copyright (C) 1995-2011 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    Entry point to the representation of a whole program.
23  * @author   Goetz Lindenmaier, Michael Beck
24  * @date     2000
25  */
26 #include "config.h"
27
28 #include <string.h>
29
30 #include "irprog_t.h"
31 #include "irgraph_t.h"
32 #include "irpass_t.h"
33 #include "array.h"
34 #include "error.h"
35 #include "obst.h"
36 #include "irop_t.h"
37 #include "irmemory.h"
38 #include "ircons.h"
39
40 /** The initial name of the irp program. */
41 #define INITAL_PROG_NAME "no_name_set"
42
43 ir_prog *irp;
44 ir_prog *get_irp(void) { return irp; }
45 void set_irp(ir_prog *new_irp)
46 {
47         irp = new_irp;
48 }
49
50 /**
51  *  Create a new incomplete ir_prog.
52  */
53 static ir_prog *new_incomplete_ir_prog(void)
54 {
55         ir_prog *res = XMALLOCZ(ir_prog);
56
57         res->kind           = k_ir_prog;
58         res->graphs         = NEW_ARR_F(ir_graph *, 0);
59         res->types          = NEW_ARR_F(ir_type *, 0);
60         res->global_asms    = NEW_ARR_F(ident *, 0);
61         res->last_label_nr  = 1;  /* 0 is reserved as non-label */
62         res->max_irg_idx    = 0;
63         res->max_node_nr    = 0;
64 #ifndef NDEBUG
65         res->reserved_resources = IRP_RESOURCE_NONE;
66 #endif
67
68         return res;
69 }
70
71 /**
72  * Completes an incomplete irprog.
73  *
74  * @param irp          the (yet incomplete) irp
75  * @param module_name  the (module) name for this irp
76  */
77 static void complete_ir_prog(ir_prog *irp, const char *module_name)
78 {
79 #define IDENT(x)  new_id_from_chars(x, sizeof(x) - 1)
80
81         irp->name = new_id_from_str(module_name);
82         irp->segment_types[IR_SEGMENT_GLOBAL]
83                 = new_type_class(IDENT("GlobalType"));
84         irp->segment_types[IR_SEGMENT_THREAD_LOCAL]
85                 = new_type_struct(IDENT("ThreadLocal"));
86         irp->segment_types[IR_SEGMENT_CONSTRUCTORS]
87                 = new_type_class(IDENT("Constructors"));
88         irp->segment_types[IR_SEGMENT_DESTRUCTORS]
89                 = new_type_class(IDENT("Destructors"));
90
91         /* Set these flags for debugging. */
92         irp->segment_types[IR_SEGMENT_GLOBAL]->flags       |= tf_segment|tf_global_type;
93         irp->segment_types[IR_SEGMENT_THREAD_LOCAL]->flags |= tf_segment|tf_tls_type;
94         irp->segment_types[IR_SEGMENT_CONSTRUCTORS]->flags |= tf_segment|tf_constructors;
95         irp->segment_types[IR_SEGMENT_DESTRUCTORS]->flags  |= tf_segment|tf_destructors;
96
97         /* The global type is a class, but we cannot derive from it, so set
98            the final property to assist optimizations that checks for it. */
99         set_class_final(irp->segment_types[IR_SEGMENT_GLOBAL], 1);
100
101         irp->const_code_irg             = new_const_code_irg();
102         irp->globals_entity_usage_state = ir_entity_usage_not_computed;
103 #undef IDENT
104 }
105
106 void init_irprog_1(void)
107 {
108         irp = new_incomplete_ir_prog();
109 }
110
111 void init_irprog_2(void)
112 {
113         complete_ir_prog(irp, INITAL_PROG_NAME);
114         ir_init_type(irp);
115         ir_init_entity(irp);
116 }
117
118 ir_prog *new_ir_prog(const char *name)
119 {
120         ir_prog *irp = new_incomplete_ir_prog();
121         complete_ir_prog(irp, name);
122         return irp;
123 }
124
125 void free_ir_prog(void)
126 {
127         if (irp == NULL)
128                 return;
129
130         size_t i;
131         /* must iterate backwards here */
132         for (i = get_irp_n_irgs(); i > 0;)
133                 free_ir_graph(get_irp_irg(--i));
134
135         /* free entities first to avoid entity types being destroyed before
136          * the entities using them */
137         for (i = get_irp_n_types(); i > 0;)
138                 free_type_entities(get_irp_type(--i));
139
140         ir_finish_entity(irp);
141
142         for (i = get_irp_n_types(); i > 0;)
143                 free_type(get_irp_type(--i));
144
145         free_ir_graph(irp->const_code_irg);
146
147         ir_finish_type(irp);
148
149         DEL_ARR_F(irp->graphs);
150         DEL_ARR_F(irp->types);
151
152         DEL_ARR_F(irp->global_asms);
153
154         irp->name           = NULL;
155         irp->const_code_irg = NULL;
156         irp->kind           = k_BAD;
157         free(irp);
158         irp = NULL;
159 }
160
161 ir_graph *get_irp_main_irg(void)
162 {
163         assert(irp);
164         return irp->main_irg;
165 }
166
167 void set_irp_main_irg(ir_graph *main_irg)
168 {
169         assert(irp);
170         irp->main_irg = main_irg;
171 }
172
173 ir_type *(get_segment_type)(ir_segment_t segment)
174 {
175         return get_segment_type_(segment);
176 }
177
178 void set_segment_type(ir_segment_t segment, ir_type *new_type)
179 {
180         assert(segment <= IR_SEGMENT_LAST);
181         irp->segment_types[segment] = new_type;
182 }
183
184 ir_type *(get_glob_type)(void)
185 {
186         return get_glob_type_();
187 }
188
189 ir_type *(get_tls_type)(void)
190 {
191         return get_tls_type_();
192 }
193
194 void add_irp_irg(ir_graph *irg)
195 {
196         assert(irg != NULL);
197         assert(irp && irp->graphs);
198         ARR_APP1(ir_graph *, irp->graphs, irg);
199 }
200
201 void remove_irp_irg(ir_graph *irg)
202 {
203         size_t i, l;
204
205         assert(irg);
206         l = ARR_LEN(irp->graphs);
207         for (i = 0; i < l; ++i) {
208                 if (irp->graphs[i] == irg) {
209                         for (; i < l - 1; ++i) {
210                                 irp->graphs[i] = irp->graphs[i+1];
211                         }
212                         ARR_SETLEN(ir_graph*, irp->graphs, l - 1);
213                         break;
214                 }
215         }
216 }
217
218 size_t (get_irp_n_irgs)(void)
219 {
220         return get_irp_n_irgs_();
221 }
222
223 ir_graph *(get_irp_irg)(size_t pos)
224 {
225         return get_irp_irg_(pos);
226 }
227
228 size_t get_irp_last_idx(void)
229 {
230         return irp->max_irg_idx;
231 }
232
233 void set_irp_irg(size_t pos, ir_graph *irg)
234 {
235         assert(irp && irg);
236         assert(pos < ARR_LEN(irp->graphs));
237         irp->graphs[pos] = irg;
238 }
239
240 void add_irp_type(ir_type *typ)
241 {
242         assert(typ != NULL);
243         assert(irp);
244         ARR_APP1(ir_type *, irp->types, typ);
245 }
246
247 void remove_irp_type(ir_type *typ)
248 {
249         size_t i, l;
250         assert(typ);
251
252         l = ARR_LEN(irp->types);
253         for (i = 0; i < l; ++i) {
254                 if (irp->types[i] == typ) {
255                         for (; i < l - 1; ++i) {
256                                 irp->types[i] = irp->types[i+1];
257                         }
258                         ARR_SETLEN(ir_type *, irp->types, l - 1);
259                         break;
260                 }
261         }
262 }
263
264 size_t (get_irp_n_types) (void)
265 {
266         return get_irp_n_types_();
267 }
268
269 ir_type *(get_irp_type) (size_t pos)
270 {
271         return get_irp_type_(pos);
272 }
273
274 void set_irp_type(size_t pos, ir_type *typ)
275 {
276         assert(irp && typ);
277         assert(pos < ARR_LEN((irp)->types));
278         irp->types[pos] = typ;
279 }
280
281 void set_irp_prog_name(ident *name)
282 {
283         irp->name = name;
284 }
285 int irp_prog_name_is_set(void)
286 {
287         return irp->name != new_id_from_str(INITAL_PROG_NAME);
288 }
289 ident *get_irp_ident(void)
290 {
291         return irp->name;
292 }
293 const char  *get_irp_name(void)
294 {
295         return get_id_str(irp->name);
296 }
297
298
299 ir_graph *(get_const_code_irg)(void)
300 {
301         return get_const_code_irg_();
302 }
303
304 void set_irp_ip_outedges(ir_node ** ip_outedges)
305 {
306         irp->ip_outedges = ip_outedges;
307 }
308
309 ir_node** get_irp_ip_outedges(void)
310 {
311         return irp->ip_outedges;
312 }
313
314 irg_callee_info_state get_irp_callee_info_state(void)
315 {
316         return irp->callee_info_state;
317 }
318
319 void set_irp_callee_info_state(irg_callee_info_state s)
320 {
321         irp->callee_info_state = s;
322 }
323
324 ir_label_t (get_irp_next_label_nr)(void)
325 {
326         return get_irp_next_label_nr_();
327 }
328
329 void add_irp_asm(ident *asm_string)
330 {
331         ARR_APP1(ident *, irp->global_asms, asm_string);
332 }
333
334 size_t get_irp_n_asms(void)
335 {
336         return ARR_LEN(irp->global_asms);
337 }
338
339 ident *get_irp_asm(size_t pos)
340 {
341         assert(pos < get_irp_n_asms());
342         return irp->global_asms[pos];
343 }
344
345 #ifndef NDEBUG
346 void irp_reserve_resources(ir_prog *irp, irp_resources_t resources)
347 {
348         assert((irp->reserved_resources & resources) == 0);
349         irp->reserved_resources |= resources;
350 }
351
352 void irp_free_resources(ir_prog *irp, irp_resources_t resources)
353 {
354         assert((irp->reserved_resources & resources) == resources);
355         irp->reserved_resources &= ~resources;
356 }
357
358 irp_resources_t irp_resources_reserved(const ir_prog *irp)
359 {
360         return irp->reserved_resources;
361 }
362 #endif