X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcommon%2Ffirm.c;h=71ad31824c642e48fe9c75e5c88cb8953907a062;hb=6e5fd745c70d70f56fbe65df64983675897eb304;hp=85229707147cd2a6cd4341af088a6de2c7c280ff;hpb=dbae9f349e934f5c976a77186c0c3b7948a963a9;p=libfirm diff --git a/ir/common/firm.c b/ir/common/firm.c index 852297071..71ad31824 100644 --- a/ir/common/firm.c +++ b/ir/common/firm.c @@ -37,7 +37,6 @@ #include "ident_t.h" #include "firm.h" #include "irflag_t.h" -/* init functions are not public */ #include "tv_t.h" #include "tpop_t.h" #include "irprog_t.h" @@ -47,18 +46,15 @@ #include "irgraph_t.h" #include "type_t.h" #include "entity_t.h" -#include "opt_inline_t.h" -#include "scalar_replace.h" #include "firmstat.h" #include "irarch.h" -#include "reassoc_t.h" -#include "funccall_t.h" #include "irhooks.h" #include "iredges_t.h" #include "irmemory_t.h" -#include "tropt.h" +#include "opt_init.h" #include "debugger.h" #include "be_t.h" +#include "irtools.h" /* returns the firm root */ lc_opt_entry_t *firm_opt_get_root(void) @@ -93,9 +89,10 @@ void ir_init(const firm_parameter_t *param) /* initialize firm flags */ firm_init_flags(); /* initialize all ident stuff */ - init_ident(def_params.id_if, 1024); + init_ident(); /* enhanced statistics, need idents and hooks */ - firm_init_stat(def_params.enable_statistics); + if (def_params.enable_statistics != 0) + firm_init_stat(def_params.enable_statistics); /* Edges need hooks. */ init_edges(); /* create the type kinds. */ @@ -115,7 +112,9 @@ void ir_init(const firm_parameter_t *param) /* initialize all op codes an irnode can consist of */ init_op(); /* called once for each run of this library */ - firm_init_cons(def_params.initialize_local_func); + if (def_params.initialize_local_func != NULL) + ir_set_uninitialized_local_variable_func( + def_params.initialize_local_func); /* initialize reassociation */ firm_init_reassociation(); /* initialize function call optimization */ @@ -128,20 +127,20 @@ void ir_init(const firm_parameter_t *param) later. */ init_irprog_2(); /* Initialize the type module and construct some idents needed. */ - firm_init_type(def_params.builtin_dbg, def_params.cc_mask); + ir_init_type(); /* initialize the entity module */ - firm_init_entity(); - /* allocate a hash table. */ - init_type_identify(def_params.ti_if); + ir_init_entity(); /* class cast optimization */ firm_init_class_casts_opt(); /* memory disambiguation */ firm_init_memory_disambiguator(); + firm_init_loop_opt(); /* Init architecture dependent optimizations. */ - arch_dep_init(arch_dep_default_factory); arch_dep_set_opts(0); + init_irnode(); + #ifdef DEBUG_libfirm /* integrated debugger extension */ firm_init_debugger(); @@ -154,8 +153,6 @@ void ir_finish(void) for (i = get_irp_n_irgs() - 1; i >= 0; --i) free_ir_graph(get_irp_irg(i)); - for (i = get_irp_n_pseudo_irgs() - 1; i >= 0; --i) - free_ir_graph(get_irp_pseudo_irg(i)); free_type_entities(get_glob_type()); for (i = get_irp_n_types() - 1; i >= 0; --i) @@ -166,6 +163,9 @@ void ir_finish(void) free_ir_prog(); + ir_finish_entity(); + ir_finish_type(); + finish_tarval(); finish_mode(); finish_tpop();