remove broken-for-verifier flag
[libfirm] / ir / opt / opt_manage.c
1 #include "config.h"
2
3 #include <assert.h>
4 #include <stdbool.h>
5
6 #include "irgraph_t.h"
7 #include "irprog_t.h"
8 #include "irnode.h"
9 #include "iroptimize.h"
10 #include "irgopt.h"
11 #include "irdom.h"
12 #include "iredges.h"
13 #include "irouts.h"
14 #include "irverify.h"
15 #include "irdump.h"
16 #include "opt_manage.h"
17
18 static void nop(ir_graph *irg) {
19         (void)irg;
20 }
21
22 void perform_irg_optimization(ir_graph *irg, optdesc_t *opt)
23 {
24         ir_graph_state_t new_irg_state;
25         ir_graph_state_t required = opt->requirements;
26         const bool dump = get_irp_optimization_dumps();
27
28         /** Some workarounds because information is currently duplicated */
29         // FIXME should not be necessary!
30         if (loopinfo_inconsistent == get_irg_loopinfo_state(irg))
31                 clear_irg_state(irg, IR_GRAPH_STATE_CONSISTENT_LOOPINFO);
32
33         /* assure that all requirements for the optimization are fulfilled */
34 #define PREPARE(st,func) if (st & (required ^ irg->state)) {func(irg); set_irg_state(irg,st);}
35         PREPARE(IR_GRAPH_STATE_ONE_RETURN,               normalize_one_return)
36         PREPARE(IR_GRAPH_STATE_NO_CRITICAL_EDGES,        remove_critical_cf_edges)
37         PREPARE(IR_GRAPH_STATE_NO_UNREACHABLE_CODE,      remove_unreachable_blocks)
38         PREPARE(IR_GRAPH_STATE_NO_BADS,                  remove_bads)
39         PREPARE(IR_GRAPH_STATE_CONSISTENT_DOMINANCE,     assure_doms)
40         PREPARE(IR_GRAPH_STATE_CONSISTENT_POSTDOMINANCE, assure_postdoms)
41         PREPARE(IR_GRAPH_STATE_CONSISTENT_OUT_EDGES,     edges_assure)
42         PREPARE(IR_GRAPH_STATE_CONSISTENT_OUTS,          assure_irg_outs)
43         PREPARE(IR_GRAPH_STATE_CONSISTENT_LOOPINFO,      assure_cf_loop)
44         PREPARE(IR_GRAPH_STATE_CONSISTENT_ENTITY_USAGE,  assure_irg_entity_usage_computed)
45         PREPARE(IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS,    compute_extbb)
46
47         /* now all the requirements for the optimization are fulfilled */
48         if (dump)
49                 dump_ir_graph(irg, opt->name);
50
51         new_irg_state = opt->optimization(irg);
52
53         if (dump)
54                 dump_ir_graph(irg, opt->name);
55
56         /* unless the optimization returned that some state is retained,
57          * we disable the corresponding irg state.
58          * Since we currently duplicate information, sometimes another func must be called too.
59          */
60 #define INVALIDATE(state,func) if (!(state & new_irg_state)) {clear_irg_state(irg,state); func(irg);}
61         INVALIDATE(IR_GRAPH_STATE_NO_CRITICAL_EDGES,        nop)
62         INVALIDATE(IR_GRAPH_STATE_NO_UNREACHABLE_CODE,      nop)
63         INVALIDATE(IR_GRAPH_STATE_NO_BADS,                  nop)
64         INVALIDATE(IR_GRAPH_STATE_ONE_RETURN,               nop)
65         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_DOMINANCE,     nop)
66         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_POSTDOMINANCE, nop)
67         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_OUTS,          nop)
68         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_OUT_EDGES,     edges_deactivate)
69         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_LOOPINFO,      set_irg_loopinfo_inconsistent)
70         INVALIDATE(IR_GRAPH_STATE_CONSISTENT_ENTITY_USAGE,  nop)
71         INVALIDATE(IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS,    set_irg_extblk_inconsistent)
72
73         remove_End_Bads_and_doublets(get_irg_end(irg));
74
75         irg_verify(irg, VERIFY_ENFORCE_SSA);
76 }