/* * $Id: Parameters.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/include/Parameters.h" #include "Common/include/Max.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_execute_loop { namespace execute_loop { namespace network { namespace read_unit_to_execution_unit { #undef FUNCTION #define FUNCTION "Read_unit_to_Execution_unit::Parameters" Parameters::Parameters (uint32_t nb_read_unit , uint32_t * nb_read_unit_port , uint32_t nb_execute_unit , uint32_t * nb_execute_unit_port , uint32_t nb_context , uint32_t nb_front_end , uint32_t nb_ooo_engine , uint32_t nb_packet , uint32_t size_general_data , uint32_t size_special_data , uint32_t nb_general_register , uint32_t nb_special_register , uint32_t size_store_queue , uint32_t size_load_queue , Tpriority_t priority , bool *** table_routing , bool ** table_execute_type , bool ** table_execute_thread , bool is_toplevel ) { log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"Begin"); _nb_read_unit = nb_read_unit ; _nb_read_unit_port = nb_read_unit_port ; _nb_execute_unit = nb_execute_unit ; _nb_execute_unit_port = nb_execute_unit_port; _nb_context = nb_context ; _nb_front_end = nb_front_end ; _nb_ooo_engine = nb_ooo_engine ; _nb_packet = nb_packet ; _nb_general_register = nb_general_register ; _nb_special_register = nb_special_register ; _priority = priority ; _table_routing = table_routing ; _table_execute_type = table_execute_type ; _table_execute_thread = table_execute_thread; _max_nb_read_unit_port = max(_nb_read_unit_port, _nb_read_unit); _max_nb_execute_unit_port= max(_nb_execute_unit_port, _nb_execute_unit); _nb_thread = get_nb_thread (nb_context, nb_front_end, nb_ooo_engine); _nb_load_store_unit = 0; for (uint32_t i=0; i 0; _have_port_front_end_id = _size_front_end_id > 0; _have_port_ooo_engine_id = _size_ooo_engine_id > 0; _have_port_rob_ptr = _size_rob_ptr > 0; _have_port_load_queue_ptr= _size_load_queue_ptr> 0; copy(); } log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"End"); }; // #undef FUNCTION // #define FUNCTION "Read_unit_to_Execution_unit::Parameters (copy)" // Parameters::Parameters (Parameters & param) // { // log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"Begin"); // test(); // log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"End"); // }; #undef FUNCTION #define FUNCTION "Read_unit_to_Execution_unit::~Parameters" Parameters::~Parameters () { log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"Begin"); log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Read_unit_to_Execution_unit::copy" void Parameters::copy (void) { log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"Begin"); log_printf(FUNC,Read_unit_to_Execution_unit,FUNCTION,"End"); }; }; // end namespace read_unit_to_execution_unit }; // end namespace network }; // end namespace execute_loop }; // end namespace multi_execute_loop }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo