get rid of get_irg_estimated_node_count
[libfirm] / ir / ir / irgraph.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 procedure code.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  */
25 #include "config.h"
26
27 #include <string.h>
28 #include <stddef.h>
29
30 #include "xmalloc.h"
31 #include "ircons_t.h"
32 #include "irgraph_t.h"
33 #include "irprog_t.h"
34 #include "irgraph_t.h"
35 #include "irnode_t.h"
36 #include "iropt_t.h"
37 #include "irflag_t.h"
38 #include "array.h"
39 #include "irgmod.h"
40 #include "irouts.h"
41 #include "irhooks.h"
42 #include "irtools.h"
43 #include "util.h"
44 #include "irgwalk.h"
45 #include "irbackedge_t.h"
46 #include "iredges_t.h"
47 #include "type_t.h"
48 #include "irmemory.h"
49 #include "iroptimize.h"
50 #include "irgopt.h"
51
52 #define INITIAL_IDX_IRN_MAP_SIZE 1024
53 /** Suffix that is added to every frame type. */
54 #define FRAME_TP_SUFFIX "frame_tp"
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 {
71         return current_ir_graph;
72 }
73
74 void set_current_ir_graph(ir_graph *graph)
75 {
76         current_ir_graph = graph;
77 }
78
79 /** contains the suffix for frame type names */
80 static ident *frame_type_suffix = NULL;
81
82 void firm_init_irgraph(void)
83 {
84         frame_type_suffix = new_id_from_str(FRAME_TP_SUFFIX);
85         forbid_new_data   = 1;
86 }
87
88 /**
89  * Allocate a new IR graph.
90  * This function respects the registered graph data. The only reason for
91  * this function is, that there are two locations, where graphs are
92  * allocated (new_r_ir_graph, new_const_code_irg).
93  * @return Memory for a new graph.
94  */
95 static ir_graph *alloc_graph(void)
96 {
97         ir_graph *res;
98         size_t   size = sizeof(ir_graph) + additional_graph_data_size;
99         char     *ptr = XMALLOCNZ(char, size);
100
101         res = (ir_graph *)(ptr + additional_graph_data_size);
102         res->kind = k_ir_graph;
103
104         /* initialize the idx->node map. */
105         res->idx_irn_map = NEW_ARR_F(ir_node *, INITIAL_IDX_IRN_MAP_SIZE);
106         memset(res->idx_irn_map, 0, INITIAL_IDX_IRN_MAP_SIZE * sizeof(res->idx_irn_map[0]));
107
108         return res;
109 }
110
111 /**
112  * Frees an allocated IR graph
113  */
114 static void free_graph(ir_graph *irg)
115 {
116         char           *ptr = (char *)irg;
117         ir_edge_kind_t  i;
118
119         for (i = EDGE_KIND_FIRST; i < EDGE_KIND_LAST; ++i)
120                 edges_deactivate_kind(irg, i);
121         DEL_ARR_F(irg->idx_irn_map);
122         free(ptr - additional_graph_data_size);
123 }
124
125 void irg_set_nloc(ir_graph *res, int n_loc)
126 {
127         assert(irg_is_constrained(res, IR_GRAPH_CONSTRAINT_CONSTRUCTION));
128
129         res->n_loc = n_loc + 1;     /* number of local variables that are never
130                                        dereferenced in this graph plus one for
131                                        the store. This is not the number of
132                                        parameters to the procedure!  */
133
134         if (res->loc_descriptions) {
135                 xfree(res->loc_descriptions);
136                 res->loc_descriptions = NULL;
137         }
138 }
139
140 ir_graph *new_r_ir_graph(ir_entity *ent, int n_loc)
141 {
142         ir_graph *res;
143         ir_node  *first_block;
144         ir_node  *start, *start_block, *initial_mem, *projX;
145
146         res = alloc_graph();
147
148         /* inform statistics here, as blocks will be already build on this graph */
149         hook_new_graph(res, ent);
150
151         /*-- initialized for each graph. --*/
152         res->kind = k_ir_graph;
153         res->obst = XMALLOC(struct obstack);
154         obstack_init(res->obst);
155
156         /* graphs are in construction mode by default */
157         add_irg_constraints(res, IR_GRAPH_CONSTRAINT_CONSTRUCTION);
158         irg_set_nloc(res, n_loc);
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         res->last_node_idx = 0;
167
168         new_identities(res);
169
170         res->irg_pinned_state    = op_pin_state_pinned;
171         res->typeinfo_state      = ir_typeinfo_none;
172         set_irp_typeinfo_inconsistent();           /* there is a new graph with typeinfo_none. */
173         res->callee_info_state   = irg_callee_info_none;
174         res->class_cast_state    = ir_class_casts_transitive;
175         res->fp_model            = fp_model_precise;
176         res->mem_disambig_opt    = aa_opt_inherited;
177
178         /*-- Type information for the procedure of the graph --*/
179         res->ent = ent;
180         set_entity_irg(ent, res);
181
182         /*--  a class type so that it can contain "inner" methods as in Pascal. --*/
183         res->frame_type = new_type_frame();
184
185         /* the Anchor node must be created first */
186         res->anchor = new_r_Anchor(res);
187
188         /*-- Nodes needed in every graph --*/
189         set_irg_end_block(res, new_r_immBlock(res));
190         set_irg_end(res, new_r_End(res, 0, NULL));
191
192         start_block = new_r_Block_noopt(res, 0, NULL);
193         set_irg_start_block(res, start_block);
194         set_irg_no_mem     (res, new_r_NoMem(res));
195         start = new_r_Start(res);
196         set_irg_start      (res, start);
197
198         /* Proj results of start node */
199         projX                   = new_r_Proj(start, mode_X, pn_Start_X_initial_exec);
200         set_irg_initial_exec    (res, projX);
201         set_irg_frame           (res, new_r_Proj(start, mode_P_data, pn_Start_P_frame_base));
202         set_irg_args            (res, new_r_Proj(start, mode_T,      pn_Start_T_args));
203         initial_mem             = new_r_Proj(start, mode_M, pn_Start_M);
204         set_irg_initial_mem(res, initial_mem);
205
206         res->index       = get_irp_new_irg_idx();
207 #ifdef DEBUG_libfirm
208         res->graph_nr    = get_irp_new_node_nr();
209 #endif
210
211         set_r_cur_block(res, start_block);
212         set_r_store(res, initial_mem);
213
214         /*-- Make a block to start with --*/
215         first_block = new_r_Block(res, 1, &projX);
216         set_r_cur_block(res, first_block);
217
218         res->method_execution_frequency = -1.0;
219
220         return res;
221 }
222
223 ir_graph *new_ir_graph(ir_entity *ent, int n_loc)
224 {
225         ir_graph *res = new_r_ir_graph(ent, n_loc);
226         add_irp_irg(res);          /* remember this graph global. */
227         return res;
228 }
229
230 ir_graph *new_const_code_irg(void)
231 {
232         ir_graph *res = alloc_graph();
233         ir_node  *body_block;
234         ir_node  *end;
235         ir_node  *end_block;
236         ir_node  *no_mem;
237         ir_node  *projX;
238         ir_node  *start_block;
239         ir_node  *start;
240
241         /* inform statistics here, as blocks will be already build on this graph */
242         hook_new_graph(res, NULL);
243
244         res->n_loc         = 1; /* Only the memory. */
245         res->visited       = 0; /* visited flag, for the ir walker */
246         res->block_visited = 0; /* visited flag, for the 'block'-walker */
247         res->obst          = XMALLOC(struct obstack);
248         obstack_init(res->obst);
249
250         res->last_node_idx = 0;
251
252         res->irg_pinned_state = op_pin_state_pinned;
253         res->fp_model         = fp_model_precise;
254
255         /* value table for global value numbering for optimizing use in iropt.c */
256         new_identities(res);
257         res->ent         = NULL;
258         res->frame_type  = NULL;
259
260         add_irg_constraints(res, IR_GRAPH_CONSTRAINT_CONSTRUCTION);
261
262         /* the Anchor node must be created first */
263         res->anchor = new_r_Anchor(res);
264
265         /* -- The end block -- */
266         end_block = new_r_Block_noopt(res, 0, NULL);
267         set_irg_end_block(res, end_block);
268         end = new_r_End(res, 0, NULL);
269         set_irg_end(res, end);
270
271         /* -- The start block -- */
272         start_block = new_r_Block_noopt(res, 0, NULL);
273         set_irg_start_block(res, start_block);
274         no_mem = new_r_NoMem(res);
275         set_irg_no_mem(res, no_mem);
276         start = new_r_Start(res);
277         set_irg_start(res, start);
278
279         /* Proj results of start node */
280         set_irg_initial_mem(res, new_r_Proj(start, mode_M, pn_Start_M));
281         projX = new_r_Proj(start, mode_X, pn_Start_X_initial_exec);
282
283         body_block = new_r_Block(res, 1, &projX);
284
285         set_r_cur_block(res, body_block);
286
287         /* Set the visited flag high enough that the blocks will never be visited. */
288         set_irn_visited(body_block, -1);
289         set_Block_block_visited(body_block, -1);
290         set_Block_block_visited(start_block, -1);
291         set_irn_visited(start_block, -1);
292
293         return res;
294 }
295
296 /**
297  * Pre-Walker: Copies blocks and nodes from the original method graph
298  * to the copied graph.
299  *
300  * @param n    A node from the original method graph.
301  * @param env  The copied graph.
302  */
303 static void copy_all_nodes(ir_node *node, void *env)
304 {
305         ir_graph *irg      = (ir_graph*)env;
306         ir_node  *new_node = irn_copy_into_irg(node, irg);
307
308         set_irn_link(node, new_node);
309
310         /* fix access to entities on the stack frame */
311         if (is_Sel(new_node)) {
312                 ir_entity *ent = get_Sel_entity(new_node);
313                 ir_type   *tp  = get_entity_owner(ent);
314
315                 if (is_frame_type(tp)) {
316                         /* replace by the copied entity */
317                         ent = (ir_entity*)get_entity_link(ent);
318
319                         assert(is_entity(ent));
320                         assert(get_entity_owner(ent) == get_irg_frame_type(irg));
321                         set_Sel_entity(new_node, ent);
322                 }
323         }
324 }
325
326 /**
327  * Post-walker: Set the predecessors of the copied nodes.
328  * The copied nodes are set as link of their original nodes. The links of
329  * "irn" predecessors are the predecessors of copied node.
330  */
331 static void rewire(ir_node *irn, void *env)
332 {
333         (void) env;
334         irn_rewire_inputs(irn);
335 }
336
337 static ir_node *get_new_node(const ir_node *old_node)
338 {
339         return (ir_node*) get_irn_link(old_node);
340 }
341
342 ir_graph *create_irg_copy(ir_graph *irg)
343 {
344         ir_graph *res;
345
346         res = alloc_graph();
347
348         res->n_loc = 0;
349         res->visited = 0;       /* visited flag, for the ir walker */
350         res->block_visited = 0; /* visited flag, for the 'block'-walker */
351         res->obst       = XMALLOC(struct obstack);
352         obstack_init(res->obst);
353
354         res->last_node_idx = 0;
355
356         res->irg_pinned_state = irg->irg_pinned_state;
357         res->fp_model         = irg->fp_model;
358
359         new_identities(res);
360
361         /* clone the frame type here for safety */
362         irp_reserve_resources(irp, IRP_RESOURCE_ENTITY_LINK);
363         res->frame_type  = clone_frame_type(irg->frame_type);
364
365         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
366
367         /* copy all nodes from the graph irg to the new graph res */
368         irg_walk_anchors(irg, copy_all_nodes, rewire, res);
369
370         /* copy the Anchor node */
371         res->anchor = get_new_node(irg->anchor);
372
373         /* -- The end block -- */
374         set_irg_end_block (res, get_new_node(get_irg_end_block(irg)));
375         set_irg_end       (res, get_new_node(get_irg_end(irg)));
376
377         /* -- The start block -- */
378         set_irg_start_block(res, get_new_node(get_irg_start_block(irg)));
379         set_irg_no_mem     (res, get_new_node(get_irg_no_mem(irg)));
380         set_irg_start      (res, get_new_node(get_irg_start(irg)));
381
382         /* Proj results of start node */
383         set_irg_initial_mem(res, get_new_node(get_irg_initial_mem(irg)));
384
385         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
386         irp_free_resources(irp, IRP_RESOURCE_ENTITY_LINK);
387
388         return res;
389 }
390
391 void free_ir_graph(ir_graph *irg)
392 {
393         assert(is_ir_graph(irg));
394
395         remove_irp_irg(irg);
396         confirm_irg_properties(irg, IR_GRAPH_PROPERTIES_NONE);
397
398         hook_free_graph(irg);
399         free_irg_outs(irg);
400         del_identities(irg);
401         if (irg->ent) {
402                 set_entity_irg(irg->ent, NULL);  /* not set in const code irg */
403         }
404
405         free_End(get_irg_end(irg));
406         obstack_free(irg->obst, NULL);
407         free(irg->obst);
408         if (irg->loc_descriptions)
409                 free(irg->loc_descriptions);
410         irg->kind = k_BAD;
411         free_graph(irg);
412 }
413
414 int (is_ir_graph)(const void *thing)
415 {
416         return is_ir_graph_(thing);
417 }
418
419 #ifdef DEBUG_libfirm
420 long get_irg_graph_nr(const ir_graph *irg)
421 {
422         return irg->graph_nr;
423 }
424 #else
425 long get_irg_graph_nr(const ir_graph *irg)
426 {
427         return PTR_TO_INT(irg);
428 }
429 #endif
430
431 size_t get_irg_idx(const ir_graph *irg)
432 {
433         return irg->index;
434 }
435
436 ir_node *(get_idx_irn)(const ir_graph *irg, unsigned idx)
437 {
438         return get_idx_irn_(irg, idx);
439 }
440
441 ir_node *(get_irg_start_block)(const ir_graph *irg)
442 {
443         return get_irg_start_block_(irg);
444 }
445
446 void (set_irg_start_block)(ir_graph *irg, ir_node *node)
447 {
448         set_irg_start_block_(irg, node);
449 }
450
451 ir_node *(get_irg_start)(const ir_graph *irg)
452 {
453         return get_irg_start_(irg);
454 }
455
456 void (set_irg_start)(ir_graph *irg, ir_node *node)
457 {
458         set_irg_start_(irg, node);
459 }
460
461 ir_node *(get_irg_end_block)(const ir_graph *irg)
462 {
463         return get_irg_end_block_(irg);
464 }
465
466 void (set_irg_end_block)(ir_graph *irg, ir_node *node)
467 {
468         set_irg_end_block_(irg, node);
469 }
470
471 ir_node *(get_irg_end)(const ir_graph *irg)
472 {
473         return get_irg_end_(irg);
474 }
475
476 void (set_irg_end)(ir_graph *irg, ir_node *node)
477 {
478         set_irg_end_(irg, node);
479 }
480
481 ir_node *(get_irg_initial_exec)(const ir_graph *irg)
482 {
483         return get_irg_initial_exec_(irg);
484 }
485
486 void (set_irg_initial_exec)(ir_graph *irg, ir_node *node)
487 {
488         set_irg_initial_exec_(irg, node);
489 }
490
491 ir_node *(get_irg_frame)(const ir_graph *irg)
492 {
493         return get_irg_frame_(irg);
494 }
495
496 void (set_irg_frame)(ir_graph *irg, ir_node *node)
497 {
498         set_irg_frame_(irg, node);
499 }
500
501 ir_node *(get_irg_initial_mem)(const ir_graph *irg)
502 {
503         return get_irg_initial_mem_(irg);
504 }
505
506 void (set_irg_initial_mem)(ir_graph *irg, ir_node *node)
507 {
508         set_irg_initial_mem_(irg, node);
509 }
510
511 ir_node *(get_irg_args)(const ir_graph *irg)
512 {
513         return get_irg_args_(irg);
514 }
515
516 void (set_irg_args)(ir_graph *irg, ir_node *node)
517 {
518         set_irg_args_(irg, node);
519 }
520
521 ir_node *(get_irg_no_mem)(const ir_graph *irg)
522 {
523         return get_irg_no_mem_(irg);
524 }
525
526 void (set_irg_no_mem)(ir_graph *irg, ir_node *node)
527 {
528         set_irg_no_mem_(irg, node);
529 }
530
531 ir_entity *(get_irg_entity)(const ir_graph *irg)
532 {
533         return get_irg_entity_(irg);
534 }
535
536 void (set_irg_entity)(ir_graph *irg, ir_entity *ent)
537 {
538         set_irg_entity_(irg, ent);
539 }
540
541 ir_type *(get_irg_frame_type)(ir_graph *irg)
542 {
543         return get_irg_frame_type_(irg);
544 }
545
546 void (set_irg_frame_type)(ir_graph *irg, ir_type *ftp)
547 {
548         set_irg_frame_type_(irg, ftp);
549 }
550
551 int get_irg_n_locs(ir_graph *irg)
552 {
553         return irg->n_loc - 1;
554 }
555
556 int node_is_in_irgs_storage(const ir_graph *irg, const ir_node *n)
557 {
558         struct _obstack_chunk *p;
559
560         /*
561          * checks weather the ir_node pointer is on the obstack.
562          * A more sophisticated check would test the "whole" ir_node
563          */
564         for (p = irg->obst->chunk; p; p = p->prev) {
565                 if (((char *)p->contents <= (char *)n) && ((char *)n < (char *)p->limit))
566                         return 1;
567         }
568
569         return 0;
570 }
571
572 op_pin_state (get_irg_pinned)(const ir_graph *irg)
573 {
574         return get_irg_pinned_(irg);
575 }
576
577 irg_callee_info_state (get_irg_callee_info_state)(const ir_graph *irg)
578 {
579         return get_irg_callee_info_state_(irg);
580 }
581
582 void (set_irg_callee_info_state)(ir_graph *irg, irg_callee_info_state s)
583 {
584         set_irg_callee_info_state_(irg, s);
585 }
586
587 void (set_irg_link)(ir_graph *irg, void *thing)
588 {
589         set_irg_link_(irg, thing);
590 }
591
592 void *(get_irg_link)(const ir_graph *irg)
593 {
594         return get_irg_link_(irg);
595 }
596
597 ir_visited_t (get_irg_visited)(const ir_graph *irg)
598 {
599         return get_irg_visited_(irg);
600 }
601
602 /** maximum visited flag content of all ir_graph visited fields. */
603 static ir_visited_t max_irg_visited = 0;
604
605 void set_irg_visited(ir_graph *irg, ir_visited_t visited)
606 {
607         irg->visited = visited;
608         if (irg->visited > max_irg_visited) {
609                 max_irg_visited = irg->visited;
610         }
611 }
612
613 void inc_irg_visited(ir_graph *irg)
614 {
615         ++irg->visited;
616         if (irg->visited > max_irg_visited) {
617                 max_irg_visited = irg->visited;
618         }
619 }
620
621 ir_visited_t get_max_irg_visited(void)
622 {
623         return max_irg_visited;
624 }
625
626 void set_max_irg_visited(int val)
627 {
628         max_irg_visited = val;
629 }
630
631 ir_visited_t inc_max_irg_visited(void)
632 {
633 #ifndef NDEBUG
634         size_t i;
635         for (i = 0; i < get_irp_n_irgs(); i++)
636                 assert(max_irg_visited >= get_irg_visited(get_irp_irg(i)));
637 #endif
638         return ++max_irg_visited;
639 }
640
641 ir_visited_t (get_irg_block_visited)(const ir_graph *irg)
642 {
643         return get_irg_block_visited_(irg);
644 }
645
646 void (set_irg_block_visited)(ir_graph *irg, ir_visited_t visited)
647 {
648         set_irg_block_visited_(irg, visited);
649 }
650
651 void (inc_irg_block_visited)(ir_graph *irg)
652 {
653   inc_irg_block_visited_(irg);
654 }
655
656 unsigned (get_irg_fp_model)(const ir_graph *irg)
657 {
658         return get_irg_fp_model_(irg);
659 }
660
661 void set_irg_fp_model(ir_graph *irg, unsigned model)
662 {
663         irg->fp_model = model;
664 }
665
666 void set_irg_loc_description(ir_graph *irg, int n, void *description)
667 {
668         assert(0 <= n && n < irg->n_loc);
669
670         if (! irg->loc_descriptions)
671                 irg->loc_descriptions = XMALLOCNZ(void*, irg->n_loc);
672
673         irg->loc_descriptions[n] = description;
674 }
675
676 void *get_irg_loc_description(ir_graph *irg, int n)
677 {
678         assert(0 <= n && n < irg->n_loc);
679         return irg->loc_descriptions ? irg->loc_descriptions[n] : NULL;
680 }
681
682 #ifndef NDEBUG
683 void ir_reserve_resources(ir_graph *irg, ir_resources_t resources)
684 {
685         assert((irg->reserved_resources & resources) == 0);
686         irg->reserved_resources |= resources;
687 }
688
689 void ir_free_resources(ir_graph *irg, ir_resources_t resources)
690 {
691         assert((irg->reserved_resources & resources) == resources);
692         irg->reserved_resources &= ~resources;
693 }
694
695 ir_resources_t ir_resources_reserved(const ir_graph *irg)
696 {
697         return irg->reserved_resources;
698 }
699 #endif
700
701 unsigned get_irg_last_idx(const ir_graph *irg)
702 {
703         return irg->last_node_idx;
704 }
705
706 size_t register_additional_graph_data(size_t size)
707 {
708         assert(!forbid_new_data && "Too late to register additional node data");
709
710         if (forbid_new_data)
711                 return 0;
712
713         return additional_graph_data_size += size;
714 }
715
716 void add_irg_constraints(ir_graph *irg, ir_graph_constraints_t constraints)
717 {
718         irg->constraints |= constraints;
719 }
720
721 void clear_irg_constraints(ir_graph *irg, ir_graph_constraints_t constraints)
722 {
723         irg->constraints &= ~constraints;
724 }
725
726 int (irg_is_constrained)(const ir_graph *irg, ir_graph_constraints_t constraints)
727 {
728         return irg_is_constrained_(irg, constraints);
729 }
730
731 void (add_irg_properties)(ir_graph *irg, ir_graph_properties_t props)
732 {
733         add_irg_properties_(irg, props);
734 }
735
736 void (clear_irg_properties)(ir_graph *irg, ir_graph_properties_t props)
737 {
738         clear_irg_properties_(irg, props);
739 }
740
741 int (irg_has_properties)(const ir_graph *irg, ir_graph_properties_t props)
742 {
743         return irg_has_properties_(irg, props);
744 }
745
746 typedef void (*assure_property_func)(ir_graph *irg);
747
748 void assure_irg_properties(ir_graph *irg, ir_graph_properties_t props)
749 {
750         static struct {
751                 ir_graph_properties_t property;
752                 assure_property_func  func;
753         } property_functions[] = {
754                 { IR_GRAPH_PROPERTY_ONE_RETURN,               normalize_one_return },
755                 { IR_GRAPH_PROPERTY_MANY_RETURNS,             normalize_n_returns },
756                 { IR_GRAPH_PROPERTY_NO_CRITICAL_EDGES,        remove_critical_cf_edges },
757                 { IR_GRAPH_PROPERTY_NO_UNREACHABLE_CODE,      remove_unreachable_code },
758                 { IR_GRAPH_PROPERTY_NO_BADS,                  remove_bads },
759                 { IR_GRAPH_PROPERTY_NO_TUPLES,                remove_tuples },
760                 { IR_GRAPH_PROPERTY_CONSISTENT_DOMINANCE,     assure_doms },
761                 { IR_GRAPH_PROPERTY_CONSISTENT_POSTDOMINANCE, assure_postdoms },
762                 { IR_GRAPH_PROPERTY_CONSISTENT_OUT_EDGES,     assure_edges },
763                 { IR_GRAPH_PROPERTY_CONSISTENT_OUTS,          assure_irg_outs },
764                 { IR_GRAPH_PROPERTY_CONSISTENT_LOOPINFO,      assure_loopinfo },
765                 { IR_GRAPH_PROPERTY_CONSISTENT_ENTITY_USAGE,  assure_irg_entity_usage_computed },
766                 { IR_GRAPH_PROPERTY_CONSISTENT_DOMINANCE_FRONTIERS, ir_compute_dominance_frontiers },
767         };
768         size_t i;
769         for (i = 0; i < ARRAY_SIZE(property_functions); ++i) {
770                 ir_graph_properties_t missing = props & ~irg->properties;
771                 if (missing & property_functions[i].property)
772                         property_functions[i].func(irg);
773         }
774         assert((props & ~irg->properties) == IR_GRAPH_PROPERTIES_NONE);
775 }
776
777 void confirm_irg_properties(ir_graph *irg, ir_graph_properties_t props)
778 {
779         clear_irg_properties(irg, ~props);
780         if (! (props & IR_GRAPH_PROPERTY_CONSISTENT_OUT_EDGES))
781                 edges_deactivate(irg);
782         if (! (props & IR_GRAPH_PROPERTY_CONSISTENT_OUTS)
783             && (irg->properties & IR_GRAPH_PROPERTY_CONSISTENT_OUTS))
784             free_irg_outs(irg);
785         if (! (props & IR_GRAPH_PROPERTY_CONSISTENT_DOMINANCE_FRONTIERS))
786                 ir_free_dominance_frontiers(irg);
787 }