X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_t.h;h=bed907cf6d8dbd178ccba2269697c22dcf769b76;hb=ca1b1615fbe23a4d5cf72e7be5d2ee831615cbc2;hp=8d7f90ccb74abcb249aca4befc635beb249ce030;hpb=7507003420c69d2a84403d07daf26a305c631b43;p=libfirm diff --git a/ir/be/be_t.h b/ir/be/be_t.h index 8d7f90ccb..bed907cf6 100644 --- a/ir/be/be_t.h +++ b/ir/be/be_t.h @@ -13,6 +13,7 @@ #include "irgraph.h" #include "be.h" +#include "bearch.h" #include "beirgmod.h" struct _be_options_t { @@ -25,7 +26,16 @@ struct _be_main_env_t { struct _be_node_factory_t *node_factory; struct _arch_env_t *arch_env; struct _be_options_t *options; - firm_dbg_module_t *dbg; + struct _arch_code_generator_t *cg; + struct _arch_irn_handler_t *phi_handler; + DEBUG_ONLY(firm_dbg_module_t *dbg;) +}; + +struct _be_irg_t { + ir_graph *irg; + struct _be_main_env_t *main_env; + struct _be_abi_irg_t *abi; + struct _arch_code_generator_t *cg; }; #endif