removed unimplemented extension
[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->class_cast_state           = ir_class_casts_transitive;
103         irp->globals_entity_usage_state = ir_entity_usage_not_computed;
104 #undef IDENT
105 }
106
107 void init_irprog_1(void)
108 {
109         irp = new_incomplete_ir_prog();
110 }
111
112 void init_irprog_2(void)
113 {
114         complete_ir_prog(irp, INITAL_PROG_NAME);
115         ir_init_type(irp);
116         ir_init_entity(irp);
117 }
118
119 ir_prog *new_ir_prog(const char *name)
120 {
121         ir_prog *irp = new_incomplete_ir_prog();
122         complete_ir_prog(irp, name);
123         return irp;
124 }
125
126 void free_ir_prog(void)
127 {
128         size_t i;
129         /* must iterate backwards here */
130         for (i = get_irp_n_irgs(); i > 0;)
131                 free_ir_graph(get_irp_irg(--i));
132
133         /* free entities first to avoid entity types being destroyed before
134          * the entities using them */
135         for (i = get_irp_n_types(); i > 0;)
136                 free_type_entities(get_irp_type(--i));
137
138         ir_finish_entity(irp);
139
140         for (i = get_irp_n_types(); i > 0;)
141                 free_type(get_irp_type(--i));
142
143         free_ir_graph(irp->const_code_irg);
144
145         ir_finish_type(irp);
146
147         DEL_ARR_F(irp->graphs);
148         DEL_ARR_F(irp->types);
149
150         DEL_ARR_F(irp->global_asms);
151
152         irp->name           = NULL;
153         irp->const_code_irg = NULL;
154         irp->kind           = k_BAD;
155         free(irp);
156         irp = NULL;
157 }
158
159 ir_graph *get_irp_main_irg(void)
160 {
161         assert(irp);
162         return irp->main_irg;
163 }
164
165 void set_irp_main_irg(ir_graph *main_irg)
166 {
167         assert(irp);
168         irp->main_irg = main_irg;
169 }
170
171 ir_type *(get_segment_type)(ir_segment_t segment)
172 {
173         return get_segment_type_(segment);
174 }
175
176 void set_segment_type(ir_segment_t segment, ir_type *new_type)
177 {
178         assert(segment <= IR_SEGMENT_LAST);
179         irp->segment_types[segment] = new_type;
180 }
181
182 ir_type *(get_glob_type)(void)
183 {
184         return get_glob_type_();
185 }
186
187 ir_type *(get_tls_type)(void)
188 {
189         return get_tls_type_();
190 }
191
192 void add_irp_irg(ir_graph *irg)
193 {
194         assert(irg != NULL);
195         assert(irp && irp->graphs);
196         ARR_APP1(ir_graph *, irp->graphs, irg);
197 }
198
199 void remove_irp_irg_from_list(ir_graph *irg)
200 {
201         size_t i, l;
202
203         assert(irg);
204         l = ARR_LEN(irp->graphs);
205         for (i = 0; i < l; ++i) {
206                 if (irp->graphs[i] == irg) {
207                         for (; i < l - 1; ++i) {
208                                 irp->graphs[i] = irp->graphs[i+1];
209                         }
210                         ARR_SETLEN(ir_graph*, irp->graphs, l - 1);
211                         break;
212                 }
213         }
214 }
215
216 void remove_irp_irg(ir_graph *irg)
217 {
218         free_ir_graph(irg);
219         remove_irp_irg_from_list(irg);
220 }
221
222 size_t (get_irp_n_irgs)(void)
223 {
224         return get_irp_n_irgs_();
225 }
226
227 ir_graph *(get_irp_irg)(size_t pos)
228 {
229         return get_irp_irg_(pos);
230 }
231
232 size_t get_irp_last_idx(void)
233 {
234         return irp->max_irg_idx;
235 }
236
237 void set_irp_irg(size_t pos, ir_graph *irg)
238 {
239         assert(irp && irg);
240         assert(pos < ARR_LEN(irp->graphs));
241         irp->graphs[pos] = irg;
242 }
243
244 void add_irp_type(ir_type *typ)
245 {
246         assert(typ != NULL);
247         assert(irp);
248         ARR_APP1(ir_type *, irp->types, typ);
249 }
250
251 void remove_irp_type(ir_type *typ)
252 {
253         size_t i, l;
254         assert(typ);
255
256         l = ARR_LEN(irp->types);
257         for (i = 0; i < l; ++i) {
258                 if (irp->types[i] == typ) {
259                         for (; i < l - 1; ++i) {
260                                 irp->types[i] = irp->types[i+1];
261                         }
262                         ARR_SETLEN(ir_type *, irp->types, l - 1);
263                         break;
264                 }
265         }
266 }
267
268 size_t (get_irp_n_types) (void)
269 {
270         return get_irp_n_types_();
271 }
272
273 ir_type *(get_irp_type) (size_t pos)
274 {
275         return get_irp_type_(pos);
276 }
277
278 void set_irp_type(size_t pos, ir_type *typ)
279 {
280         assert(irp && typ);
281         assert(pos < ARR_LEN((irp)->types));
282         irp->types[pos] = typ;
283 }
284
285 void set_irp_prog_name(ident *name)
286 {
287         irp->name = name;
288 }
289 int irp_prog_name_is_set(void)
290 {
291         return irp->name != new_id_from_str(INITAL_PROG_NAME);
292 }
293 ident *get_irp_ident(void)
294 {
295         return irp->name;
296 }
297 const char  *get_irp_name(void)
298 {
299         return get_id_str(irp->name);
300 }
301
302
303 ir_graph *(get_const_code_irg)(void)
304 {
305         return get_const_code_irg_();
306 }
307
308 void set_irp_ip_outedges(ir_node ** ip_outedges)
309 {
310         irp->ip_outedges = ip_outedges;
311 }
312
313 ir_node** get_irp_ip_outedges(void)
314 {
315         return irp->ip_outedges;
316 }
317
318 irg_callee_info_state get_irp_callee_info_state(void)
319 {
320         return irp->callee_info_state;
321 }
322
323 void set_irp_callee_info_state(irg_callee_info_state s)
324 {
325         irp->callee_info_state = s;
326 }
327
328 ir_label_t (get_irp_next_label_nr)(void)
329 {
330         return get_irp_next_label_nr_();
331 }
332
333 void add_irp_asm(ident *asm_string)
334 {
335         ARR_APP1(ident *, irp->global_asms, asm_string);
336 }
337
338 size_t get_irp_n_asms(void)
339 {
340         return ARR_LEN(irp->global_asms);
341 }
342
343 ident *get_irp_asm(size_t pos)
344 {
345         assert(pos < get_irp_n_asms());
346         return irp->global_asms[pos];
347 }
348
349 #ifndef NDEBUG
350 void irp_reserve_resources(ir_prog *irp, irp_resources_t resources)
351 {
352         assert((irp->reserved_resources & resources) == 0);
353         irp->reserved_resources |= resources;
354 }
355
356 void irp_free_resources(ir_prog *irp, irp_resources_t resources)
357 {
358         assert((irp->reserved_resources & resources) == resources);
359         irp->reserved_resources &= ~resources;
360 }
361
362 irp_resources_t irp_resources_reserved(const ir_prog *irp)
363 {
364         return irp->reserved_resources;
365 }
366 #endif