X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbemain.c;h=17b486d60b694c832d91a73eb6b01230c2d4afa9;hb=7438ae082c9ec7658ccd006b40aa62084aedca2d;hp=41ca3502fe0efb0aea7afd2ca9c125b56ad061ce;hpb=e9d5686e6022c8ef5eccfc4b9828e08f395dc899;p=libfirm diff --git a/ir/be/bemain.c b/ir/be/bemain.c index 41ca3502f..17b486d60 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -30,7 +30,6 @@ #include "bearch.h" #include "firm/bearch_firm.h" #include "ia32/bearch_ia32.h" -#include "TEMPLATE/bearch_TEMPLATE.h" #include "be_t.h" #include "benumb_t.h" @@ -51,7 +50,7 @@ #include "becopystat.h" #include "bessadestr.h" #include "beabi.h" - +#include "belower.h" #define DUMP_INITIAL (1 << 0) #define DUMP_ABI (1 << 1) @@ -105,7 +104,6 @@ static const lc_opt_enum_const_ptr_items_t ra_items[] = { static const lc_opt_enum_const_ptr_items_t isa_items[] = { { "firm", &firm_isa }, { "ia32", &ia32_isa_if }, - { "TEMPLATE",&TEMPLATE_isa_if }, { NULL, NULL } }; @@ -126,8 +124,10 @@ static const lc_opt_table_entry_t be_main_options[] = { LC_OPT_ENT_ENUM_PTR("ra", "register allocator", &ra_var), LC_OPT_ENT_ENUM_PTR("isa", "the instruction set architecture", &isa_var), +#ifdef WITH_ILP LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)), LC_OPT_ENT_STR ("ilp.solver", "the ilp solver name", be_options.ilp_solver, sizeof(be_options.ilp_solver)), +#endif /* WITH_ILP */ { NULL } }; @@ -182,14 +182,14 @@ static be_main_env_t *be_init_env(be_main_env_t *env) /* Register the irn handler of the architecture */ if (arch_isa_get_irn_handler(env->arch_env->isa)) - arch_env_add_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa)); + arch_env_push_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa)); /* * Register the node handler of the back end infrastructure. * This irn handler takes care of the platform independent * spill, reload and perm nodes. */ - arch_env_add_irn_handler(env->arch_env, &be_node_irn_handler); + arch_env_push_irn_handler(env->arch_env, &be_node_irn_handler); return env; } @@ -266,6 +266,9 @@ static void be_main_loop(FILE *file_handle) /* create the code generator and generate code. */ prepare_graph(&birg); + /* some transformations need to be done before abi introduce */ + arch_code_generator_before_abi(birg.cg); + /* implement the ABI conventions. */ birg.abi = be_abi_introduce(&birg); dump(DUMP_ABI, irg, "-abi", dump_ir_block_graph); @@ -287,14 +290,16 @@ static void be_main_loop(FILE *file_handle) dump(DUMP_PREPARED, irg, "-prepared", dump_ir_block_graph); + /* add Keeps for should_be_different constrained nodes */ + assure_constraints(&birg); + /* Schedule the graphs. */ arch_code_generator_before_sched(birg.cg); - list_sched(isa, irg); - - dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched); + list_sched(env.arch_env, irg); /* connect all stack modifying nodes together (see beabi.c) */ be_abi_fix_stack_nodes(birg.abi); + dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched); /* Verify the schedule */ sched_verify_irg(irg); @@ -304,8 +309,8 @@ static void be_main_loop(FILE *file_handle) ra->allocate(&birg); dump(DUMP_RA, irg, "-ra", dump_ir_block_graph_sched); - /* This is not ready yet: */ - /* be_abi_fix_stack_bias(birg.abi); */ + arch_code_generator_after_ra(birg.cg); + be_abi_fix_stack_bias(birg.abi); arch_code_generator_done(birg.cg); dump(DUMP_FINAL, irg, "-end", dump_ir_block_graph_sched);