remove sel_based_null_check flag
[libfirm] / ir / ir / irgraph_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    Entry point to the representation of procedure code -- internal header.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  */
25 #ifndef FIRM_IR_IRGRAPH_T_H
26 #define FIRM_IR_IRGRAPH_T_H
27
28 #include "firm_types.h"
29 #include "irgraph.h"
30
31 #include "irtypes.h"
32 #include "irprog.h"
33 #include "type_t.h"
34 #include "entity_t.h"
35 #include "iredgekinds.h"
36
37 #include "irloop.h"
38
39 #include "obst.h"
40 #include "pset.h"
41 #include "set.h"
42
43 /** Suffix that is added to every frame type. */
44 #define FRAME_TP_SUFFIX "frame_tp"
45
46 /**
47  * Initializes the graph construction module.
48  */
49 void firm_init_irgraph(void);
50
51 /**
52  * Set the number of locals for a given graph.
53  *
54  * @param irg    the graph
55  * @param n_loc  number of locals
56  */
57 void irg_set_nloc(ir_graph *res, int n_loc);
58
59 /**
60  * Internal constructor that does not add to irp_irgs or the like.
61  */
62 ir_graph *new_r_ir_graph(ir_entity *ent, int n_loc);
63
64 /**
65  * Make a rudimentary ir graph for the constant code.
66  * Must look like a correct irg, spare everything else.
67  */
68 ir_graph *new_const_code_irg(void);
69
70 /**
71  * Create a new graph that is a copy of a given one.
72  * Uses the link fields of the original graphs.
73  *
74  * @param irg  The graph that must be copied.
75  */
76 ir_graph *create_irg_copy(ir_graph *irg);
77
78 /**
79  * Set the op_pin_state_pinned state of a graph.
80  *
81  * @param irg     the IR graph
82  * @param p       new pin state
83  */
84 void set_irg_pinned(ir_graph *irg, op_pin_state p);
85
86 /** Returns the obstack associated with the graph. */
87 struct obstack *get_irg_obstack(const ir_graph *irg);
88
89 /**
90  * Returns true if the node n is allocated on the storage of graph irg.
91  *
92  * @param irg   the IR graph
93  * @param n the IR node
94  */
95 int node_is_in_irgs_storage(const ir_graph *irg, const ir_node *n);
96
97 /*-------------------------------------------------------------------*/
98 /* inline functions for graphs                                       */
99 /*-------------------------------------------------------------------*/
100
101 static inline int is_ir_graph_(const void *thing)
102 {
103         return (get_kind(thing) == k_ir_graph);
104 }
105
106 /** Returns the start block of a graph. */
107 static inline ir_node *get_irg_start_block_(const ir_graph *irg)
108 {
109         return get_irn_n(irg->anchor, anchor_start_block);
110 }
111
112 static inline void set_irg_start_block_(ir_graph *irg, ir_node *node)
113 {
114         set_irn_n(irg->anchor, anchor_start_block, node);
115 }
116
117 static inline ir_node *get_irg_start_(const ir_graph *irg)
118 {
119         return get_irn_n(irg->anchor, anchor_start);
120 }
121
122 static inline void set_irg_start_(ir_graph *irg, ir_node *node)
123 {
124         set_irn_n(irg->anchor, anchor_start, node);
125 }
126
127 static inline ir_node *get_irg_end_block_(const ir_graph *irg)
128 {
129         return get_irn_n(irg->anchor, anchor_end_block);
130 }
131
132 static inline void set_irg_end_block_(ir_graph *irg, ir_node *node)
133 {
134         set_irn_n(irg->anchor, anchor_end_block, node);
135 }
136
137 static inline ir_node *get_irg_end_(const ir_graph *irg)
138 {
139         return get_irn_n(irg->anchor, anchor_end);
140 }
141
142 static inline void set_irg_end_(ir_graph *irg, ir_node *node)
143 {
144         set_irn_n(irg->anchor, anchor_end, node);
145 }
146
147 static inline ir_node *get_irg_initial_exec_(const ir_graph *irg)
148 {
149         return get_irn_n(irg->anchor, anchor_initial_exec);
150 }
151
152 static inline void set_irg_initial_exec_(ir_graph *irg, ir_node *node)
153 {
154         set_irn_n(irg->anchor, anchor_initial_exec, node);
155 }
156
157 static inline ir_node *get_irg_frame_(const ir_graph *irg)
158 {
159         return get_irn_n(irg->anchor, anchor_frame);
160 }
161
162 static inline void set_irg_frame_(ir_graph *irg, ir_node *node)
163 {
164         set_irn_n(irg->anchor, anchor_frame, node);
165 }
166
167 static inline ir_node *get_irg_initial_mem_(const ir_graph *irg)
168 {
169         return get_irn_n(irg->anchor, anchor_initial_mem);
170 }
171
172 static inline void set_irg_initial_mem_(ir_graph *irg, ir_node *node)
173 {
174         set_irn_n(irg->anchor, anchor_initial_mem, node);
175 }
176
177 static inline ir_node *get_irg_args_(const ir_graph *irg)
178 {
179         return get_irn_n(irg->anchor, anchor_args);
180 }
181
182 static inline void set_irg_args_(ir_graph *irg, ir_node *node)
183 {
184         set_irn_n(irg->anchor, anchor_args, node);
185 }
186
187 static inline ir_node *get_irg_no_mem_(const ir_graph *irg)
188 {
189         return get_irn_n(irg->anchor, anchor_no_mem);
190 }
191
192 static inline void set_irg_no_mem_(ir_graph *irg, ir_node *node)
193 {
194         set_irn_n(irg->anchor, anchor_no_mem, node);
195 }
196
197 static inline ir_entity *get_irg_entity_(const ir_graph *irg)
198 {
199         return irg->ent;
200 }
201
202 static inline void set_irg_entity_(ir_graph *irg, ir_entity *ent)
203 {
204         irg->ent = ent;
205 }
206
207 static inline ir_type *get_irg_frame_type_(ir_graph *irg)
208 {
209         assert(irg->frame_type);
210         return irg->frame_type;
211 }
212
213 static inline void set_irg_frame_type_(ir_graph *irg, ir_type *ftp)
214 {
215         assert(is_frame_type(ftp));
216         irg->frame_type = ftp;
217 }
218
219 static inline struct obstack *get_irg_obstack_(const ir_graph *irg)
220 {
221         return irg->obst;
222 }
223
224
225 static inline irg_phase_state get_irg_phase_state_(const ir_graph *irg)
226 {
227         return irg->phase_state;
228 }
229
230 static inline void set_irg_phase_state_(ir_graph *irg, irg_phase_state state)
231 {
232         irg->phase_state = state;
233 }
234
235 static inline op_pin_state get_irg_pinned_(const ir_graph *irg)
236 {
237         return irg->irg_pinned_state;
238 }
239
240 static inline void set_irg_pinned_(ir_graph *irg, op_pin_state p)
241 {
242         irg->irg_pinned_state = p;
243 }
244
245 static inline irg_callee_info_state get_irg_callee_info_state_(const ir_graph *irg)
246 {
247         return irg->callee_info_state;
248 }
249
250 static inline void set_irg_callee_info_state_(ir_graph *irg, irg_callee_info_state s)
251 {
252         irg_callee_info_state irp_state = get_irp_callee_info_state();
253
254         irg->callee_info_state = s;
255
256         /* I could compare ... but who knows? */
257         if ((irp_state == irg_callee_info_consistent)  ||
258             ((irp_state == irg_callee_info_inconsistent) && (s == irg_callee_info_none)))
259                 set_irp_callee_info_state(s);
260 }
261
262 static inline irg_inline_property get_irg_inline_property_(const ir_graph *irg)
263 {
264         return irg->inline_property;
265 }
266
267 static inline void set_irg_inline_property_(ir_graph *irg, irg_inline_property s)
268 {
269         irg->inline_property = s;
270 }
271
272 static inline mtp_additional_properties get_irg_additional_properties_(const ir_graph *irg)
273 {
274         if (irg->additional_properties & mtp_property_inherited)
275                 return get_method_additional_properties(get_entity_type(irg->ent));
276         return irg->additional_properties;
277 }
278
279 static inline void set_irg_additional_properties_(ir_graph *irg, mtp_additional_properties mask)
280 {
281         irg->additional_properties = mask & ~mtp_property_inherited;
282 }
283
284 static inline void add_irg_additional_properties_(ir_graph *irg, mtp_additional_properties flag)
285 {
286         mtp_additional_properties prop = irg->additional_properties;
287
288         if (prop & mtp_property_inherited)
289                 prop = get_method_additional_properties(get_entity_type(irg->ent));
290         irg->additional_properties = prop | flag;
291 }
292
293 static inline void set_irg_link_(ir_graph *irg, void *thing)
294 {
295         irg->link = thing;
296 }
297
298 static inline void *get_irg_link_(const ir_graph *irg)
299 {
300         return irg->link;
301 }
302
303 static inline ir_visited_t get_irg_visited_(const ir_graph *irg)
304 {
305         return irg->visited;
306 }
307
308 static inline ir_visited_t get_irg_block_visited_(const ir_graph *irg)
309 {
310         return irg->block_visited;
311 }
312
313 static inline void set_irg_block_visited_(ir_graph *irg, ir_visited_t visited)
314 {
315         irg->block_visited = visited;
316 }
317
318 static inline void inc_irg_block_visited_(ir_graph *irg)
319 {
320         ++irg->block_visited;
321 }
322
323 static inline void dec_irg_block_visited_(ir_graph *irg)
324 {
325         --irg->block_visited;
326 }
327
328 static inline unsigned get_irg_estimated_node_cnt_(const ir_graph *irg)
329 {
330         return irg->estimated_node_count;
331 }
332
333 /* Return the floating point model of this graph. */
334 static inline unsigned get_irg_fp_model_(const ir_graph *irg)
335 {
336         return irg->fp_model;
337 }
338
339 static inline void set_irg_state_(ir_graph *irg, ir_graph_state_t state)
340 {
341         irg->state = (ir_graph_state_t) (irg->state | state);
342 }
343
344 static inline void clear_irg_state_(ir_graph *irg, ir_graph_state_t state)
345 {
346         irg->state = (ir_graph_state_t) (irg->state & ~state);
347 }
348
349 static inline int is_irg_state_(const ir_graph *irg, ir_graph_state_t state)
350 {
351         return (irg->state & state) == state;
352 }
353
354 /**
355  * Allocates a new idx in the irg for the node and adds the irn to the idx -> irn map.
356  * @param irg The graph.
357  * @param irn The node.
358  * @return    The index allocated for the node.
359  */
360 static inline unsigned irg_register_node_idx(ir_graph *irg, ir_node *irn)
361 {
362         unsigned idx = irg->last_node_idx++;
363         if (idx >= (unsigned)ARR_LEN(irg->idx_irn_map))
364                 ARR_RESIZE(ir_node *, irg->idx_irn_map, idx + 1);
365
366         irg->idx_irn_map[idx] = irn;
367         return idx;
368 }
369
370 /**
371  * Kill a node from the irg. BEWARE: this kills
372  * all later created nodes.
373  */
374 static inline void irg_kill_node(ir_graph *irg, ir_node *n)
375 {
376         unsigned idx = get_irn_idx(n);
377         assert(idx + 1 == irg->last_node_idx);
378
379         if (idx + 1 == irg->last_node_idx)
380                 --irg->last_node_idx;
381         irg->idx_irn_map[idx] = NULL;
382         obstack_free(irg->obst, n);
383 }
384
385 /**
386  * Get the node for an index.
387  * @param irg The graph.
388  * @param idx The index you want the node for.
389  * @return    The node with that index or NULL, if there is no node with that index.
390  * @note      The node you got might be dead.
391  */
392 static inline ir_node *get_idx_irn_(const ir_graph *irg, unsigned idx)
393 {
394         assert(idx < (unsigned) ARR_LEN(irg->idx_irn_map));
395         return irg->idx_irn_map[idx];
396 }
397
398 /**
399  * Return the number of anchors in this graph.
400  */
401 static inline int get_irg_n_anchors(const ir_graph *irg)
402 {
403         return get_irn_arity(irg->anchor);
404 }
405
406 /**
407  * Return anchor for given index
408  */
409 static inline ir_node *get_irg_anchor(const ir_graph *irg, int idx)
410 {
411         return get_irn_n(irg->anchor, idx);
412 }
413
414 /**
415  * Set anchor for given index
416  */
417 static inline void set_irg_anchor(ir_graph *irg, int idx, ir_node *irn)
418 {
419         set_irn_n(irg->anchor, idx, irn);
420 }
421
422
423 #define is_ir_graph(thing)                    is_ir_graph_(thing)
424 #define get_irg_start_block(irg)              get_irg_start_block_(irg)
425 #define set_irg_start_block(irg, node)        set_irg_start_block_(irg, node)
426 #define get_irg_start(irg)                    get_irg_start_(irg)
427 #define set_irg_start(irg, node)              set_irg_start_(irg, node)
428 #define get_irg_end_block(irg)                get_irg_end_block_(irg)
429 #define set_irg_end_block(irg, node)          set_irg_end_block_(irg, node)
430 #define get_irg_end(irg)                      get_irg_end_(irg)
431 #define set_irg_end(irg, node)                set_irg_end_(irg, node)
432 #define get_irg_initial_exec(irg)             get_irg_initial_exec_(irg)
433 #define set_irg_initial_exec(irg, node)       set_irg_initial_exec_(irg, node)
434 #define get_irg_frame(irg)                    get_irg_frame_(irg)
435 #define set_irg_frame(irg, node)              set_irg_frame_(irg, node)
436 #define get_irg_initial_mem(irg)              get_irg_initial_mem_(irg)
437 #define set_irg_initial_mem(irg, node)        set_irg_initial_mem_(irg, node)
438 #define get_irg_args(irg)                     get_irg_args_(irg)
439 #define set_irg_args(irg, node)               set_irg_args_(irg, node)
440 #define get_irg_no_mem(irg)                   get_irg_no_mem_(irg)
441 #define set_irn_no_mem(irg, node)             set_irn_no_mem_(irg, node)
442 #define get_irg_entity(irg)                   get_irg_entity_(irg)
443 #define set_irg_entity(irg, ent)              set_irg_entity_(irg, ent)
444 #define get_irg_frame_type(irg)               get_irg_frame_type_(irg)
445 #define set_irg_frame_type(irg, ftp)          set_irg_frame_type_(irg, ftp)
446 #define get_irg_obstack(irg)                  get_irg_obstack_(irg)
447 #define get_irg_phase_state(irg)              get_irg_phase_state_(irg)
448 #define set_irg_phase_state(irg, state)       set_irg_phase_state_(irg, state)
449 #define get_irg_pinned(irg)                   get_irg_pinned_(irg)
450 #define set_irg_pinned(irg, p)                set_irg_pinned_(irg, p)
451 #define get_irg_callee_info_state(irg)        get_irg_callee_info_state_(irg)
452 #define set_irg_callee_info_state(irg, s)     set_irg_callee_info_state_(irg, s)
453 #define get_irg_inline_property(irg)          get_irg_inline_property_(irg)
454 #define set_irg_inline_property(irg, s)       set_irg_inline_property_(irg, s)
455 #define get_irg_additional_properties(irg)    get_irg_additional_properties_(irg)
456 #define set_irg_additional_properties(irg, m) set_irg_additional_properties_(irg, m)
457 #define set_irg_additional_property(irg, f)   set_irg_additional_property_(irg, f)
458 #define set_irg_link(irg, thing)              set_irg_link_(irg, thing)
459 #define get_irg_link(irg)                     get_irg_link_(irg)
460 #define get_irg_visited(irg)                  get_irg_visited_(irg)
461 #define get_irg_block_visited(irg)            get_irg_block_visited_(irg)
462 #define set_irg_block_visited(irg, v)         set_irg_block_visited_(irg, v)
463 #define inc_irg_block_visited(irg)            inc_irg_block_visited_(irg)
464 #define dec_irg_block_visited(irg)            dec_irg_block_visited_(irg)
465 #define get_irg_estimated_node_cnt(irg)       get_irg_estimated_node_cnt_(irg)
466 #define get_irg_fp_model(irg)                 get_irg_fp_model_(irg)
467 #define get_idx_irn(irg, idx)                 get_idx_irn_(irg, idx)
468 #define set_irg_state(irg, state)             set_irg_state_(irg, state)
469 #define clear_irg_state(irg, state)           clear_irg_state_(irg, state)
470 #define is_irg_state(irg, state)              is_irg_state_(irg, state)
471
472 #endif