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