source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Special_Register_unit/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.4 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_OOO_Engine/OOO_Engine/Special_Register_unit/include/Parameters.h"
9#include "Behavioural/include/XML.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_ooo_engine {
15namespace ooo_engine {
16namespace special_register_unit {
17
18
19#undef  FUNCTION
20#define FUNCTION "Special_Register_unit::print"
21  std::string Parameters::print (uint32_t depth)
22  {
23    log_begin(Special_Register_unit,FUNCTION);
24
25    XML xml ("special_register_unit");
26
27    xml.balise_open("special_register_unit");
28//  xml.singleton_begin(""); xml.attribut("value",toString(_)); xml.singleton_end();
29    xml.balise_close();
30
31    log_end(Special_Register_unit,FUNCTION);
32   
33    return xml.get_body(depth);
34  };
35
36#undef  FUNCTION
37#define FUNCTION "Special_Register_unit::operator<<"
38  std::ostream& operator<< (std::ostream& output_stream ,
39                            morpheo::behavioural::core::multi_ooo_engine::ooo_engine::special_register_unit::Parameters & x)
40  {
41    log_begin(Special_Register_unit,FUNCTION);
42
43    output_stream << x.print(0);
44   
45    log_end(Special_Register_unit,FUNCTION);
46
47    return output_stream;
48  };
49
50}; // end namespace special_register_unit
51}; // end namespace ooo_engine
52}; // end namespace multi_ooo_engine
53}; // end namespace core
54
55}; // end namespace behavioural
56}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.