/* * $Id: Address_management.cpp 131 2009-07-08 18:40:08Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Address_management/include/Address_management.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_front_end { namespace front_end { namespace ifetch_unit { namespace address_management { #undef FUNCTION #define FUNCTION "Address_management::Address_management" Address_management::Address_management ( #ifdef SYSTEMC sc_module_name name, #else string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics * param_statistics, #endif morpheo::behavioural::core::multi_front_end::front_end::ifetch_unit::address_management::Parameters * param, morpheo::behavioural::Tusage_t usage ): _name (name) ,_param (param) ,_usage (usage) { log_printf(FUNC,Address_management,FUNCTION,"Begin"); // #if DEBUG_Address_management == true // log_printf(INFO,Address_management,FUNCTION,_("<%s> Parameters"),_name.c_str()); // std::cout << *param << std::endl; // #endif log_printf(INFO,Address_management,FUNCTION,"Allocation"); allocation ( #ifdef STATISTICS param_statistics #endif ); #ifdef STATISTICS if (usage_is_set(_usage,USE_STATISTICS)) { log_printf(INFO,Address_management,FUNCTION,"Allocation of statistics"); statistics_allocation(param_statistics); } #endif #ifdef VHDL if (usage_is_set(_usage,USE_VHDL)) { // generate the vhdl log_printf(INFO,Address_management,FUNCTION,"Generate the vhdl"); vhdl(); } #endif #ifdef SYSTEMC if (usage_is_set(_usage,USE_SYSTEMC)) { #ifdef SYSTEMCASS_SPECIFIC constant(); #else log_printf(INFO,Address_management,FUNCTION,"Method - constant"); SC_METHOD (constant); // dont_initialize (); # ifdef SYSTEMCASS_SPECIFIC // List dependency information # endif #endif log_printf(INFO,Address_management,FUNCTION,"Method - transition"); SC_METHOD (transition); dont_initialize (); sensitive << (*(in_CLOCK)).pos(); # ifdef SYSTEMCASS_SPECIFIC // List dependency information # endif log_printf(INFO,Address_management,FUNCTION,"Method - genMoore"); SC_METHOD (genMoore); dont_initialize (); sensitive << (*(in_CLOCK)).neg(); // use internal register # ifdef SYSTEMCASS_SPECIFIC // List dependency information # endif #endif } log_printf(FUNC,Address_management,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Address_management::~Address_management" Address_management::~Address_management (void) { log_printf(FUNC,Address_management,FUNCTION,"Begin"); #ifdef STATISTICS if (usage_is_set(_usage,USE_STATISTICS)) { statistics_deallocation(); } #endif log_printf(INFO,Address_management,FUNCTION,"Deallocation"); deallocation (); log_printf(FUNC,Address_management,FUNCTION,"End"); }; }; // end namespace address_management }; // end namespace ifetch_unit }; // end namespace front_end }; // end namespace multi_front_end }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo