#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/include/Ifetch_unit.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_front_end { namespace front_end { namespace ifetch_unit { #undef FUNCTION #define FUNCTION "Ifetch_unit::statistics_allocation" void Ifetch_unit::statistics_allocation (morpheo::behavioural::Parameters_Statistics * param_statistics) { log_printf(FUNC,Ifetch_unit,FUNCTION,"Begin"); _stat = new Stat (static_cast(_name), "Ifetch_unit", param_statistics); _stat->add_stat(_component_address_management->_stat); _stat->add_stat(_component_ifetch_queue->_stat); _stat->add_stat(_component_ifetch_unit_glue->_stat); log_printf(FUNC,Ifetch_unit,FUNCTION,"End"); }; }; // end namespace ifetch_unit }; // end namespace front_end }; // end namespace multi_front_end }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo #endif