source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Multiplier/src/Multiplier.cpp @ 116

Last change on this file since 116 was 116, checked in by moulu, 15 years ago

1) added a generic multiplier (systemC isn't working with 8bits)
2) added a partial functionnal unit vhdl.

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1/*
2 * $Id: Multiplier.cpp 116 2009-04-30 13:51:41Z moulu $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/Multiplier/include/Multiplier.h"
9
10namespace morpheo                    {
11namespace behavioural {
12namespace generic {
13namespace multiplier {
14
15
16#undef  FUNCTION
17#define FUNCTION "Multiplier::Multiplier"
18  Multiplier::Multiplier
19  (
20#ifdef SYSTEMC
21   sc_module_name name,
22#else
23   string name,
24#endif
25#ifdef STATISTICS
26   morpheo::behavioural::Parameters_Statistics * param_statistics,
27#endif
28   morpheo::behavioural::generic::multiplier::Parameters * param,
29   morpheo::behavioural::Tusage_t usage
30   ):
31    _name              (name)
32    ,_param            (param)
33    ,_usage            (usage)
34  {
35    log_begin(Multiplier,FUNCTION);
36
37    usage_environment(_usage);
38
39    log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Allocation"),_name.c_str());
40
41    allocation (
42#ifdef STATISTICS
43                param_statistics
44#endif
45                );
46
47#ifdef STATISTICS
48    if (usage_is_set(_usage,USE_STATISTICS))
49      { 
50        log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Allocation of statistics"),_name.c_str());
51
52        statistics_allocation(param_statistics);
53      }
54#endif
55
56#ifdef VHDL
57    if (usage_is_set(_usage,USE_VHDL))
58      {
59        // generate the vhdl
60        log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Generate the vhdl"),_name.c_str());
61       
62        vhdl();
63      }
64#endif
65
66#ifdef SYSTEMC
67    if (usage_is_set(_usage,USE_SYSTEMC))
68      {
69        log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Method - transition"),_name.c_str());
70
71        SC_METHOD (transition);
72        dont_initialize ();
73        sensitive << (*(in_CLOCK)).pos();
74       
75# ifdef SYSTEMCASS_SPECIFIC
76        // List dependency information
77# endif   
78
79        log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Method - genMealy"),_name.c_str());
80
81        SC_METHOD (genMealy);
82        dont_initialize ();
83        sensitive << (*(in_CLOCK)).neg(); // need internal register
84
85        if (_param->_latency == 0)
86          sensitive << (*(in_MULTIPLIER_DATA_IN_0))
87                    << (*(in_MULTIPLIER_DATA_IN_1));
88       
89# ifdef SYSTEMCASS_SPECIFIC
90        // List dependency information
91# endif   
92       
93#endif
94      }
95    log_end(Multiplier,FUNCTION);
96  };
97   
98#undef  FUNCTION
99#define FUNCTION "Multiplier::~Multiplier"
100  Multiplier::~Multiplier (void)
101  {
102    log_begin(Multiplier,FUNCTION);
103
104#ifdef STATISTICS
105    if (usage_is_set(_usage,USE_STATISTICS))
106      {
107        statistics_deallocation();
108      }
109#endif
110
111    log_printf(INFO,Multiplier,FUNCTION,_("<%s> : Deallocation"),_name.c_str());
112    deallocation ();
113
114    log_end(Multiplier,FUNCTION);
115  };
116
117}; // end namespace multiplier
118}; // end namespace generic
119
120}; // end namespace behavioural
121}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.