X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbera.c;h=a7584a52c30b451d36ca99f22982fb9aaa8ce411;hb=1209ae49db1b42e9d39269eb3a86b187f0c263d9;hp=8c1e6252b5f140332e47f5f58390af2497e92fcc;hpb=1ce363f80e6a204d4011f85813362d9bd1d0e7e4;p=libfirm diff --git a/ir/be/bera.c b/ir/be/bera.c index 8c1e6252b..a7584a52c 100644 --- a/ir/be/bera.c +++ b/ir/be/bera.c @@ -22,49 +22,45 @@ * @brief Base routines for register allocation. * @author Sebastian Hack * @date 22.11.2004 - * @version $Id$ */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include #include "pset.h" -#include "impl.h" #include "irnode.h" #include "irmode.h" #include "irdom.h" #include "iredges.h" +#include "irtools.h" #include "bera.h" #include "beutil.h" -#include "besched_t.h" +#include "besched.h" #include "belive_t.h" #include "bemodule.h" -be_ra_timer_t *global_ra_timer = NULL; - /** The list of register allocators */ static be_module_list_entry_t *register_allocators = NULL; static be_ra_t *selected_allocator = NULL; void be_register_allocator(const char *name, be_ra_t *allocator) { - if(selected_allocator == NULL) + if (selected_allocator == NULL) selected_allocator = allocator; be_add_module_to_list(®ister_allocators, name, allocator); } -void be_allocate_registers(be_irg_t *birg) +void be_allocate_registers(ir_graph *irg) { assert(selected_allocator != NULL); - if(selected_allocator != NULL) { - selected_allocator->allocate(birg); + if (selected_allocator != NULL) { + selected_allocator->allocate(irg); } } +BE_REGISTER_MODULE_CONSTRUCTOR(be_init_ra) void be_init_ra(void) { lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be"); @@ -72,4 +68,3 @@ void be_init_ra(void) be_add_module_list_opt(be_grp, "regalloc", "register allocator", ®ister_allocators, (void**) &selected_allocator); } -BE_REGISTER_MODULE_CONSTRUCTOR(init_be_ra);