X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbemodule.c;h=02331c6fe93ccbc4f553af39ece523135f6ee05f;hb=9c456297552bb20d04e2fe76fd4a712afa8aa63f;hp=2c84a708ac2d86d6e3af0bd2a562bd296144f1d6;hpb=39f3a8dbd0f00f90b7b12a849d1bf7b9c1329479;p=libfirm diff --git a/ir/be/bemodule.c b/ir/be/bemodule.c index 2c84a708a..02331c6fe 100644 --- a/ir/be/bemodule.c +++ b/ir/be/bemodule.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -22,62 +22,74 @@ * @brief Backend module interface. * @author Matthias Braun * @date 29.09.2005 - * @version $Id$ */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif /* HAVE_CONFIG_H */ #include +#include #include "bemodule_t.h" #include "xmalloc.h" +void be_init_abi(void); void be_init_sched(void); void be_init_blocksched(void); void be_init_spill(void); +void be_init_spilloptions(void); void be_init_listsched(void); -void be_init_schedrss(void); +void be_init_sched_rand(void); +void be_init_sched_normal(void); +void be_init_sched_regpress(void); +void be_init_sched_trace(void); +void be_init_sched_trivial(void); void be_init_chordal(void); +void be_init_pbqp_coloring(void); void be_init_chordal_main(void); -void be_init_copycoal(void); +void be_init_chordal_common(void); +void be_init_copyopt(void); +void be_init_copyheur(void); void be_init_copyheur2(void); -void be_init_copyheur3(void); +void be_init_copyheur4(void); +void be_init_copyilp2(void); +void be_init_copynone(void); void be_init_copystat(void); +void be_init_daemelspill(void); +void be_init_dwarf(void); void be_init_arch_ia32(void); -void be_init_arch_ppc32(void); -void be_init_arch_mips(void); void be_init_arch_arm(void); +void be_init_arch_amd64(void); void be_init_arch_sta(void); -void be_init_ilpsched(void); +void be_init_arch_sparc(void); +void be_init_arch_TEMPLATE(void); void be_init_copyilp(void); -void be_init_javacoal(void); +void be_init_peephole(void); void be_init_ra(void); void be_init_spillbelady(void); -void be_init_spillmorgan(void); -void be_init_spillremat(void); void be_init_ssaconstr(void); -void be_init_ifg(void); +void be_init_pref_alloc(void); void be_init_irgmod(void); void be_init_loopana(void); void be_init_spillslots(void); void be_init_live(void); void be_init_state(void); +void be_init_pbqp(void); void be_quit_copystat(void); +void be_quit_pbqp(void); /** - * Driver for module intialization. + * Driver for module initialization. * Call your module initialization function here. */ void be_init_modules(void) { - static int run_once = 0; + static bool run_once = false; if (run_once) return; - run_once = 1; + run_once = true; + be_init_abi(); be_init_irgmod(); be_init_loopana(); be_init_live(); @@ -85,44 +97,58 @@ void be_init_modules(void) be_init_sched(); be_init_blocksched(); be_init_spill(); + be_init_spilloptions(); + be_init_listsched(); - be_init_schedrss(); + be_init_sched_normal(); + be_init_sched_trace(); + be_init_sched_regpress(); + be_init_sched_rand(); + be_init_sched_trivial(); + be_init_chordal_main(); + be_init_chordal_common(); be_init_chordal(); - be_init_copycoal(); + be_init_copyopt(); + be_init_copyheur4(); + be_init_copyheur(); be_init_copyheur2(); + be_init_copyilp2(); + be_init_pbqp_coloring(); + be_init_copynone(); be_init_copystat(); + be_init_peephole(); be_init_ra(); be_init_spillbelady(); - be_init_spillmorgan(); + be_init_daemelspill(); + be_init_dwarf(); be_init_ssaconstr(); + be_init_pref_alloc(); be_init_state(); - be_init_ifg(); be_init_arch_ia32(); - be_init_arch_ppc32(); - be_init_arch_mips(); be_init_arch_arm(); + be_init_arch_sparc(); + be_init_arch_amd64(); + be_init_arch_TEMPLATE(); -#ifdef WITH_ILP - be_init_ilpsched(); be_init_copyilp(); - be_init_spillremat(); -#endif /* WITH_ILP */ - -#ifdef WITH_JVM - be_init_copyheur3(); - be_init_javacoal(); -#endif /* WITH_JVM */ #if PLUGIN_IR_BE_STA be_init_arch_sta(); #endif /* PLUGIN_IR_BE_STA */ + +#ifdef FIRM_GRGEN_BE + be_init_pbqp(); +#endif } void be_quit_modules(void) { be_quit_copystat(); +#ifdef FIRM_GRGEN_BE + be_quit_pbqp(); +#endif } //--------------------------------------------------------------------------- @@ -139,11 +165,13 @@ typedef struct module_opt_data_t { static int set_opt_module(const char *name, lc_opt_type_t type, void *data, size_t length, ...) { - module_opt_data_t *moddata = data; + module_opt_data_t *moddata = (module_opt_data_t*)data; int res = 0; va_list args; const char *opt; const be_module_list_entry_t *module; + (void) type; + (void) name; va_start(args, length); opt = va_arg(args, const char*); @@ -163,11 +191,14 @@ static int set_opt_module(const char *name, lc_opt_type_t type, void *data, /** * Dump the names of all registered module options. */ -int dump_opt_module(char *buf, size_t buflen, const char *name, - lc_opt_type_t type, void *data, size_t length) +static int dump_opt_module(char *buf, size_t buflen, const char *name, + lc_opt_type_t type, void *data, size_t length) { - module_opt_data_t *moddata = data; + module_opt_data_t *moddata = (module_opt_data_t*)data; const be_module_list_entry_t *module; + (void) name; + (void) type; + (void) length; for (module = *(moddata->list_head); module != NULL; module = module->next) { if (module->data == *(moddata->var)) { @@ -183,15 +214,18 @@ int dump_opt_module(char *buf, size_t buflen, const char *name, /** * Dump the values of all register module options. */ -int dump_opt_module_vals(char *buf, size_t buflen, const char *name, - lc_opt_type_t type, void *data, size_t len) +static int dump_opt_module_vals(char *buf, size_t buflen, const char *name, + lc_opt_type_t type, void *data, size_t len) { - module_opt_data_t *moddata = data; + module_opt_data_t *moddata = (module_opt_data_t*)data; char *p = buf; const be_module_list_entry_t *module; + (void) name; + (void) type; + (void) len; for (module = *(moddata->list_head); module != NULL; module = module->next) { - size_t len = strlen(module->name); + size_t name_len = strlen(module->name); if (module != *(moddata->list_head)) { p = strncat(p, ", ", buflen - 1); @@ -200,10 +234,10 @@ int dump_opt_module_vals(char *buf, size_t buflen, const char *name, p = strncat(p, module->name, buflen - 1); - if (len >= buflen) + if (name_len >= buflen) break; - buflen -= len; + buflen -= name_len; } return strlen(buf); @@ -215,9 +249,7 @@ int dump_opt_module_vals(char *buf, size_t buflen, const char *name, void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name, void *module) { - be_module_list_entry_t *entry; - - entry = xmalloc(sizeof(entry[0])); + be_module_list_entry_t *entry = XMALLOC(be_module_list_entry_t); entry->name = name; entry->data = module; entry->next = *list_head; @@ -232,9 +264,7 @@ void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name, be_module_list_entry_t * const * list_head, void **var) { - module_opt_data_t *moddata; - - moddata = xmalloc(sizeof(moddata[0])); + module_opt_data_t *moddata = XMALLOC(module_opt_data_t); moddata->var = var; moddata->list_head = list_head;