source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/src/Read_unit.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: 2.3 KB
Line 
1/*
2 * $Id: Read_unit.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/include/Read_unit.h"
9
10namespace morpheo                    {
11namespace behavioural {
12namespace core {
13namespace multi_execute_loop {
14namespace execute_loop {
15namespace multi_read_unit {
16namespace read_unit {
17
18
19#undef  FUNCTION
20#define FUNCTION "Read_unit::Read_unit"
21  Read_unit::Read_unit
22  (
23#ifdef SYSTEMC
24   sc_module_name name,
25#else
26   string name,
27#endif
28#ifdef STATISTICS
29   morpheo::behavioural::Parameters_Statistics * param_statistics,
30#endif
31   morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::Parameters * param,
32   morpheo::behavioural::Tusage_t usage
33   ):
34    _name              (name)
35    ,_param            (param)
36    ,_usage            (usage)
37  {
38    log_printf(FUNC,Read_unit,FUNCTION,"Begin");
39
40    log_printf(INFO,Read_unit,FUNCTION,"Allocation");
41
42    allocation (
43#ifdef STATISTICS
44                param_statistics
45#endif
46                );
47
48#ifdef STATISTICS
49    if (_usage & USE_STATISTICS)
50      { 
51        log_printf(INFO,Read_unit,FUNCTION,"Allocation of statistics");
52
53        statistics_declaration(param_statistics);
54      }
55#endif
56
57#ifdef VHDL
58    if (_usage & USE_VHDL)
59      {
60        // generate the vhdl
61        log_printf(INFO,Read_unit,FUNCTION,"Generate the vhdl");
62       
63        vhdl();
64      }
65#endif
66
67#ifdef SYSTEMC
68    if (_usage & USE_SYSTEMC)
69      {
70        log_printf(INFO,Read_unit,FUNCTION,"Method - transition");
71
72        SC_METHOD (transition);
73        dont_initialize ();
74        sensitive << (*(in_CLOCK)).pos();
75       
76# ifdef SYSTEMCASS_SPECIFIC
77        // List dependency information
78# endif   
79       
80#endif
81      }
82    log_printf(FUNC,Read_unit,FUNCTION,"End");
83  };
84   
85#undef  FUNCTION
86#define FUNCTION "Read_unit::~Read_unit"
87  Read_unit::~Read_unit (void)
88  {
89    log_printf(FUNC,Read_unit,FUNCTION,"Begin");
90
91#ifdef STATISTICS
92    if (_usage & USE_STATISTICS)
93      {
94        log_printf(INFO,Read_unit,FUNCTION,"Generate Statistics file");
95       
96        delete _stat;
97      }
98#endif
99
100    log_printf(INFO,Read_unit,FUNCTION,"Deallocation");
101    deallocation ();
102
103    log_printf(FUNC,Read_unit,FUNCTION,"End");
104  };
105
106}; // end namespace read_unit
107}; // end namespace multi_read_unit
108}; // end namespace execute_loop
109}; // end namespace multi_execute_loop
110}; // end namespace core
111
112}; // end namespace behavioural
113}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.