Re-implemented values_interfere
[libfirm] / ir / be / bemain.c
1 /**
2  * Backend driver.
3  * @author Sebastian Hack
4  * @date 25.11.2004
5  */
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include <stdarg.h>
11
12 #include "obst.h"
13 #include "bitset.h"
14
15 #include "irprog.h"
16 #include "irgopt.h"
17 #include "irgraph.h"
18 #include "irdump.h"
19 #include "phiclass.h"
20 #include "irdom_t.h"
21 #include "iredges_t.h"
22 #include "irloop_t.h"
23
24 #include "be_t.h"
25 #include "bechordal_t.h"
26 #include "benumb_t.h"
27 #include "besched_t.h"
28 #include "belistsched.h"
29 #include "belive_t.h"
30 #include "beutil.h"
31 #include "bechordal.h"
32 #include "bearch.h"
33 #include "becopyoptmain.h"
34 #include "becopystat.h"
35 #include "bessadestr.h"
36 #include "bearch_firm.h"
37 #include "benode_t.h"
38 #include "beirgmod.h"
39 #include "bedupl.h"
40
41 #include "beasm_dump_globals.h"
42 #include "beasm_asm_gnu.h"
43
44 #undef DUMP_ALLOCATED
45
46 #define N_PHASES 256
47
48
49 void be_init(void)
50 {
51         be_sched_init();
52         be_liveness_init();
53         be_numbering_init();
54         be_ra_chordal_init();
55         be_copy_opt_init();
56         copystat_init();
57 }
58
59 static be_main_env_t *be_init_env(be_main_env_t *env)
60 {
61   const arch_isa_if_t *isa = &firm_isa;
62
63   obstack_init(&env->obst);
64   env->dbg = firm_dbg_register("be.main");
65
66   env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
67   arch_env_init(env->arch_env, isa);
68   env->arch_env->isa->init();
69
70   env->node_factory = obstack_alloc(&env->obst, sizeof(*env->node_factory));
71   be_node_factory_init(env->node_factory, isa);
72
73   arch_env_add_irn_handler(env->arch_env, &firm_irn_handler);
74   arch_env_add_irn_handler(env->arch_env,
75       be_node_get_irn_handler(env->node_factory));
76
77   return env;
78 }
79
80 static be_main_session_env_t *
81 be_init_session_env(be_main_session_env_t *env,
82     be_main_env_t *main_env, ir_graph *irg)
83 {
84   env->main_env = main_env;
85   env->irg = irg;
86
87   return env;
88 }
89
90 static void prepare_graph(be_main_session_env_t *s)
91 {
92         /*
93          * Duplicate consts in each block
94          * (This is just for the firm dummy backend)
95          */
96         // localize_consts(s->irg);
97
98         /* Remove critical edges */
99         remove_critical_cf_edges(s->irg);
100
101         /* Compute the dominance information. */
102         free_dom_and_peace(s->irg);
103         compute_doms(s->irg);
104
105         /* Compute the dominance frontiers */
106         s->dom_front = be_compute_dominance_frontiers(s->irg);
107
108         /* Ensure, that the ir_edges are computed. */
109         edges_assure(s->irg);
110
111         /* Compute loop nesting information (for weighting copies) */
112         if (get_irg_loopinfo_state(s->irg) != (loopinfo_valid & loopinfo_cf_consistent))
113                 construct_cf_backedges(s->irg);
114
115         dump_dominator_information(true);
116         dump_ir_block_graph(s->irg, "-prepared");
117         dump_dominator_information(false);
118 }
119
120 static void be_main_loop(void)
121 {
122         int i, n;
123         be_main_env_t env;
124         const arch_isa_if_t *isa;
125
126         be_init_env(&env);
127         isa = arch_env_get_isa(env.arch_env);
128
129         /* For all graphs */
130         for(i = 0, n = get_irp_n_irgs(); i < n; ++i) {
131                 int j, m;
132                 ir_graph *irg = get_irp_irg(i);
133                 be_main_session_env_t session;
134
135     DBG((env.dbg, LEVEL_1, "be irg: %F\n", irg));
136
137                 /* Init the session. */
138                 be_init_session_env(&session, &env, irg);
139
140                 /* Compute some analyses and prepare the graph for backend use. */
141                 prepare_graph(&session);
142
143                 /* Schedule the graphs. */
144                 list_sched(irg, trivial_selector);
145                 dump_ir_block_graph_sched(irg, "-sched");
146
147                 /* Verify the schedule */
148                 sched_verify_irg(irg);
149
150     /* Build liveness information */
151     be_liveness(irg);
152
153                 /* Remove all cases where a phi and one of its arguments interfere */
154                 be_eliminate_phi_interferences(&session);
155                 dump_ir_block_graph(session.irg, "-prephase");
156
157                 /* Liveness analysis */
158                 be_liveness(irg);
159
160                 copystat_reset();
161                 copystat_collect_irg(irg, env.arch_env);
162
163     /*
164      * Verifying the schedule once again cannot hurt.
165      */
166     sched_verify_irg(irg);
167
168                 /* Perform the following for each register class. */
169                 for(j = 0, m = isa->get_n_reg_class(); j < m; ++j) {
170                         be_chordal_env_t *chordal_env;
171                         const arch_register_class_t *cls = isa->get_reg_class(j);
172
173       DBG((env.dbg, LEVEL_1, "\treg class: %s\n", cls->name));
174
175       be_numbering(irg);
176       be_liveness(irg);
177
178                         chordal_env = be_ra_chordal(irg, env.arch_env, cls);
179
180 #ifdef DUMP_ALLOCATED
181                         dump_allocated_irg(env.arch_env, irg, "");
182 #endif
183                         copystat_collect_cls(chordal_env);
184
185                         be_copy_opt(chordal_env);
186
187                         be_ssa_destruction(&session, chordal_env);
188                         be_ssa_destruction_check(&session, chordal_env);
189                         be_ra_chordal_check(chordal_env);
190
191       be_ra_chordal_done(chordal_env);
192       be_numbering_done(irg);
193                 }
194
195                 copystat_dump_pretty(irg);
196         }
197 }
198
199 void be_main(int argc, const char *argv[])
200 {
201         assembler_t *gnu_assembler;
202         FILE *asm_output_file;
203
204         be_main_loop();
205         gnu_assembler = gnuasm_create_assembler();
206         asm_output_file = fopen("asm_output.asm", "w");
207
208         asm_dump_globals(gnu_assembler);
209         gnuasm_dump(gnu_assembler, asm_output_file);
210         gnuasm_delete_assembler(gnu_assembler);
211         fclose(asm_output_file);
212 }