source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Comparator/src/Comparator.cpp @ 113

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

1) Add modelsim simulation systemC
2) Modelsim cosimulation systemC / VHDL is not finish !!!! (cf execute_queue and write_unit)
3) Add multi architecture
5) Add template for comparator, multiplier and divider
6) Change Message
Warning) Various test macro have change, many selftest can't compile

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1/*
2 * $Id: Comparator.cpp 113 2009-04-14 18:39:12Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/Comparator/include/Comparator.h"
9
10namespace morpheo                    {
11namespace behavioural {
12namespace generic {
13namespace comparator {
14
15
16#undef  FUNCTION
17#define FUNCTION "Comparator::Comparator"
18  Comparator::Comparator
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::comparator::Parameters * param,
29   morpheo::behavioural::Tusage_t usage
30   ):
31    _name              (name)
32    ,_param            (param)
33    ,_usage            (usage)
34  {
35    log_begin(Comparator,FUNCTION);
36
37    usage_environment(_usage);
38
39    log_printf(INFO,Comparator,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,Comparator,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,Comparator,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,Comparator,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,Comparator,FUNCTION,_("<%s> : Method - genMealy"),_name.c_str());
80
81        SC_METHOD (genMealy);
82        dont_initialize ();
83//      sensitive << (*(in_CLOCK)).neg(); // don't need internal register
84        sensitive << (*(in_COMPARE_DATA_0))
85                  << (*(in_COMPARE_DATA_1));
86       
87# ifdef SYSTEMCASS_SPECIFIC
88        // List dependency information
89# endif   
90       
91#endif
92      }
93    log_end(Comparator,FUNCTION);
94  };
95   
96#undef  FUNCTION
97#define FUNCTION "Comparator::~Comparator"
98  Comparator::~Comparator (void)
99  {
100    log_begin(Comparator,FUNCTION);
101
102#ifdef STATISTICS
103    if (usage_is_set(_usage,USE_STATISTICS))
104      {
105        statistics_deallocation();
106      }
107#endif
108
109    log_printf(INFO,Comparator,FUNCTION,_("<%s> : Deallocation"),_name.c_str());
110    deallocation ();
111
112    log_end(Comparator,FUNCTION);
113  };
114
115}; // end namespace comparator
116}; // end namespace generic
117
118}; // end namespace behavioural
119}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.