dump graph after code-selection
[libfirm] / ir / be / bemain.c
1 /*
2  * Copyright (C) 1995-2008 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       Main Backend driver.
23  * @author      Sebastian Hack
24  * @date        25.11.2004
25  * @version     $Id$
26  */
27 #include "config.h"
28
29 #include <stdarg.h>
30 #include <stdio.h>
31
32 #include "lc_opts.h"
33 #include "lc_opts_enum.h"
34
35 #include "obst.h"
36 #include "bitset.h"
37
38 #include "irprog.h"
39 #include "irgopt.h"
40 #include "irgraph.h"
41 #include "irdump.h"
42 #include "irdom_t.h"
43 #include "iredges_t.h"
44 #include "irloop_t.h"
45 #include "irtools.h"
46 #include "irverify.h"
47 #include "irprintf.h"
48 #include "iroptimize.h"
49 #include "firmstat.h"
50 #include "execfreq.h"
51 #include "irprofile.h"
52 #include "irpass_t.h"
53
54 #include "bearch.h"
55 #include "be_t.h"
56 #include "bemodule.h"
57 #include "beutil.h"
58 #include "benode.h"
59 #include "beirgmod.h"
60 #include "besched.h"
61 #include "belistsched.h"
62 #include "belive_t.h"
63 #include "bera.h"
64 #include "bechordal_t.h"
65 #include "beifg.h"
66 #include "becopyopt.h"
67 #include "becopystat.h"
68 #include "bessadestr.h"
69 #include "beabi.h"
70 #include "belower.h"
71 #include "bestat.h"
72 #include "beverify.h"
73 #include "be_dbgout.h"
74 #include "beirg.h"
75 #include "bestack.h"
76
77 #define NEW_ID(s) new_id_from_chars(s, sizeof(s) - 1)
78
79 /* options visible for anyone */
80 static be_options_t be_options = {
81         DUMP_NONE,                         /* dump flags */
82         BE_TIME_OFF,                       /* no timing */
83         0,                                 /* no opt profile */
84         0,                                 /* try to omit frame pointer */
85         0,                                 /* create PIC code */
86         BE_VERIFY_WARN,                    /* verification level: warn */
87         "i44pc52.info.uni-karlsruhe.de",   /* ilp server */
88         "cplex",                           /* ilp solver */
89         0,                                 /* enable statistic event dumping */
90         "",                                /* print stat events */
91 };
92
93 /* back end instruction set architecture to use */
94 static const arch_isa_if_t *isa_if = NULL;
95
96 /* possible dumping options */
97 static const lc_opt_enum_mask_items_t dump_items[] = {
98         { "none",       DUMP_NONE },
99         { "initial",    DUMP_INITIAL },
100         { "abi",        DUMP_ABI    },
101         { "sched",      DUMP_SCHED  },
102         { "prepared",   DUMP_PREPARED },
103         { "regalloc",   DUMP_RA },
104         { "final",      DUMP_FINAL },
105         { "be",         DUMP_BE },
106         { "all",        2 * DUMP_BE - 1 },
107         { NULL,         0 }
108 };
109
110 /* verify options. */
111 static const lc_opt_enum_int_items_t verify_items[] = {
112         { "off",    BE_VERIFY_OFF    },
113         { "warn",   BE_VERIFY_WARN   },
114         { "assert", BE_VERIFY_ASSERT },
115         { NULL,     0 }
116 };
117
118 static lc_opt_enum_mask_var_t dump_var = {
119         &be_options.dump_flags, dump_items
120 };
121
122 static lc_opt_enum_int_var_t verify_var = {
123         &be_options.verify_option, verify_items
124 };
125
126 static const lc_opt_table_entry_t be_main_options[] = {
127         LC_OPT_ENT_ENUM_MASK("dump",       "dump irg on several occasions",                       &dump_var),
128         LC_OPT_ENT_BOOL     ("omitfp",     "omit frame pointer",                                  &be_options.omit_fp),
129         LC_OPT_ENT_BOOL     ("pic",        "create PIC code",                                     &be_options.pic),
130         LC_OPT_ENT_ENUM_PTR ("verify",     "verify the backend irg",                              &verify_var),
131         LC_OPT_ENT_BOOL     ("time",       "get backend timing statistics",                       &be_options.timing),
132         LC_OPT_ENT_BOOL     ("profile",    "instrument the code for execution count profiling",   &be_options.opt_profile),
133 #ifdef FIRM_STATISTICS
134         LC_OPT_ENT_BOOL     ("statev",     "dump statistic events",                               &be_options.statev),
135         LC_OPT_ENT_STR      ("filtev",     "filter for stat events (regex if support is active",  &be_options.filtev, sizeof(be_options.filtev)),
136 #endif
137
138 #ifdef WITH_ILP
139         LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)),
140         LC_OPT_ENT_STR ("ilp.solver", "the ilp solver name", be_options.ilp_solver, sizeof(be_options.ilp_solver)),
141 #endif /* WITH_ILP */
142         LC_OPT_LAST
143 };
144
145 static be_module_list_entry_t *isa_ifs = NULL;
146
147
148 asm_constraint_flags_t asm_constraint_flags[256];
149
150 void be_init_default_asm_constraint_flags(void)
151 {
152         asm_constraint_flags['?'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
153         asm_constraint_flags['!'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
154         asm_constraint_flags['&'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT
155                 | ASM_CONSTRAINT_FLAG_MODIFIER_EARLYCLOBBER;
156         asm_constraint_flags['%'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT
157                 | ASM_CONSTRAINT_FLAG_MODIFIER_COMMUTATIVE;
158         asm_constraint_flags['!'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
159
160         asm_constraint_flags['='] = ASM_CONSTRAINT_FLAG_MODIFIER_WRITE
161                 | ASM_CONSTRAINT_FLAG_MODIFIER_NO_READ;
162         asm_constraint_flags['+'] = ASM_CONSTRAINT_FLAG_MODIFIER_READ
163                 | ASM_CONSTRAINT_FLAG_MODIFIER_WRITE;
164
165         asm_constraint_flags['i'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
166         asm_constraint_flags['s'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
167         asm_constraint_flags['E'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
168         asm_constraint_flags['F'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
169         asm_constraint_flags['G'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
170         asm_constraint_flags['H'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
171         asm_constraint_flags['I'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
172         asm_constraint_flags['J'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
173         asm_constraint_flags['K'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
174         asm_constraint_flags['L'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
175         asm_constraint_flags['M'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
176         asm_constraint_flags['N'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
177         asm_constraint_flags['O'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
178         asm_constraint_flags['P'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
179
180         asm_constraint_flags['m'] = ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP;
181         asm_constraint_flags['o'] = ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP;
182         asm_constraint_flags['V'] = ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP;
183         asm_constraint_flags['<'] = ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP;
184         asm_constraint_flags['>'] = ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP;
185
186         asm_constraint_flags['p'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
187         asm_constraint_flags['0'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
188         asm_constraint_flags['1'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
189         asm_constraint_flags['2'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
190         asm_constraint_flags['3'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
191         asm_constraint_flags['4'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
192         asm_constraint_flags['5'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
193         asm_constraint_flags['6'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
194         asm_constraint_flags['7'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
195         asm_constraint_flags['8'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
196         asm_constraint_flags['9'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
197
198         asm_constraint_flags['X'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER
199                 | ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP
200                 | ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
201
202         /* these should have been catched by the parsing code already */
203         asm_constraint_flags['#']  = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
204         asm_constraint_flags['*']  = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
205         asm_constraint_flags[' ']  = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
206         asm_constraint_flags['\t'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
207         asm_constraint_flags['\n'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
208         asm_constraint_flags['\r'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
209 }
210
211 asm_constraint_flags_t be_parse_asm_constraints(const char *constraint)
212 {
213         asm_constraint_flags_t  flags = ASM_CONSTRAINT_FLAG_NONE;
214         const char             *c;
215         asm_constraint_flags_t  tflags;
216
217         for (c = constraint; *c != '\0'; ++c) {
218                 switch (*c) {
219                 case '#':
220                         /* 'comment' stuff */
221                         while (*c != 0 && *c != ',')
222                                 ++c;
223                         break;
224                 case '*':
225                         /* 'comment' character */
226                         ++c;
227                         break;
228                 case ' ':
229                 case '\t':
230                 case '\n':
231                 case '\r':
232                         break;
233                 default:
234                         tflags = asm_constraint_flags[(int) *c];
235                         if (tflags != 0) {
236                                 flags |= tflags;
237                         } else {
238                                 flags |= isa_if->parse_asm_constraint(&c);
239                         }
240                         break;
241                 }
242         }
243
244         if ((
245                 flags & ASM_CONSTRAINT_FLAG_MODIFIER_WRITE &&
246                 flags & ASM_CONSTRAINT_FLAG_MODIFIER_NO_WRITE
247             ) || (
248                 flags & ASM_CONSTRAINT_FLAG_MODIFIER_READ &&
249                 flags & ASM_CONSTRAINT_FLAG_MODIFIER_NO_READ
250             )) {
251                 flags |= ASM_CONSTRAINT_FLAG_INVALID;
252         }
253         if (!(flags & (ASM_CONSTRAINT_FLAG_MODIFIER_READ     |
254                        ASM_CONSTRAINT_FLAG_MODIFIER_WRITE    |
255                        ASM_CONSTRAINT_FLAG_MODIFIER_NO_WRITE |
256                        ASM_CONSTRAINT_FLAG_MODIFIER_NO_READ)
257             )) {
258                 flags |= ASM_CONSTRAINT_FLAG_MODIFIER_READ;
259         }
260
261         return flags;
262 }
263
264 int be_is_valid_clobber(const char *clobber)
265 {
266         /* memory is a valid clobber. (the frontend has to detect this case too,
267          * because it has to add memory edges to the asm) */
268         if (strcmp(clobber, "memory") == 0)
269                 return 1;
270         /* cc (condition code) is always valid */
271         if (strcmp(clobber, "cc") == 0)
272                 return 1;
273
274         return isa_if->is_valid_clobber(clobber);
275 }
276
277 void be_register_isa_if(const char *name, const arch_isa_if_t *isa)
278 {
279         if (isa_if == NULL)
280                 isa_if = isa;
281
282         be_add_module_to_list(&isa_ifs, name, (void*) isa);
283 }
284
285 void be_opt_register(void)
286 {
287         lc_opt_entry_t *be_grp;
288         static int run_once = 0;
289
290         if (run_once)
291                 return;
292         run_once = 1;
293
294         be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
295         lc_opt_add_table(be_grp, be_main_options);
296
297         be_add_module_list_opt(be_grp, "isa", "the instruction set architecture",
298                                &isa_ifs, (void**) &isa_if);
299
300         be_init_modules();
301 }
302
303 /* Parse one argument. */
304 int be_parse_arg(const char *arg)
305 {
306         lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
307         if (strcmp(arg, "help") == 0 || (arg[0] == '?' && arg[1] == '\0')) {
308                 lc_opt_print_help_for_entry(be_grp, '-', stdout);
309                 return -1;
310         }
311         return lc_opt_from_single_arg(be_grp, NULL, arg, NULL);
312 }
313
314 /* Perform schedule verification if requested. */
315 static void be_sched_verify(ir_graph *irg, int verify_opt)
316 {
317         if (verify_opt == BE_VERIFY_WARN) {
318                 be_verify_schedule(irg);
319         } else if (verify_opt == BE_VERIFY_ASSERT) {
320                 assert(be_verify_schedule(irg) && "Schedule verification failed.");
321         }
322 }
323
324 /* Initialize the Firm backend. Must be run first in init_firm()! */
325 void firm_be_init(void)
326 {
327         be_opt_register();
328         be_init_modules();
329 }
330
331 /* Finalize the Firm backend. */
332 void firm_be_finish(void)
333 {
334         be_quit_modules();
335 }
336
337 /* Returns the backend parameter */
338 const backend_params *be_get_backend_param(void)
339 {
340         return isa_if->get_params();
341 }
342
343 /**
344  * Initializes the main environment for the backend.
345  *
346  * @param env          an empty environment
347  * @param file_handle  the file handle where the output will be written to
348  */
349 static be_main_env_t *be_init_env(be_main_env_t *env, FILE *file_handle)
350 {
351         memset(env, 0, sizeof(*env));
352         env->options              = &be_options;
353         env->ent_trampoline_map   = pmap_create();
354         env->pic_trampolines_type = new_type_class(NEW_ID("$PIC_TRAMPOLINE_TYPE"));
355         env->ent_pic_symbol_map   = pmap_create();
356         env->pic_symbols_type     = new_type_struct(NEW_ID("$PIC_SYMBOLS_TYPE"));
357
358         remove_irp_type(env->pic_trampolines_type);
359         remove_irp_type(env->pic_symbols_type);
360         set_class_final(env->pic_trampolines_type, 1);
361
362         memset(asm_constraint_flags, 0, sizeof(asm_constraint_flags));
363         env->arch_env = arch_env_init(isa_if, file_handle, env);
364
365         be_dbg_open();
366         return env;
367 }
368
369 /**
370  * Called when the be_main_env_t can be destroyed.
371  */
372 static void be_done_env(be_main_env_t *env)
373 {
374         arch_env_done(env->arch_env);
375         be_dbg_close();
376
377         pmap_destroy(env->ent_trampoline_map);
378         pmap_destroy(env->ent_pic_symbol_map);
379         free_type(env->pic_trampolines_type);
380         free_type(env->pic_symbols_type);
381 }
382
383 /**
384  * A wrapper around a firm dumper. Dumps only, if
385  * flags are enabled.
386  *
387  * @param mask    a bitmask containing the reason what will be dumped
388  * @param irg     the IR graph to dump
389  * @param suffix  the suffix for the dumper
390  * @param dumper  the dumper to be called
391  */
392 static void dump(int mask, ir_graph *irg, const char *suffix)
393 {
394         if (be_options.dump_flags & mask)
395                 dump_ir_graph(irg, suffix);
396 }
397
398 /**
399  * Prepare a backend graph for code generation and initialize its irg
400  */
401 static void initialize_birg(be_irg_t *birg, ir_graph *irg, be_main_env_t *env)
402 {
403         /* don't duplicate locals in backend when dumping... */
404         ir_remove_dump_flags(ir_dump_flag_consts_local);
405
406         dump(DUMP_INITIAL, irg, "begin");
407
408         irg->be_data = birg;
409
410         memset(birg, 0, sizeof(*birg));
411         birg->irg = irg;
412         birg->main_env = env;
413         obstack_init(&birg->obst);
414
415         edges_deactivate_kind(irg, EDGE_KIND_DEP);
416         edges_activate_kind(irg, EDGE_KIND_DEP);
417
418         /* set the current graph (this is important for several firm functions) */
419         current_ir_graph = irg;
420
421         /* we do this before critical edge split. As this produces less returns,
422            because sometimes (= 164.gzip) multiple returns are slower */
423         normalize_n_returns(irg);
424
425         /* Remove critical edges */
426         remove_critical_cf_edges_ex(irg, /*ignore_exception_edges=*/0);
427
428         /* Ensure, that the ir_edges are computed. */
429         edges_assure(irg);
430
431         set_irg_phase_state(irg, phase_backend);
432         be_info_init_irg(irg);
433
434         dump(DUMP_INITIAL, irg, "prepared");
435 }
436
437 int be_timing;
438
439 static const char *get_timer_name(be_timer_id_t id)
440 {
441         switch (id) {
442         case T_ABI:            return "abi";
443         case T_CODEGEN:        return "codegen";
444         case T_RA_PREPARATION: return "ra_preparation";
445         case T_SCHED:          return "sched";
446         case T_CONSTR:         return "constr";
447         case T_FINISH:         return "finish";
448         case T_EMIT:           return "emit";
449         case T_VERIFY:         return "verify";
450         case T_OTHER:          return "other";
451         case T_HEIGHTS:        return "heights";
452         case T_LIVE:           return "live";
453         case T_EXECFREQ:       return "execfreq";
454         case T_SSA_CONSTR:     return "ssa_constr";
455         case T_RA_PROLOG:      return "ra_prolog";
456         case T_RA_EPILOG:      return "ra_epilog";
457         case T_RA_CONSTR:      return "ra_constr";
458         case T_RA_SPILL:       return "ra_spill";
459         case T_RA_SPILL_APPLY: return "ra_spill_apply";
460         case T_RA_COLOR:       return "ra_color";
461         case T_RA_IFG:         return "ra_ifg";
462         case T_RA_COPYMIN:     return "ra_copymin";
463         case T_RA_SSA:         return "ra_ssa";
464         case T_RA_OTHER:       return "ra_other";
465         }
466         return "unknown";
467 }
468 ir_timer_t *be_timers[T_LAST+1];
469
470 void be_lower_for_target(void)
471 {
472         int i;
473
474         isa_if->lower_for_target();
475         /* set the phase to low */
476         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
477                 ir_graph *irg = get_irp_irg(i);
478                 set_irg_phase_state(irg, phase_low);
479         }
480         set_irp_phase_state(phase_low);
481 }
482
483 /**
484  * The Firm backend main loop.
485  * Do architecture specific lowering for all graphs
486  * and call the architecture specific code generator.
487  *
488  * @param file_handle   the file handle the output will be written to
489  * @param cup_name      name of the compilation unit
490  */
491 static void be_main_loop(FILE *file_handle, const char *cup_name)
492 {
493         static const char suffix[] = ".prof";
494
495         int           i, num_birgs, stat_active = 0;
496         be_main_env_t env;
497         char          prof_filename[256];
498         be_irg_t      *birgs;
499         ir_graph      **irg_list, **backend_irg_list;
500         arch_env_t    *arch_env;
501
502         be_timing = (be_options.timing == BE_TIME_ON);
503
504         if (be_timing) {
505                 for (i = 0; i < T_LAST+1; ++i) {
506                         be_timers[i] = ir_timer_new();
507                 }
508         }
509
510         be_init_env(&env, file_handle);
511         env.cup_name = cup_name;
512
513         be_dbg_so(cup_name);
514         be_dbg_types();
515
516         arch_env = env.arch_env;
517
518         /* backend may provide an ordered list of irgs where code should be
519          * generated for */
520         irg_list         = NEW_ARR_F(ir_graph *, 0);
521         backend_irg_list = arch_env_get_backend_irg_list(arch_env, &irg_list);
522
523         /* we might need 1 birg more for instrumentation constructor */
524         num_birgs = backend_irg_list ? ARR_LEN(backend_irg_list) : get_irp_n_irgs();
525         birgs     = ALLOCAN(be_irg_t, num_birgs + 1);
526
527         be_info_init();
528
529         /* First: initialize all birgs */
530         for (i = 0; i < num_birgs; ++i) {
531                 ir_graph *irg = backend_irg_list ? backend_irg_list[i] : get_irp_irg(i);
532                 initialize_birg(&birgs[i], irg, &env);
533         }
534         arch_env_handle_intrinsics(arch_env);
535         DEL_ARR_F(irg_list);
536
537         /*
538                 Get the filename for the profiling data.
539                 Beware: '\0' is already included in sizeof(suffix)
540         */
541         sprintf(prof_filename, "%.*s%s\n", (int)(sizeof(prof_filename) - sizeof(suffix)), cup_name, suffix);
542
543         /*
544                 Next: Either instruments all irgs with profiling code
545                 or try to read in profile data for current translation unit.
546         */
547         if (be_options.opt_profile) {
548                 ir_graph *prof_init_irg = ir_profile_instrument(prof_filename, profile_default);
549                 initialize_birg(&birgs[num_birgs], prof_init_irg, &env);
550                 num_birgs++;
551         } else {
552                 ir_profile_read(prof_filename);
553         }
554
555 #ifdef FIRM_STATISTICS
556         stat_active = stat_is_active();
557 #endif /* FIRM_STATISTICS */
558
559         /* For all graphs */
560         for (i = 0; i < num_birgs; ++i) {
561                 be_irg_t *birg = &birgs[i];
562                 ir_graph *irg  = birg->irg;
563                 optimization_state_t state;
564
565                 /* set the current graph (this is important for several firm functions) */
566                 current_ir_graph = irg;
567
568                 stat_ev_if {
569                         stat_ev_ctx_push_fobj("bemain_irg", irg);
570                         be_stat_ev("bemain_insns_start", be_count_insns(irg));
571                         be_stat_ev("bemain_blocks_start", be_count_blocks(irg));
572                 }
573
574                 /* stop and reset timers */
575                 be_timer_push(T_OTHER);
576
577                 /* Verify the initial graph */
578                 be_timer_push(T_VERIFY);
579                 if (be_options.verify_option == BE_VERIFY_WARN) {
580                         irg_verify(irg, VERIFY_ENFORCE_SSA);
581                         be_check_dominance(irg);
582                 } else if (be_options.verify_option == BE_VERIFY_ASSERT) {
583                         assert(irg_verify(irg, VERIFY_ENFORCE_SSA) && "irg verification failed");
584                         assert(be_check_dominance(irg) && "Dominance verification failed");
585                 }
586                 be_timer_pop(T_VERIFY);
587
588                 /* get a code generator for this graph. */
589                 arch_env->impl->init_graph(irg);
590
591                 /* some transformations need to be done before abi introduce */
592                 if (arch_env->impl->before_abi != NULL)
593                         arch_env->impl->before_abi(irg);
594
595                 /* implement the ABI conventions. */
596                 if (!arch_env->custom_abi) {
597                         be_timer_push(T_ABI);
598                         be_abi_introduce(irg);
599                         be_timer_pop(T_ABI);
600                         dump(DUMP_ABI, irg, "abi");
601                 }
602
603                 /* we have to do cfopt+remove_critical_edges as we can't have Bad-blocks
604                  * or critical edges in the backend */
605                 optimize_cf(irg);
606                 remove_critical_cf_edges(irg);
607
608                 /* We often have dead code reachable through out-edges here. So for
609                  * now we rebuild edges (as we need correct user count for code
610                  * selection) */
611                 edges_deactivate(irg);
612                 edges_activate(irg);
613
614                 dump(DUMP_PREPARED, irg, "before-code-selection");
615
616                 if (be_options.verify_option == BE_VERIFY_WARN) {
617                         be_check_dominance(irg);
618                 } else if (be_options.verify_option == BE_VERIFY_ASSERT) {
619                         assert(be_check_dominance(irg) && "Dominance verification failed");
620                 }
621
622                 /* perform codeselection */
623                 be_timer_push(T_CODEGEN);
624                 if (arch_env->impl->prepare_graph != NULL)
625                         arch_env->impl->prepare_graph(irg);
626                 be_timer_pop(T_CODEGEN);
627
628                 if (be_options.verify_option == BE_VERIFY_WARN) {
629                         be_check_dominance(irg);
630                 } else if (be_options.verify_option == BE_VERIFY_ASSERT) {
631                         assert(be_check_dominance(irg) && "Dominance verification failed");
632                 }
633
634                 dump(DUMP_PREPARED, irg, "code-selection");
635
636                 be_timer_push(T_EXECFREQ);
637                 /**
638                  * Create execution frequencies from profile data or estimate some
639                  */
640                 if (ir_profile_has_data())
641                         birg->exec_freq = ir_create_execfreqs_from_profile(irg);
642                 else {
643                         /* TODO: edges are corrupt for EDGE_KIND_BLOCK after the local
644                          * optimize graph phase merges blocks in the x86 backend */
645                         edges_deactivate(irg);
646                         birg->exec_freq = compute_execfreq(irg, 10);
647                 }
648                 be_timer_pop(T_EXECFREQ);
649
650
651                 /* disabled for now, fails for EmptyFor.c and XXEndless.c */
652                 /* be_live_chk_compare(irg); */
653
654                 /* schedule the irg */
655                 be_timer_push(T_SCHED);
656                 be_schedule_graph(irg);
657                 be_timer_pop(T_SCHED);
658
659                 dump(DUMP_SCHED, irg, "sched");
660
661                 /* check schedule */
662                 be_timer_push(T_VERIFY);
663                 be_sched_verify(irg, be_options.verify_option);
664                 be_timer_pop(T_VERIFY);
665
666                 /* introduce patterns to assure constraints */
667                 be_timer_push(T_CONSTR);
668                 /* we switch off optimizations here, because they might cause trouble */
669                 save_optimization_state(&state);
670                 set_optimize(0);
671                 set_opt_cse(0);
672
673                 /* add Keeps for should_be_different constrained nodes  */
674                 /* beware: needs schedule due to usage of be_ssa_constr */
675                 assure_constraints(irg);
676                 be_timer_pop(T_CONSTR);
677
678                 dump(DUMP_SCHED, irg, "assured");
679
680                 /* stuff needs to be done after scheduling but before register allocation */
681                 be_timer_push(T_RA_PREPARATION);
682                 if (arch_env->impl->before_ra != NULL)
683                         arch_env->impl->before_ra(irg);
684                 be_timer_pop(T_RA_PREPARATION);
685
686                 /* connect all stack modifying nodes together (see beabi.c) */
687                 be_timer_push(T_ABI);
688                 be_abi_fix_stack_nodes(irg);
689                 be_timer_pop(T_ABI);
690
691                 dump(DUMP_SCHED, irg, "fix_stack");
692
693                 /* check schedule */
694                 be_timer_push(T_VERIFY);
695                 be_sched_verify(irg, be_options.verify_option);
696                 be_timer_pop(T_VERIFY);
697
698                 stat_ev_if {
699                         stat_ev_dbl("bemain_costs_before_ra",
700                                         be_estimate_irg_costs(irg, birg->exec_freq));
701                         be_stat_ev("bemain_insns_before_ra", be_count_insns(irg));
702                         be_stat_ev("bemain_blocks_before_ra", be_count_blocks(irg));
703                 }
704
705                 /* Do register allocation */
706                 be_allocate_registers(irg);
707
708 #ifdef FIRM_STATISTICS
709                 stat_ev_dbl("bemain_costs_before_ra", be_estimate_irg_costs(irg, birg->exec_freq));
710 #endif
711
712                 dump(DUMP_RA, irg, "ra");
713
714                 /* let the code generator prepare the graph for emitter */
715                 be_timer_push(T_FINISH);
716                 if (arch_env->impl->after_ra != NULL)
717                         arch_env->impl->after_ra(irg);
718                 be_timer_pop(T_FINISH);
719
720                 /* fix stack offsets */
721                 be_timer_push(T_ABI);
722                 be_abi_fix_stack_nodes(irg);
723                 be_remove_dead_nodes_from_schedule(irg);
724                 be_abi_fix_stack_bias(irg);
725                 be_timer_pop(T_ABI);
726
727                 dump(DUMP_SCHED, irg, "fix_stack_after_ra");
728
729                 be_timer_push(T_FINISH);
730                 if (arch_env->impl->finish != NULL)
731                         arch_env->impl->finish(irg);
732                 be_timer_pop(T_FINISH);
733
734                 dump(DUMP_FINAL, irg, "finish");
735
736                 stat_ev_if {
737                         be_stat_ev("bemain_insns_finish", be_count_insns(irg));
738                         be_stat_ev("bemain_blocks_finish", be_count_blocks(irg));
739                 }
740
741                 /* check schedule and register allocation */
742                 be_timer_push(T_VERIFY);
743                 if (be_options.verify_option == BE_VERIFY_WARN) {
744                         irg_verify(irg, VERIFY_ENFORCE_SSA);
745                         be_check_dominance(irg);
746                         be_verify_schedule(irg);
747                         be_verify_register_allocation(irg);
748                 } else if (be_options.verify_option == BE_VERIFY_ASSERT) {
749                         assert(irg_verify(irg, VERIFY_ENFORCE_SSA) && "irg verification failed");
750                         assert(be_check_dominance(irg) && "Dominance verification failed");
751                         assert(be_verify_schedule(irg) && "Schedule verification failed");
752                         assert(be_verify_register_allocation(irg)
753                                && "register allocation verification failed");
754
755                 }
756                 be_timer_pop(T_VERIFY);
757
758                 /* emit assembler code */
759                 be_timer_push(T_EMIT);
760                 if (arch_env->impl->emit != NULL)
761                         arch_env->impl->emit(irg);
762                 be_timer_pop(T_EMIT);
763
764                 dump(DUMP_FINAL, irg, "end");
765
766                 if (!arch_env->custom_abi) {
767                         be_timer_push(T_ABI);
768                         be_abi_free(irg);
769                         be_timer_pop(T_ABI);
770                 }
771
772                 restore_optimization_state(&state);
773
774                 be_timer_pop(T_OTHER);
775
776                 if (be_timing) {
777                         be_timer_id_t t;
778                         if (stat_ev_enabled) {
779                                 for (t = T_FIRST; t < T_LAST+1; ++t) {
780                                         char buf[128];
781                                         snprintf(buf, sizeof(buf), "bemain_time_%s",
782                                                  get_timer_name(t));
783                                         stat_ev_dbl(buf, ir_timer_elapsed_usec(be_timers[i]));
784                                 }
785                         } else {
786                                 printf("==>> IRG %s <<==\n",
787                                        get_entity_name(get_irg_entity(irg)));
788                                 for (t = T_FIRST; t < T_LAST+1; ++t) {
789                                         double val = ir_timer_elapsed_usec(be_timers[t]) / 1000.0;
790                                         printf("%-20s: %8.3lf msec\n", get_timer_name(t), val);
791                                 }
792                         }
793                         for (t = T_FIRST; t < T_LAST+1; ++t) {
794                                 ir_timer_stop(be_timers[t]);
795                                 ir_timer_reset(be_timers[t]);
796                         }
797                 }
798
799                 be_free_birg(irg);
800                 stat_ev_ctx_pop("bemain_irg");
801         }
802         ir_profile_free();
803         be_done_env(&env);
804
805         be_info_free();
806 }
807
808 /* Main interface to the frontend. */
809 void be_main(FILE *file_handle, const char *cup_name)
810 {
811         ir_timer_t *t = NULL;
812
813         if (be_options.timing == BE_TIME_ON) {
814                 t = ir_timer_new();
815
816                 if (ir_timer_enter_high_priority()) {
817                         fprintf(stderr, "Warning: Could not enter high priority mode.\n");
818                 }
819
820                 ir_timer_reset_and_start(t);
821         }
822
823 #ifdef FIRM_STATISTICS
824         if (be_options.statev) {
825                 const char *dot = strrchr(cup_name, '.');
826                 const char *pos = dot ? dot : cup_name + strlen(cup_name);
827                 char       *buf = ALLOCAN(char, pos - cup_name + 1);
828                 strncpy(buf, cup_name, pos - cup_name);
829                 buf[pos - cup_name] = '\0';
830
831                 be_options.statev = 1;
832                 stat_ev_begin(buf, be_options.filtev);
833                 stat_ev_ctx_push_str("bemain_compilation_unit", cup_name);
834         }
835 #endif
836
837         be_main_loop(file_handle, cup_name);
838
839         if (be_options.timing == BE_TIME_ON) {
840                 ir_timer_stop(t);
841                 ir_timer_leave_high_priority();
842                 stat_ev_if {
843                         stat_ev_dbl("bemain_backend_time", ir_timer_elapsed_msec(t));
844                 } else {
845                         double val = ir_timer_elapsed_usec(t) / 1000.0;
846                         printf("%-20s: %8.3lf msec\n", "BEMAINLOOP", val);
847                 }
848         }
849
850 #ifdef FIRM_STATISTICS
851         if (be_options.statev) {
852                 stat_ev_ctx_pop("bemain_compilation_unit");
853                 stat_ev_end();
854         }
855 #endif
856 }
857
858 static int do_lower_for_target(ir_prog *irp, void *context)
859 {
860         be_lower_for_target();
861         (void) context;
862         (void) irp;
863         return 0;
864 }
865
866 ir_prog_pass_t *lower_for_target_pass(const char *name)
867 {
868         ir_prog_pass_t *pass = XMALLOCZ(ir_prog_pass_t);
869         return def_prog_pass_constructor(pass,
870                                          name ? name : "lower_for_target",
871                                          do_lower_for_target);
872 }