7283ebf77e85fb711111fe040bd2992d41c9a4cb
[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 #include <mcheck.h>
12
13 #include "obst.h"
14 #include "bitset.h"
15
16 #include "irprog.h"
17 #include "irgopt.h"
18 #include "irgraph.h"
19 #include "irdump.h"
20 #include "phiclass.h"
21 #include "irdom_t.h"
22 #include "iredges_t.h"
23 #include "irloop_t.h"
24
25 #include "be_t.h"
26 #include "bechordal_t.h"
27 #include "benumb_t.h"
28 #include "besched_t.h"
29 #include "belistsched.h"
30 #include "belive_t.h"
31 #include "beutil.h"
32 #include "bechordal.h"
33 #include "bearch.h"
34 #include "becopyoptmain.h"
35 #include "becopystat.h"
36 #include "bessadestr.h"
37 #include "bearch_firm.h"
38 #include "benode_t.h"
39 #include "beirgmod.h"
40 #include "bespillilp.h"
41
42 #include "beasm_dump_globals.h"
43 #include "beasm_asm_gnu.h"
44
45 #undef DUMP_ALLOCATED
46
47 #define N_PHASES 256
48
49
50 void be_init(void)
51 {
52         be_sched_init();
53         be_liveness_init();
54         be_numbering_init();
55         be_ra_chordal_init();
56         be_copy_opt_init();
57         copystat_init();
58 }
59
60 static be_main_env_t *be_init_env(be_main_env_t *env)
61 {
62   const arch_isa_if_t *isa = &firm_isa;
63
64   obstack_init(&env->obst);
65   env->dbg = firm_dbg_register("be.main");
66   firm_dbg_set_mask(env->dbg, SET_LEVEL_1);
67
68   env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
69   arch_env_init(env->arch_env, isa);
70   env->arch_env->isa->init();
71
72   env->node_factory = obstack_alloc(&env->obst, sizeof(*env->node_factory));
73   be_node_factory_init(env->node_factory, isa);
74
75   arch_env_add_irn_handler(env->arch_env, &firm_irn_handler);
76   arch_env_add_irn_handler(env->arch_env,
77       be_node_get_irn_handler(env->node_factory));
78
79   return env;
80 }
81
82 static be_main_session_env_t *
83 be_init_session_env(be_main_session_env_t *env,
84     be_main_env_t *main_env, ir_graph *irg)
85 {
86   env->main_env = main_env;
87   env->irg = irg;
88
89   return env;
90 }
91
92 static void prepare_graph(be_main_session_env_t *s)
93 {
94         /* set the current graph (this is important for several firm functions) */
95         current_ir_graph = s->irg;
96
97         /* Let the isa prepare the graph. */
98         s->main_env->arch_env->isa->prepare_graph(s->irg);
99
100         /* Remove critical edges */
101         remove_critical_cf_edges(s->irg);
102
103         /* Compute the dominance information. */
104         free_dom_and_peace(s->irg);
105         compute_doms(s->irg);
106
107         /* Compute the dominance frontiers */
108         s->dom_front = be_compute_dominance_frontiers(s->irg);
109
110         /* Ensure, that the ir_edges are computed. */
111         edges_activate(s->irg);
112
113         /* Compute loop nesting information (for weighting copies) */
114         if (get_irg_loopinfo_state(s->irg) != (loopinfo_valid & loopinfo_cf_consistent))
115                 construct_cf_backedges(s->irg);
116
117         dump_dominator_information(true);
118         dump_ir_block_graph(s->irg, "-prepared");
119         dump_dominator_information(false);
120 }
121
122 static void be_main_loop(void)
123 {
124         int i, n;
125         be_main_env_t env;
126         const arch_isa_if_t *isa;
127
128         be_init_env(&env);
129         isa = arch_env_get_isa(env.arch_env);
130
131         /* For all graphs */
132         for(i = 0, n = get_irp_n_irgs(); i < n; ++i) {
133                 int j, m;
134                 ir_graph *irg = get_irp_irg(i);
135                 be_main_session_env_t session;
136
137                 DBG((env.dbg, LEVEL_1, "====> IRG: %F\n", irg));
138
139                 /* Init the session. */
140                 be_init_session_env(&session, &env, irg);
141
142                 /* Compute some analyses and prepare the graph for backend use. */
143                 prepare_graph(&session);
144
145                 /* Schedule the graphs. */
146                 list_sched(irg, trivial_selector);
147                 dump_ir_block_graph_sched(irg, "-sched");
148
149                 /* Verify the schedule */
150                 sched_verify_irg(irg);
151
152                 /* Build liveness information */
153                 be_liveness(irg);
154
155                 copystat_reset();
156                 copystat_collect_irg(irg, env.arch_env);
157
158                 /* Perform the following for each register class. */
159                 for(j = 0, m = isa->get_n_reg_class(); j < m; ++j) {
160                         be_chordal_env_t *chordal_env;
161                         const arch_register_class_t *cls = isa->get_reg_class(j);
162
163                         DBG((env.dbg, LEVEL_1, "----> Reg class: %s\n", cls->name));
164
165                         be_spill_ilp(&session, cls);
166                         dump_ir_block_graph_sched(session.irg, "-spill");
167
168                         be_liveness(irg);
169                         be_numbering(irg);
170                         be_check_pressure(&session, cls);
171
172 #if 0
173                         {
174                                 FILE *f;
175                                 char buf[128];
176                                 ir_snprintf(buf, sizeof(buf), "%F_%s-live.txt", irg, cls->name);
177                                 if((f = fopen(buf, "wt")) != NULL) {
178                                         be_liveness_dump(session.irg, f);
179                                         fclose(f);
180                                 }
181                         }
182 #endif
183
184                         chordal_env = be_ra_chordal(&session, cls);
185
186 #ifdef DUMP_ALLOCATED
187                         dump_allocated_irg(env.arch_env, irg, "");
188 #endif
189                         copystat_collect_cls(chordal_env);
190
191                         be_copy_opt(chordal_env);
192
193                         be_ssa_destruction(chordal_env);
194                         be_ssa_destruction_check(chordal_env);
195                         be_ra_chordal_check(chordal_env);
196
197                         be_ra_chordal_done(chordal_env);
198                         be_numbering_done(irg);
199                 }
200                 dump_ir_block_graph_sched(session.irg, "-post");
201
202                 copystat_dump(irg);
203         }
204 }
205
206 void be_main(int argc, const char *argv[])
207 {
208         assembler_t *gnu_assembler;
209         FILE *asm_output_file;
210
211         mtrace();
212         be_main_loop();
213         muntrace();
214
215         gnu_assembler = gnuasm_create_assembler();
216         asm_output_file = fopen("asm_output.asm", "w");
217
218         asm_dump_globals(gnu_assembler);
219         gnuasm_dump(gnu_assembler, asm_output_file);
220         gnuasm_delete_assembler(gnu_assembler);
221         fclose(asm_output_file);
222
223 }