source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/src/Parameters_print.cpp @ 88

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1/*
2 * $Id: Parameters_print.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/include/Parameters.h"
9#include "Behavioural/include/XML.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace ifetch_unit {
17namespace ifetch_unit_glue {
18
19
20#undef  FUNCTION
21#define FUNCTION "Ifetch_unit_Glue::print"
22  std::string Parameters::print (uint32_t depth)
23  {
24    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
25
26    XML xml ("ifetch_unit_glue");
27
28    xml.balise_open("ifetch_unit_glue");
29//  xml.singleton_begin("size_address"); xml.attribut("value",toString(_size_address)); xml.singleton_end();
30    xml.balise_close();
31
32    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
33   
34    return xml.get_body(depth);
35  };
36
37#undef  FUNCTION
38#define FUNCTION "Ifetch_unit_Glue::operator<<"
39  std::ostream& operator<< (std::ostream& output_stream ,
40                            morpheo::behavioural::core::multi_front_end::front_end::ifetch_unit::ifetch_unit_glue::Parameters & x)
41  {
42    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
43
44    output_stream << x.print(0);
45   
46    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
47
48    return output_stream;
49  };
50
51}; // end namespace ifetch_unit_glue
52}; // end namespace ifetch_unit
53}; // end namespace front_end
54}; // end namespace multi_front_end
55}; // end namespace core
56
57}; // end namespace behavioural
58}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.