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