source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/src/Parameters_print.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 995 bytes
Line 
1/*
2 * $Id: Parameters_print.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/RegisterFile/include/Parameters.h"
9#include "Behavioural/include/XML.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace registerfile {
15
16
17  std::string Parameters::print (uint32_t depth)
18  {
19    log_printf(FUNC,RegisterFile,"print","Begin");
20
21    std::string _return;
22
23    if (_instance == instance_RegisterFile_Monolithic)
24      _return = _param_registerfile_monolithic  ->print(depth);
25    else
26      _return = _param_registerfile_multi_banked->print(depth);
27
28    log_printf(FUNC,RegisterFile,"print","End");
29   
30    return _return;
31  };
32
33  std::ostream& operator<< (std::ostream& output_stream ,
34                            morpheo::behavioural::generic::registerfile::Parameters & x)
35  {
36    output_stream << x.print(0);
37   
38    return output_stream;
39  };
40
41}; // end namespace registerfile
42}; // end namespace generic
43
44}; // end namespace behavioural
45}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.