0686a1cd33680b3ac8f5a46863bb4250a28b344b
[libfirm] / ir / ir / irgraph.c
1 /*
2  * Copyright (C) 1995-2007 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.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version  $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #ifdef HAVE_STRING_H
31 # include <string.h>
32 #endif
33 #ifdef HAVE_STDDEF_H
34 # include <stddef.h>
35 #endif
36
37 #include "xmalloc.h"
38 #include "ircons_t.h"
39 #include "irgraph_t.h"
40 #include "irprog_t.h"
41 #include "irnode_t.h"
42 #include "iropt_t.h"
43 #include "irflag_t.h"
44 #include "array.h"
45 #include "irgmod.h"
46 #include "irouts.h"
47 #include "irhooks.h"
48 #include "irtools.h"
49 #include "irgwalk.h"
50 #include "iredges_t.h"
51 #include "type_t.h"
52 #include "irmemory.h"
53
54 #define INITIAL_IDX_IRN_MAP_SIZE 1024
55
56 /**
57  * Indicates, whether additional data can be registered to graphs.
58  * If set to 1, this is not possible anymore.
59  */
60 static int forbid_new_data = 0;
61
62 /**
63  * The amount of additional space for custom data to be allocated upon
64  * creating a new graph.
65  */
66 static size_t additional_graph_data_size = 0;
67
68 ir_graph *current_ir_graph;
69 ir_graph *get_current_ir_graph(void) {
70         return current_ir_graph;
71 }
72
73 void set_current_ir_graph(ir_graph *graph) {
74         current_ir_graph = graph;
75 }
76
77
78 int firm_interprocedural_view = 0;
79
80 int (get_interprocedural_view)(void) {
81         return _get_interprocedural_view();
82 }
83
84 void (set_interprocedural_view)(int state) {
85         firm_interprocedural_view = state;
86
87         /* set function vectors for faster access */
88         if (state) {
89                 _get_irn_arity = _get_irn_inter_arity;
90                 _get_irn_n     = _get_irn_inter_n;
91         }
92         else {
93                 _get_irn_arity = _get_irn_intra_arity;
94                 _get_irn_n     = _get_irn_intra_n;
95         }
96 }
97
98 /** contains the suffix for frame type names */
99 static ident *frame_type_suffix = NULL;
100
101 /* initialize the IR graph module */
102 void firm_init_irgraph(void) {
103         frame_type_suffix = new_id_from_str(FRAME_TP_SUFFIX);
104         forbid_new_data   = 1;
105 }
106
107 /**
108  * Allocate a new IR graph.
109  * This function respects the registered graph data. The only reason for
110  * this function is, that there are two locations, where graphs are
111  * allocated (new_r_ir_graph, new_const_code_irg).
112  * @return Memory for a new graph.
113  */
114 static ir_graph *alloc_graph(void) {
115         size_t size = sizeof(ir_graph) + additional_graph_data_size;
116         char *ptr = xmalloc(size);
117         memset(ptr, 0, size);
118
119         return (ir_graph *) (ptr + additional_graph_data_size);
120 }
121
122 /**
123  * Frees an allocated IR graph
124  */
125 static void free_graph(ir_graph *irg) {
126         char *ptr = (char *)irg;
127         free(ptr - additional_graph_data_size);
128 }
129
130 #if USE_EXPLICIT_PHI_IN_STACK
131 /* really defined in ircons.c */
132 typedef struct Phi_in_stack Phi_in_stack;
133 Phi_in_stack *new_Phi_in_stack();
134 void free_Phi_in_stack(Phi_in_stack *s);
135 #endif
136
137 /* Allocates a list of nodes:
138     - The start block containing a start node and Proj nodes for it's four
139       results (X, M, P, Tuple).
140     - The end block containing an end node. This block is not matured after
141       new_ir_graph as predecessors need to be added to it.
142     - The current block, which is empty and also not matured.
143    Further it allocates several datastructures needed for graph construction
144    and optimization.
145 */
146 ir_graph *new_r_ir_graph(ir_entity *ent, int n_loc) {
147         ir_graph *res;
148         ir_node  *first_block;
149         ir_node  *end, *start, *start_block, *initial_mem, *projX;
150
151         res = alloc_graph();
152         res->kind = k_ir_graph;
153
154         //edges_init_graph_kind(res, EDGE_KIND_NORMAL);
155         //edges_init_graph_kind(res, EDGE_KIND_BLOCK);
156
157         /* initialize the idx->node map. */
158         res->idx_irn_map = NEW_ARR_F(ir_node *, INITIAL_IDX_IRN_MAP_SIZE);
159         memset(res->idx_irn_map, 0, INITIAL_IDX_IRN_MAP_SIZE * sizeof(res->idx_irn_map[0]));
160
161         /* inform statistics here, as blocks will be already build on this graph */
162         hook_new_graph(res, ent);
163
164         current_ir_graph = res;
165
166         /*-- initialized for each graph. --*/
167         if (get_opt_precise_exc_context()) {
168                 res->n_loc = n_loc + 1 + 1; /* number of local variables that are never
169                                dereferenced in this graph plus one for
170                                the store plus one for links to fragile
171                                operations.  n_loc is not the number of
172                                parameters to the procedure!  */
173         } else {
174                 res->n_loc = n_loc + 1;  /* number of local variables that are never
175                             dereferenced in this graph plus one for
176                             the store. This is not the number of parameters
177                             to the procedure!  */
178         }
179
180         /* descriptions will be allocated on demand */
181         res->loc_descriptions = NULL;
182
183         res->visited       = 0; /* visited flag, for the ir walker */
184         res->block_visited = 0; /* visited flag, for the 'block'-walker */
185
186 #if USE_EXPLICIT_PHI_IN_STACK
187         res->Phi_in_stack = new_Phi_in_stack();  /* A stack needed for automatic Phi
188                                                     generation */
189 #endif
190         res->kind = k_ir_graph;
191         res->obst = xmalloc (sizeof(*res->obst));
192         obstack_init(res->obst);
193         res->extbb_obst = NULL;
194
195         res->last_node_idx = 0;
196
197         res->value_table = new_identities (); /* value table for global value
198                                                  numbering for optimizing use in iropt.c */
199         res->outs = NULL;
200
201         res->inline_property       = irg_inline_any;
202         res->additional_properties = mtp_property_inherited;  /* inherited from type */
203
204         res->phase_state         = phase_building;
205         res->irg_pinned_state    = op_pin_state_pinned;
206         res->outs_state          = outs_none;
207         res->dom_state           = dom_none;
208         res->pdom_state          = dom_none;
209         res->typeinfo_state      = ir_typeinfo_none;
210         set_irp_typeinfo_inconsistent();           /* there is a new graph with typeinfo_none. */
211         res->callee_info_state   = irg_callee_info_none;
212         res->loopinfo_state      = loopinfo_none;
213         res->class_cast_state    = ir_class_casts_transitive;
214         res->extblk_state        = ir_extblk_info_none;
215         res->execfreq_state      = exec_freq_none;
216         res->fp_model            = fp_model_precise;
217         res->adr_taken_state     = ir_address_taken_not_computed;
218         res->mem_disambig_opt    = aa_opt_inherited;
219
220         /*-- Type information for the procedure of the graph --*/
221         res->ent = ent;
222         set_entity_irg(ent, res);
223
224         /*--  a class type so that it can contain "inner" methods as in Pascal. --*/
225         res->frame_type = new_type_frame(mangle(get_entity_ident(ent), frame_type_suffix));
226
227         /* the Anchor node must be created first */
228         res->anchor = new_Anchor(res);
229
230         /*-- Nodes needed in every graph --*/
231         set_irg_end_block (res, new_immBlock());
232         end               = new_End();
233         set_irg_end       (res, end);
234         set_irg_end_reg   (res, end);
235         set_irg_end_except(res, end);
236
237         start_block = new_immBlock();
238         set_irg_start_block(res, start_block);
239         set_irg_bad        (res, new_ir_node(NULL, res, start_block, op_Bad, mode_T, 0, NULL));
240         set_irg_no_mem     (res, new_ir_node(NULL, res, start_block, op_NoMem, mode_M, 0, NULL));
241         start = new_Start();
242         set_irg_start      (res, start);
243
244         /* Proj results of start node */
245         projX                   = new_Proj(start, mode_X, pn_Start_X_initial_exec);
246         set_irg_frame           (res, new_Proj(start, mode_P_data, pn_Start_P_frame_base));
247         set_irg_globals         (res, new_Proj(start, mode_P_data, pn_Start_P_globals));
248         set_irg_tls             (res, new_Proj(start, mode_P_data, pn_Start_P_tls));
249         set_irg_args            (res, new_Proj(start, mode_T,      pn_Start_T_args));
250         set_irg_value_param_base(res, new_Proj(start, mode_P_data, pn_Start_P_value_arg_base));
251         initial_mem             = new_Proj(start, mode_M, pn_Start_M);
252         set_irg_initial_mem(res, initial_mem);
253
254         add_immBlock_pred(start_block, projX);
255         set_store(initial_mem);
256
257 #ifdef DEBUG_libfirm
258         res->graph_nr    = get_irp_new_node_nr();
259 #endif
260         res->proj_args   = NULL;
261
262         /*
263          * The code generation needs it. leave it in now.
264          * Use of this edge is matter of discussion, unresolved. Also possible:
265          * add_immBlock_pred(res->start_block, res->start_block), but invalid typed.
266          */
267         mature_immBlock(res->current_block);
268
269         /*-- Make a block to start with --*/
270         first_block = new_immBlock();
271         add_immBlock_pred(first_block, projX);
272
273         res->method_execution_frequency = -1.0;
274         res->estimated_node_count       = 0;
275
276         return res;
277 }
278
279
280 ir_graph *
281 new_ir_graph(ir_entity *ent, int n_loc) {
282         ir_graph *res = new_r_ir_graph(ent, n_loc);
283         add_irp_irg(res);          /* remember this graph global. */
284         return res;
285 }
286
287 /* Make a rudimentary IR graph for the constant code.
288    Must look like a correct irg, spare everything else. */
289 ir_graph *new_const_code_irg(void) {
290         ir_graph *res;
291         ir_node  *end, *start_block, *start, *projX;
292
293         res = alloc_graph();
294
295         /* initialize the idx->node map. */
296         res->idx_irn_map = NEW_ARR_F(ir_node *, INITIAL_IDX_IRN_MAP_SIZE);
297         memset(res->idx_irn_map, 0, INITIAL_IDX_IRN_MAP_SIZE * sizeof(res->idx_irn_map[0]));
298
299         /* inform statistics here, as blocks will be already build on this graph */
300         hook_new_graph(res, NULL);
301
302         current_ir_graph = res;
303         res->n_loc = 1;         /* Only the memory. */
304         res->visited = 0;       /* visited flag, for the ir walker */
305         res->block_visited = 0; /* visited flag, for the 'block'-walker */
306 #if USE_EXPLICIT_PHI_IN_STACK
307         res->Phi_in_stack = NULL;
308 #endif
309         res->kind = k_ir_graph;
310         res->obst      = xmalloc (sizeof(*res->obst));
311         obstack_init (res->obst);
312         res->extbb_obst = NULL;
313
314         res->last_node_idx = 0;
315
316         res->phase_state      = phase_building;
317         res->irg_pinned_state = op_pin_state_pinned;
318         res->extblk_state     = ir_extblk_info_none;
319         res->fp_model         = fp_model_precise;
320
321         res->value_table = new_identities (); /* value table for global value
322                                            numbering for optimizing use in
323                                            iropt.c */
324         res->ent = NULL;
325         res->frame_type  = NULL;
326
327         /* the Anchor node must be created first */
328         res->anchor = new_Anchor(res);
329
330         /* -- The end block -- */
331         set_irg_end_block (res, new_immBlock());
332         end = new_End();
333         set_irg_end       (res, end);
334         set_irg_end_reg   (res, end);
335         set_irg_end_except(res, end);
336         mature_immBlock(get_cur_block());  /* mature the end block */
337
338         /* -- The start block -- */
339         start_block        = new_immBlock();
340         set_irg_start_block(res, start_block);
341         set_irg_bad        (res, new_ir_node (NULL, res, start_block, op_Bad, mode_T, 0, NULL));
342         set_irg_no_mem     (res, new_ir_node (NULL, res, start_block, op_NoMem, mode_M, 0, NULL));
343         start              = new_Start();
344         set_irg_start      (res, start);
345
346         /* Proj results of start node */
347         set_irg_initial_mem(res, new_Proj(start, mode_M, pn_Start_M));
348         projX = new_Proj(start, mode_X, pn_Start_X_initial_exec);
349         add_immBlock_pred(start_block, projX);
350         mature_immBlock  (start_block);  /* mature the start block */
351
352         add_immBlock_pred(new_immBlock(), projX);
353         mature_immBlock  (get_cur_block());   /* mature the 'body' block for expressions */
354
355         /* Set the visited flag high enough that the blocks will never be visited. */
356         set_irn_visited(get_cur_block(), -1);
357         set_Block_block_visited(get_cur_block(), -1);
358         set_Block_block_visited(start_block, -1);
359         set_irn_visited(start_block, -1);
360         set_irn_visited(get_irg_bad(res), -1);
361         set_irn_visited(get_irg_no_mem(res), -1);
362
363         res->phase_state = phase_high;
364
365         return res;
366 }
367
368 /* Defined in iropt.c */
369 void  del_identities (pset *value_table);
370
371 /* Frees the passed irgraph.
372    Deallocates all nodes in this graph and the ir_graph structure.
373    Sets the field irgraph in the corresponding entity to NULL.
374    Does not remove the irgraph from the list in irprog (requires
375    inefficient search, call remove_irp_irg by hand).
376    Does not free types, entities or modes that are used only by this
377    graph, nor the entity standing for this graph. */
378 void free_ir_graph (ir_graph *irg) {
379         assert(is_ir_graph(irg));
380
381         hook_free_graph(irg);
382         if (irg->outs_state != outs_none) free_irg_outs(irg);
383         if (irg->frame_type)  free_type(irg->frame_type);
384         if (irg->value_table) del_identities(irg->value_table);
385         if (irg->ent) {
386                 ir_peculiarity pec = get_entity_peculiarity (irg->ent);
387                 set_entity_peculiarity (irg->ent, peculiarity_description);
388                 set_entity_irg(irg->ent, NULL);  /* not set in const code irg */
389                 set_entity_peculiarity (irg->ent, pec);
390         }
391
392         free_End(get_irg_end(irg));
393         obstack_free(irg->obst,NULL);
394         free(irg->obst);
395 #if USE_EXPLICIT_PHI_IN_STACK
396         free_Phi_in_stack(irg->Phi_in_stack);
397 #endif
398         if (irg->loc_descriptions)
399                 free(irg->loc_descriptions);
400         irg->kind = k_BAD;
401         free_graph(irg);
402 }
403
404 /* access routines for all ir_graph attributes:
405    templates:
406    {attr type} get_irg_{attribute name} (ir_graph *irg);
407    void set_irg_{attr name} (ir_graph *irg, {attr type} {attr}); */
408
409 int
410 (is_ir_graph)(const void *thing) {
411         return _is_ir_graph(thing);
412 }
413
414 /* Outputs a unique number for this node */
415 long get_irg_graph_nr(ir_graph *irg) {
416         assert(irg);
417 #ifdef DEBUG_libfirm
418         return irg->graph_nr;
419 #else
420         return (long)PTR_TO_INT(irg);
421 #endif
422 }
423
424 ir_node *
425 (get_irg_start_block)(const ir_graph *irg) {
426         return _get_irg_start_block(irg);
427 }
428
429 void
430 (set_irg_start_block)(ir_graph *irg, ir_node *node) {
431         _set_irg_start_block(irg, node);
432 }
433
434 ir_node *
435 (get_irg_start)(const ir_graph *irg) {
436         return _get_irg_start(irg);
437 }
438
439 void
440 (set_irg_start)(ir_graph *irg, ir_node *node) {
441         _set_irg_start(irg, node);
442 }
443
444 ir_node *
445 (get_irg_end_block)(const ir_graph *irg) {
446         return _get_irg_end_block(irg);
447 }
448
449 void
450 (set_irg_end_block)(ir_graph *irg, ir_node *node) {
451   _set_irg_end_block(irg, node);
452 }
453
454 ir_node *
455 (get_irg_end)(const ir_graph *irg) {
456         return _get_irg_end(irg);
457 }
458
459 void
460 (set_irg_end)(ir_graph *irg, ir_node *node) {
461         _set_irg_end(irg, node);
462 }
463
464 ir_node *
465 (get_irg_end_reg)(const ir_graph *irg) {
466         return _get_irg_end_reg(irg);
467 }
468
469 void
470 (set_irg_end_reg)(ir_graph *irg, ir_node *node) {
471         _set_irg_end_reg(irg, node);
472 }
473
474 ir_node *
475 (get_irg_end_except)(const ir_graph *irg) {
476         return _get_irg_end_except(irg);
477 }
478
479 void
480 (set_irg_end_except)(ir_graph *irg, ir_node *node) {
481         assert(get_irn_op(node) == op_EndExcept || get_irn_op(node) == op_End);
482         _set_irg_end_except(irg, node);
483 }
484
485 ir_node *
486 (get_irg_frame)(const ir_graph *irg) {
487         return _get_irg_frame(irg);
488 }
489
490 void
491 (set_irg_frame)(ir_graph *irg, ir_node *node) {
492         _set_irg_frame(irg, node);
493 }
494
495 ir_node *
496 (get_irg_globals)(const ir_graph *irg) {
497   return _get_irg_globals(irg);
498 }
499
500 void
501 (set_irg_globals)(ir_graph *irg, ir_node *node) {
502         _set_irg_globals(irg, node);
503 }
504
505 ir_node *
506 (get_irg_tls)(const ir_graph *irg) {
507         return _get_irg_tls(irg);
508 }
509
510 void
511 (set_irg_tls)(ir_graph *irg, ir_node *node) {
512         _set_irg_tls(irg, node);
513 }
514
515 ir_node *
516 (get_irg_initial_mem)(const ir_graph *irg) {
517         return _get_irg_initial_mem(irg);
518 }
519
520 void
521 (set_irg_initial_mem)(ir_graph *irg, ir_node *node) {
522         _set_irg_initial_mem(irg, node);
523 }
524
525 ir_node *
526 (get_irg_args)(const ir_graph *irg) {
527         return _get_irg_args(irg);
528 }
529
530 void
531 (set_irg_args)(ir_graph *irg, ir_node *node) {
532         _set_irg_args(irg, node);
533 }
534
535 ir_node *
536 (get_irg_value_param_base)(const ir_graph *irg) {
537         return _get_irg_value_param_base(irg);
538 }
539
540 void
541 (set_irg_value_param_base)(ir_graph *irg, ir_node *node) {
542         _set_irg_value_param_base(irg, node);
543 }
544
545 ir_node **
546 (get_irg_proj_args) (const ir_graph *irg) {
547         return _get_irg_proj_args (irg);
548 }
549
550 void
551 (set_irg_proj_args) (ir_graph *irg, ir_node **nodes) {
552         _set_irg_proj_args (irg, nodes);
553 }
554
555 ir_node *
556 (get_irg_bad)(const ir_graph *irg) {
557         return _get_irg_bad(irg);
558 }
559
560 void
561 (set_irg_bad)(ir_graph *irg, ir_node *node) {
562         _set_irg_bad(irg, node);
563 }
564
565 ir_node *
566 (get_irg_no_mem)(const ir_graph *irg) {
567         return _get_irg_no_mem(irg);
568 }
569
570 void
571 (set_irg_no_mem)(ir_graph *irg, ir_node *node) {
572         _set_irg_no_mem(irg, node);
573 }
574
575 ir_node *
576 (get_irg_current_block)(const ir_graph *irg) {
577         return _get_irg_current_block(irg);
578 }
579
580 void
581 (set_irg_current_block)(ir_graph *irg, ir_node *node) {
582         _set_irg_current_block(irg, node);
583 }
584
585 ir_entity *
586 (get_irg_entity)(const ir_graph *irg) {
587         return _get_irg_entity(irg);
588 }
589
590 void
591 (set_irg_entity)(ir_graph *irg, ir_entity *ent) {
592         _set_irg_entity(irg, ent);
593 }
594
595 ir_type *
596 (get_irg_frame_type)(ir_graph *irg) {
597         return _get_irg_frame_type(irg);
598 }
599
600 void
601 (set_irg_frame_type)(ir_graph *irg, ir_type *ftp) {
602         _set_irg_frame_type(irg, ftp);
603 }
604
605 int
606 get_irg_n_locs(ir_graph *irg) {
607         if (get_opt_precise_exc_context())
608                 return irg->n_loc - 1 - 1;
609         else
610                 return irg->n_loc - 1;
611 }
612
613 void
614 set_irg_n_loc(ir_graph *irg, int n_loc) {
615         if (get_opt_precise_exc_context())
616                 irg->n_loc = n_loc + 1 + 1;
617         else
618                 irg->n_loc = n_loc + 1;
619 }
620
621
622
623 /* Returns the obstack associated with the graph. */
624 struct obstack *
625 (get_irg_obstack)(const ir_graph *irg) {
626         return _get_irg_obstack(irg);
627 }
628
629 /*
630  * Returns true if the node n is allocated on the storage of graph irg.
631  *
632  * Implementation is GLIBC specific as is uses the internal _obstack_chunk implementation.
633  */
634 int node_is_in_irgs_storage(ir_graph *irg, ir_node *n) {
635         struct _obstack_chunk *p;
636
637         /*
638          * checks weather the ir_node pointer is on the obstack.
639          * A more sophisticated check would test the "whole" ir_node
640          */
641         for (p = irg->obst->chunk; p; p = p->prev) {
642                 if (((char *)p->contents <= (char *)n) && ((char *)n < (char *)p->limit))
643                         return 1;
644         }
645
646         return 0;
647 }
648
649 irg_phase_state
650 (get_irg_phase_state)(const ir_graph *irg) {
651         return _get_irg_phase_state(irg);
652 }
653
654 void
655 (set_irg_phase_state)(ir_graph *irg, irg_phase_state state) {
656         _set_irg_phase_state(irg, state);
657 }
658
659 op_pin_state
660 (get_irg_pinned)(const ir_graph *irg) {
661         return _get_irg_pinned(irg);
662 }
663
664 irg_outs_state
665 (get_irg_outs_state)(const ir_graph *irg) {
666         return _get_irg_outs_state(irg);
667 }
668
669 void
670 (set_irg_outs_inconsistent)(ir_graph *irg) {
671         _set_irg_outs_inconsistent(irg);
672 }
673
674 irg_extblk_state
675 (get_irg_extblk_state)(const ir_graph *irg) {
676         return _get_irg_extblk_state(irg);
677 }
678
679 void
680 (set_irg_extblk_inconsistent)(ir_graph *irg) {
681         _set_irg_extblk_inconsistent(irg);
682 }
683
684 irg_dom_state
685 (get_irg_dom_state)(const ir_graph *irg) {
686         return _get_irg_dom_state(irg);
687 }
688
689 irg_dom_state
690 (get_irg_postdom_state)(const ir_graph *irg) {
691         return _get_irg_postdom_state(irg);
692 }
693
694 void
695 (set_irg_doms_inconsistent)(ir_graph *irg) {
696         _set_irg_doms_inconsistent(irg);
697 }
698
699 irg_loopinfo_state
700 (get_irg_loopinfo_state)(const ir_graph *irg) {
701         return _get_irg_loopinfo_state(irg);
702 }
703
704 void
705 (set_irg_loopinfo_state)(ir_graph *irg, irg_loopinfo_state s) {
706         _set_irg_loopinfo_state(irg, s);
707 }
708
709 void
710 (set_irg_loopinfo_inconsistent)(ir_graph *irg) {
711         _set_irg_loopinfo_inconsistent(irg);
712 }
713
714 void set_irp_loopinfo_inconsistent(void) {
715         int i;
716         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
717                 set_irg_loopinfo_inconsistent(get_irp_irg(i));
718         }
719 }
720
721
722
723 void
724 (set_irg_pinned)(ir_graph *irg, op_pin_state p) {
725         _set_irg_pinned(irg, p);
726 }
727
728 irg_callee_info_state
729 (get_irg_callee_info_state)(const ir_graph *irg) {
730         return _get_irg_callee_info_state(irg);
731 }
732
733 void
734 (set_irg_callee_info_state)(ir_graph *irg, irg_callee_info_state s) {
735         _set_irg_callee_info_state(irg, s);
736 }
737
738 irg_inline_property
739 (get_irg_inline_property)(const ir_graph *irg) {
740         return _get_irg_inline_property(irg);
741 }
742
743 void
744 (set_irg_inline_property)(ir_graph *irg, irg_inline_property s) {
745         _set_irg_inline_property(irg, s);
746 }
747
748 unsigned
749 (get_irg_additional_properties)(const ir_graph *irg) {
750         return _get_irg_additional_properties(irg);
751 }
752
753 void
754 (set_irg_additional_properties)(ir_graph *irg, unsigned property_mask) {
755         _set_irg_additional_properties(irg, property_mask);
756 }
757
758 void
759 (set_irg_additional_property)(ir_graph *irg, mtp_additional_property flag) {
760         _set_irg_additional_property(irg, flag);
761 }
762
763 void
764 (set_irg_link)(ir_graph *irg, void *thing) {
765         _set_irg_link(irg, thing);
766 }
767
768 void *
769 (get_irg_link)(const ir_graph *irg) {
770         return _get_irg_link(irg);
771 }
772
773 /** maximum visited flag content of all ir_graph visited fields. */
774 static unsigned long max_irg_visited = 0;
775
776 unsigned long
777 (get_irg_visited)(const ir_graph *irg) {
778         return _get_irg_visited(irg);
779 }
780
781 void
782 set_irg_visited(ir_graph *irg, unsigned long visited) {
783         irg->visited = visited;
784         if (irg->visited > max_irg_visited) {
785                 max_irg_visited = irg->visited;
786         }
787 }
788
789 void
790 inc_irg_visited(ir_graph *irg) {
791         if (++irg->visited > max_irg_visited) {
792                 max_irg_visited = irg->visited;
793         }
794 }
795
796 unsigned long
797 get_max_irg_visited(void) {
798         /*
799         int i;
800         for(i = 0; i < get_irp_n_irgs(); i++)
801         assert(max_irg_visited >= get_irg_visited(get_irp_irg(i)));
802          */
803         return max_irg_visited;
804 }
805
806 void set_max_irg_visited(int val) {
807         max_irg_visited = val;
808 }
809
810 unsigned long
811 inc_max_irg_visited(void) {
812         /*
813         int i;
814         for(i = 0; i < get_irp_n_irgs(); i++)
815         assert(max_irg_visited >= get_irg_visited(get_irp_irg(i)));
816         */
817         return ++max_irg_visited;
818 }
819
820 unsigned long
821 (get_irg_block_visited)(const ir_graph *irg) {
822         return _get_irg_block_visited(irg);
823 }
824
825 void
826 (set_irg_block_visited)(ir_graph *irg, unsigned long visited) {
827         _set_irg_block_visited(irg, visited);
828 }
829
830 void
831 (inc_irg_block_visited)(ir_graph *irg) {
832   _inc_irg_block_visited(irg);
833 }
834
835 /* Return the floating point model of this graph. */
836 unsigned (get_irg_fp_model)(const ir_graph *irg) {
837         return _get_irg_fp_model(irg);
838 }
839
840 /* Sets the floating point model for this graph. */
841 void set_irg_fp_model(ir_graph *irg, unsigned model) {
842         irg->fp_model = model;
843 }
844
845 /**
846  * walker Start->End: places Proj nodes into the same block
847  * as it's predecessors
848  *
849  * @param n    the node
850  * @param env  ignored
851  */
852 static void normalize_proj_walker(ir_node *n, void *env) {
853         (void) env;
854         if (is_Proj(n)) {
855                 ir_node *pred  = get_Proj_pred(n);
856                 ir_node *block = get_nodes_block(pred);
857
858                 set_nodes_block(n, block);
859         }
860 }
861
862 /* move Proj nodes into the same block as its predecessors */
863 void normalize_proj_nodes(ir_graph *irg) {
864         irg_walk_graph(irg, NULL, normalize_proj_walker, NULL);
865         set_irg_outs_inconsistent(irg);
866 }
867
868 /* set a description for local value n */
869 void set_irg_loc_description(ir_graph *irg, int n, void *description) {
870         assert(0 <= n && n < irg->n_loc);
871
872         if (! irg->loc_descriptions)
873                 irg->loc_descriptions = xcalloc(sizeof(*irg->loc_descriptions), irg->n_loc);
874
875         irg->loc_descriptions[n] = description;
876 }
877
878 /* get the description for local value n */
879 void *get_irg_loc_description(ir_graph *irg, int n) {
880         assert(0 <= n && n < irg->n_loc);
881         return irg->loc_descriptions ? irg->loc_descriptions[n] : NULL;
882 }
883
884 #ifndef NDEBUG
885 void set_using_block_visited(ir_graph *irg) {
886         assert(irg->using_block_visited == 0);
887         irg->using_block_visited = 1;
888 }
889
890 void clear_using_block_visited(ir_graph *irg) {
891         assert(irg->using_block_visited == 1);
892         irg->using_block_visited = 0;
893 }
894
895 int using_block_visited(const ir_graph *irg) {
896         return irg->using_block_visited;
897 }
898
899
900 void set_using_visited(ir_graph *irg) {
901         assert(irg->using_visited == 0);
902         irg->using_visited = 1;
903 }
904
905 void clear_using_visited(ir_graph *irg) {
906         assert(irg->using_visited == 1);
907         irg->using_visited = 0;
908 }
909
910 int using_visited(const ir_graph *irg) {
911         return irg->using_visited;
912 }
913
914
915 void set_using_irn_link(ir_graph *irg) {
916         assert(irg->using_irn_link == 0);
917         irg->using_irn_link = 1;
918 }
919
920 void clear_using_irn_link(ir_graph *irg) {
921         assert(irg->using_irn_link == 1);
922         irg->using_irn_link = 0;
923 }
924
925 int using_irn_link(const ir_graph *irg) {
926         return irg->using_irn_link;
927 }
928 #endif
929
930 /* Returns a estimated node count of the irg. */
931 unsigned (get_irg_estimated_node_cnt)(const ir_graph *irg) {
932         return _get_irg_estimated_node_cnt(irg);
933 }
934
935 /* Returns the last irn index for this graph. */
936 unsigned get_irg_last_idx(const ir_graph *irg) {
937         return irg->last_node_idx;
938 }
939
940 /* register additional space in an IR graph */
941 size_t register_additional_graph_data(size_t size) {
942         assert(!forbid_new_data && "Too late to register additional node data");
943
944         if (forbid_new_data)
945                 return 0;
946
947         return additional_graph_data_size += size;
948 }