#ifdef STATISTICS /* * $Id: Statistics_print.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Statistics.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace core { namespace multi_front_end { namespace front_end { namespace prediction_unit { namespace direction { namespace meta_predictor { namespace two_level_branch_predictor { namespace pattern_history_table { string Statistics::print (uint32_t depth , string component_stat) { log_printf(FUNC,Pattern_History_Table,"print","Begin"); string tab = string(depth,'\t'); ostringstream msg; msg << tab << "" << endl << print_body(depth+1) << component_stat << tab << "" << endl; log_printf(FUNC,Pattern_History_Table,"print","End"); return msg.str(); }; string Statistics::print (uint32_t depth) { string tab = string(depth,'\t'); ostringstream msg; msg << tab << "" << endl << print_body(depth+1) << endl << tab << "" << endl; return msg.str(); }; ostream& operator<< (ostream& output_stream , morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::direction::meta_predictor::two_level_branch_predictor::pattern_history_table::Statistics & x) { output_stream << x.print(0); return output_stream; }; }; // end namespace pattern_history_table }; // end namespace two_level_branch_predictor }; // end namespace meta_predictor }; // end namespace core }; // end namespace multi_front_end }; // end namespace front_end }; // end namespace prediction_unit }; // end namespace direction }; // end namespace behavioural }; // end namespace morpheo #endif