/* * $Id$ * * [ Description ] * */ #include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Prediction_unit_Glue/include/Parameters.h" #include "Behavioural/include/XML.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_front_end { namespace front_end { namespace prediction_unit { namespace prediction_unit_glue { #undef FUNCTION #define FUNCTION "Prediction_unit_Glue::print" std::string Parameters::print (uint32_t depth) { log_printf(FUNC,Prediction_unit_Glue,FUNCTION,"Begin"); XML xml ("prediction_unit_glue"); xml.balise_open("prediction_unit_glue"); xml.singleton_begin("nb_context "); xml.attribut("value",toString(_nb_context )); xml.singleton_end(); xml.singleton_begin("nb_decod_unit "); xml.attribut("value",toString(_nb_decod_unit )); xml.singleton_end(); // xml.singleton_begin("nb_ooo_engine "); xml.attribut("value",toString(_nb_ooo_engine )); xml.singleton_end(); // xml.singleton_begin("size_address "); xml.attribut("value",toString(_size_address )); xml.singleton_end(); xml.singleton_begin("nb_inst_branch_predict"); xml.attribut("value",toString(_nb_inst_branch_predict)); xml.singleton_end(); xml.singleton_begin("nb_inst_branch_decod "); xml.attribut("value",toString(_nb_inst_branch_decod )); xml.singleton_end(); xml.singleton_begin("nb_inst_branch_update "); xml.attribut("value",toString(_nb_inst_branch_update )); xml.singleton_end(); // xml.singleton_begin("nb_inst_decod "); xml.attribut("value",toString(_nb_inst_decod )); xml.singleton_end(); // xml.singleton_begin("nb_inst_update "); xml.attribut("value",toString(_nb_inst_update )); xml.singleton_end(); for (uint32_t i=0;i<_nb_context; i++) { xml. balise_open_begin("component"); xml. attribut("type","context"); xml. attribut("id" ,toString(i)); xml. balise_open_end(); xml. singleton_begin("nb_instruction "); xml.attribut("value",toString(_nb_instruction [i])); xml.singleton_end(); // xml. singleton_begin("size_depth "); xml.attribut("value",toString(_size_depth [i])); xml.singleton_end(); xml. balise_close(); } for (uint32_t i=0;i<_nb_decod_unit; i++) { xml. balise_open_begin("component"); xml. attribut("type","decod_unit"); xml. attribut("id" ,toString(i)); xml. balise_open_end(); xml. singleton_begin("nb_inst_decod "); xml.attribut("value",toString(_nb_inst_decod [i])); xml.singleton_end(); xml. balise_close(); } // for (uint32_t i=0;i<_nb_ooo_engine; i++) // { // xml. balise_open_begin("component"); // xml. attribut("type","ooo_engine"); // xml. attribut("id" ,toString(i)); // xml. balise_open_end(); // xml. singleton_begin("nb_inst_update "); xml.attribut("value",toString(_nb_inst_update [i])); xml.singleton_end(); // xml. balise_close(); // } xml.balise_close(); log_printf(FUNC,Prediction_unit_Glue,FUNCTION,"End"); return xml.get_body(depth); }; #undef FUNCTION #define FUNCTION "Prediction_unit_Glue::operator<<" std::ostream& operator<< (std::ostream& output_stream , morpheo::behavioural::core::multi_front_end::front_end::prediction_unit::prediction_unit_glue::Parameters & x) { log_printf(FUNC,Prediction_unit_Glue,FUNCTION,"Begin"); output_stream << x.print(0); log_printf(FUNC,Prediction_unit_Glue,FUNCTION,"End"); return output_stream; }; }; // end namespace prediction_unit_glue }; // end namespace prediction_unit }; // end namespace front_end }; // end namespace multi_front_end }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo