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