source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/src/Parameters_print.cpp @ 83

Last change on this file since 83 was 83, checked in by rosiere, 16 years ago

Add component : Context_State (manage miss prediction, exception , decod_enable, synchronisation instruction ...)

  • Property svn:keywords set to Id
File size: 2.8 KB
Line 
1/*
2 * $Id: Parameters_print.cpp 83 2008-05-09 18:00:21Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/include/Parameters.h"
9#include "Behavioural/include/XML.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace decod_unit {
17
18
19#undef  FUNCTION
20#define FUNCTION "Decod_unit::print"
21  std::string Parameters::print (uint32_t depth)
22  {
23    log_begin(Decod_unit,FUNCTION);
24
25    XML xml ("decod_unit");
26
27    xml.balise_open("decod_unit");
28    xml.singleton_begin("nb_context                   "); xml.attribut("value",toString(_nb_context                   )); xml.singleton_end();
29    xml.singleton_begin("nb_inst_decod                "); xml.attribut("value",toString(_nb_inst_decod                )); xml.singleton_end();
30    xml.singleton_begin("size_queue                   "); xml.attribut("value",toString(_size_queue                   )); xml.singleton_end();
31    xml.singleton_begin("size_general_data            "); xml.attribut("value",toString(_size_general_data            )); xml.singleton_end();
32    xml.singleton_begin("size_branch_update_prediction"); xml.attribut("value",toString(_size_branch_update_prediction)); xml.singleton_end();
33    xml.singleton_begin("nb_context_select            "); xml.attribut("value",toString(_nb_context_select            )); xml.singleton_end();
34    xml.singleton_begin("select_priority              "); xml.attribut("value",toString(_select_priority              )); xml.singleton_end();
35    xml.singleton_begin("select_load_balancing        "); xml.attribut("value",toString(_select_load_balancing        )); xml.singleton_end();
36
37    for (uint32_t i=0;i<_nb_context; i++)
38      {
39        xml. balise_open_begin("component");
40        xml.  attribut("type","context");
41        xml.  attribut("id"  ,toString(i));
42        xml. balise_open_end();
43        xml.  singleton_begin("nb_inst_fetch                "); xml.attribut("value",toString(_nb_inst_fetch                [i])); xml.singleton_end();
44        xml.  singleton_begin("nb_branch_speculated         "); xml.attribut("value",toString(_nb_branch_speculated         [i])); xml.singleton_end();
45
46        xml. balise_close();
47      }
48    xml.balise_close();
49
50    log_end(Decod_unit,FUNCTION);
51   
52    return xml.get_body(depth);
53  };
54
55#undef  FUNCTION
56#define FUNCTION "Decod_unit::operator<<"
57  std::ostream& operator<< (std::ostream& output_stream ,
58                            morpheo::behavioural::core::multi_front_end::front_end::decod_unit::Parameters & x)
59  {
60    log_begin(Decod_unit,FUNCTION);
61
62    output_stream << x.print(0);
63   
64    log_end(Decod_unit,FUNCTION);
65
66    return output_stream;
67  };
68
69}; // end namespace decod_unit
70}; // end namespace front_end
71}; // end namespace multi_front_end
72}; // end namespace core
73
74}; // end namespace behavioural
75}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.