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