/* * $Id: Parameters_print.cpp 139 2010-07-30 14:47:27Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/include/Parameters.h" #include "Behavioural/include/XML.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_ooo_engine { namespace ooo_engine { namespace rename_unit { namespace register_translation_unit { #undef FUNCTION #define FUNCTION "Register_translation_unit::print" std::string Parameters::print (uint32_t depth) { log_printf(FUNC,Register_translation_unit,FUNCTION,"Begin"); XML xml ("register_translation_unit"); xml.balise_open("register_translation_unit"); xml.singleton_begin("nb_front_end "); xml.attribut("value",toString(_nb_front_end )); xml.singleton_end(); xml.singleton_begin("nb_general_register "); xml.attribut("value",toString(_nb_general_register)); xml.singleton_end(); xml.singleton_begin("nb_special_register "); xml.attribut("value",toString(_nb_special_register)); xml.singleton_end(); xml.singleton_begin("rat_scheme "); xml.attribut("value",toString(_rat_scheme )); xml.singleton_end(); xml.singleton_begin("nb_inst_insert "); xml.attribut("value",toString(_nb_inst_insert )); xml.singleton_end(); xml.singleton_begin("nb_inst_retire "); xml.attribut("value",toString(_nb_inst_retire )); xml.singleton_end(); xml.singleton_begin("nb_reg_free "); xml.attribut("value",toString(_nb_reg_free )); xml.singleton_end(); xml.singleton_begin("nb_bank "); xml.attribut("value",toString(_nb_bank )); xml.singleton_end(); // xml.singleton_begin("size_read_counter "); xml.attribut("value",toString(_size_read_counter )); xml.singleton_end(); for (uint32_t i=0;i<_nb_front_end; i++) { xml. balise_open_begin("component"); xml. attribut("type","front_end"); xml. attribut("id" ,toString(i)); xml. balise_open_end(); xml. singleton_begin("nb_context "); xml.attribut("value",toString(_nb_context [i] )); xml.singleton_end(); for (uint32_t j=0;j<_nb_context[i]; j++) { xml. balise_open_begin("component"); xml. attribut("type","context"); xml. attribut("id" ,toString(j)); xml. balise_open_end(); xml. singleton_begin("nb_branch_speculated"); xml.attribut("value",toString(_nb_branch_speculated[i][j])); xml.singleton_end(); xml. balise_close(); } xml. balise_close(); } xml.balise_close(); log_printf(FUNC,Register_translation_unit,FUNCTION,"End"); return xml.get_body(depth); }; #undef FUNCTION #define FUNCTION "Register_translation_unit::operator<<" std::ostream& operator<< (std::ostream& output_stream , morpheo::behavioural::core::multi_ooo_engine::ooo_engine::rename_unit::register_translation_unit::Parameters & x) { log_printf(FUNC,Register_translation_unit,FUNCTION,"Begin"); output_stream << x.print(0); log_printf(FUNC,Register_translation_unit,FUNCTION,"End"); return output_stream; }; }; // end namespace register_translation_unit }; // end namespace rename_unit }; // end namespace ooo_engine }; // end namespace multi_ooo_engine }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo