source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/src/Write_queue.cpp @ 115

Last change on this file since 115 was 115, checked in by rosiere, 15 years ago

1) Write queue with mealy
2) Network : fix bug
3) leak memory

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1/*
2 * $Id: Write_queue.cpp 115 2009-04-20 21:29:17Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/include/Write_queue.h"
9
10namespace morpheo                    {
11namespace behavioural {
12namespace core {
13namespace multi_execute_loop {
14namespace execute_loop {
15namespace multi_write_unit {
16namespace write_unit {
17namespace write_queue {
18
19
20#undef  FUNCTION
21#define FUNCTION "Write_queue::Write_queue"
22  Write_queue::Write_queue
23  (
24#ifdef SYSTEMC
25   sc_module_name name,
26#else
27   string name,
28#endif
29#ifdef STATISTICS
30   morpheo::behavioural::Parameters_Statistics * param_statistics,
31#endif
32   morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_write_unit::write_unit::write_queue::Parameters * param,
33   morpheo::behavioural::Tusage_t usage
34   ):
35    _name              (name)
36    ,_param            (param)
37    ,_usage            (usage)
38  {
39    log_begin(Write_queue,FUNCTION);
40
41// #if DEBUG_Write_queue == true
42//     log_printf(INFO,Write_queue,FUNCTION,_("<%s> Parameters"),_name.c_str());
43
44//     std::cout << *param << std::endl;
45// #endif   
46
47    log_printf(INFO,Write_queue,FUNCTION,_("<%s> Allocation"),_name.c_str());
48    allocation ();
49
50#ifdef STATISTICS
51    if (usage_is_set(_usage,USE_STATISTICS))
52      { 
53        log_printf(INFO,Write_queue,FUNCTION,_("<%s> Allocation of statistics"),_name.c_str());
54
55        statistics_declaration(param_statistics);
56      }
57#endif
58
59#ifdef VHDL
60    if (usage_is_set(_usage,USE_VHDL))
61      {
62        // generate the vhdl
63        log_printf(INFO,Write_queue,FUNCTION,_("<%s> Generate the vhdl"),_name.c_str());
64       
65        vhdl();
66      }
67#endif
68
69#ifdef SYSTEMC
70    if (usage_is_set(_usage,USE_SYSTEMC))
71      {
72        log_printf(INFO,Write_queue,FUNCTION,_("<%s> Method - transition"),_name.c_str());
73
74        SC_METHOD (transition);
75        dont_initialize ();
76        sensitive << (*(in_CLOCK)).pos();
77       
78# ifdef SYSTEMCASS_SPECIFIC
79        // List dependency information
80# endif   
81
82        log_printf(INFO,Write_queue,FUNCTION,_("<%s> Method - genMoore"),_name.c_str());
83
84        SC_METHOD (genMoore);
85        dont_initialize ();
86        sensitive << (*(in_CLOCK)).neg(); // need internal register
87       
88# ifdef SYSTEMCASS_SPECIFIC
89        // List dependency information
90# endif   
91
92        if (_param->_queue_scheme == WRITE_QUEUE_SCHEME_MEALY)
93          {
94        log_printf(INFO,Write_queue,FUNCTION,"Method - genMealy");
95
96        SC_METHOD (genMealy);
97        dont_initialize ();
98        sensitive << (*(in_CLOCK)).neg(); // need internal register
99        for (uint32_t i=0; i<_param->_nb_gpr_write; ++i)
100          sensitive << (*(in_GPR_WRITE_ACK [i]));
101        for (uint32_t i=0; i<_param->_nb_spr_write; ++i)
102          sensitive << (*(in_SPR_WRITE_ACK [i]));       
103
104# ifdef SYSTEMCASS_SPECIFIC
105        // List dependency information
106# endif   
107          }
108
109#endif
110      }
111    log_end(Write_queue,FUNCTION);
112  };
113   
114#undef  FUNCTION
115#define FUNCTION "Write_queue::~Write_queue"
116  Write_queue::~Write_queue (void)
117  {
118    log_begin(Write_queue,FUNCTION);
119
120#ifdef STATISTICS
121    if (usage_is_set(_usage,USE_STATISTICS))
122      {
123        log_printf(INFO,Write_queue,FUNCTION,_("<%s> Generate Statistics file"),_name.c_str());
124       
125        delete _stat;
126      }
127#endif
128
129    log_printf(INFO,Write_queue,FUNCTION,_("<%s> Deallocation"),_name.c_str());
130    deallocation ();
131
132    log_end(Write_queue,FUNCTION);
133  };
134
135}; // end namespace write_queue
136}; // end namespace write_unit
137}; // end namespace multi_write_unit
138}; // end namespace execute_loop
139}; // end namespace multi_execute_loop
140}; // end namespace core
141
142}; // end namespace behavioural
143}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.