/* * $Id: Free_List_unit_allocation.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Free_List_unit/include/Free_List_unit.h" #include "Behavioural/include/Allocation.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_ooo_engine { namespace ooo_engine { namespace rename_unit { namespace register_translation_unit { namespace free_list_unit { #undef FUNCTION #define FUNCTION "Free_List_unit::allocation" void Free_List_unit::allocation ( #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics * param_statistics #else void #endif ) { log_printf(FUNC,Free_List_unit,FUNCTION,"Begin"); _component = new Component (_usage); Entity * entity = _component->set_entity (_name ,"Free_List_unit" #ifdef POSITION ,COMBINATORY #endif ); _interfaces = entity->set_interfaces(); // ~~~~~[ Interface : "" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Interface * interface = _interfaces->set_interface("" #ifdef POSITION ,IN ,SOUTH, "Generalist interface" #endif ); in_CLOCK = interface->set_signal_clk ("clock" ,1, CLOCK_VHDL_YES); in_NRESET = interface->set_signal_in ("nreset",1, RESET_VHDL_YES); // ~~~~~[ interface : "pop" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ { ALLOC1_INTERFACE("pop", IN, NORTH, "New destination register", _param->_nb_pop); ALLOC1_VALACK_IN ( in_POP_VAL ,VAL); ALLOC1_VALACK_OUT(out_POP_ACK ,ACK); ALLOC1_SIGNAL_IN ( in_POP_GPR_VAL ,"gpr_val" ,Tcontrol_t ,1 ); ALLOC1_SIGNAL_OUT(out_POP_GPR_NUM_REG,"gpr_num_reg",Tgeneral_address_t,_param->_size_general_register); ALLOC1_SIGNAL_IN ( in_POP_SPR_VAL ,"spr_val" ,Tcontrol_t ,1 ); ALLOC1_SIGNAL_OUT(out_POP_SPR_NUM_REG,"spr_num_reg",Tspecial_address_t,_param->_size_special_register); } // ~~~~~[ interface : "push_gpr" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ { ALLOC1_INTERFACE("push_gpr", IN, NORTH, "General register free", _param->_nb_push); ALLOC1_VALACK_IN ( in_PUSH_GPR_VAL ,VAL); ALLOC1_VALACK_OUT(out_PUSH_GPR_ACK ,ACK); ALLOC1_SIGNAL_IN ( in_PUSH_GPR_NUM_REG,"num_reg",Tgeneral_address_t,_param->_size_general_register); } // ~~~~~[ interface : "push_spr" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ { ALLOC1_INTERFACE("push_spr", IN, NORTH, "General register free", _param->_nb_push); ALLOC1_VALACK_IN ( in_PUSH_SPR_VAL ,VAL); ALLOC1_VALACK_OUT(out_PUSH_SPR_ACK ,ACK); ALLOC1_SIGNAL_IN ( in_PUSH_SPR_NUM_REG,"num_reg",Tspecial_address_t,_param->_size_special_register); } if (usage_is_set(_usage,USE_SYSTEMC)) { _gpr_list = new std::list [_param->_nb_bank]; _spr_list = new std::list [_param->_nb_bank]; internal_POP_ACK = new Tcontrol_t [_param->_nb_pop]; internal_POP_GPR_BANK = new uint32_t [_param->_nb_pop]; internal_POP_SPR_BANK = new uint32_t [_param->_nb_pop]; internal_PUSH_GPR_ACK = new Tcontrol_t [_param->_nb_push]; internal_PUSH_SPR_ACK = new Tcontrol_t [_param->_nb_push]; internal_PUSH_GPR_BANK = new uint32_t [_param->_nb_push]; internal_PUSH_SPR_BANK = new uint32_t [_param->_nb_push]; } // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #ifdef POSITION if (usage_is_set(_usage,USE_POSITION)) _component->generate_file(); #endif log_printf(FUNC,Free_List_unit,FUNCTION,"End"); }; }; // end namespace free_list_unit }; // end namespace register_translation_unit }; // end namespace rename_unit }; // end namespace ooo_engine }; // end namespace multi_ooo_engine }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo