source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/SelfTest/src/test.cpp @ 71

Last change on this file since 71 was 71, checked in by rosiere, 16 years ago

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File size: 3.3 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 * Test
7 */
8
9#include "Behavioural/@DIRECTORY/SelfTest/include/test.h"
10#include "Common/include/Test.h"
11
12#define NB_ITERATION  1
13#define CYCLE_MAX     (128*NB_ITERATION)
14
15#define LABEL(str)                                                      \
16  {                                                                     \
17  msg (_("{%d} %s\n"),static_cast<uint32_t>(sc_simulation_time()),str); \
18} while(0)
19
20#define SC_START(cycle_offset)                                                       \
21  do                                                                                 \
22    {                                                                                \
23      /*cout << "SC_START (begin)" << endl;*/                                        \
24                                                                                     \
25      uint32_t cycle_current = static_cast<uint32_t>(sc_simulation_time());          \
26      if (cycle_offset != 0)                                                         \
27        {                                                                            \
28          cout << "##########[ cycle "<< cycle_current+cycle_offset << " ]" << endl; \
29        }                                                                            \
30                                                                                     \
31      if (cycle_current > CYCLE_MAX)                                                 \
32        {                                                                            \
33          TEST_KO("Maximal cycles Reached");                                         \
34        }                                                                            \
35                                                                                     \
36      sc_start(cycle_offset);                                                        \
37                                                                                     \
38      /*cout << "SC_START (end  )" << endl;*/                                        \
39    } while(0)
40
41void test (string name,
42           morpheo::behavioural::@NAMESPACE_USE::Parameters * _param)
43{
44  msg(_("<%s> : Simulation SystemC.\n"),name.c_str());
45
46#ifdef STATISTICS
47  morpheo::behavioural::Parameters_Statistics * _parameters_statistics = new morpheo::behavioural::Parameters_Statistics (5,50);
48#endif
49
50  @COMPONENT * _@COMPONENT = new @COMPONENT (name.c_str(),
51#ifdef STATISTICS
52                                             _parameters_statistics,
53#endif
54                                             _param);
55 
56#ifdef SYSTEMC
57  /*********************************************************************
58   * Déclarations des signaux
59   *********************************************************************/
60  string rename;
61
62  sc_clock              *  in_CLOCK  = new sc_clock ("clock", 1.0, 0.5);         
63  sc_signal<Tcontrol_t> *  in_NRESET = new sc_signal<Tcontrol_t> ("NRESET");
64 
65  /********************************************************
66   * Instanciation
67   ********************************************************/
68 
69  msg(_("<%s> : Instanciation of _@COMPONENT.\n"),name.c_str());
70
71  (*(_@COMPONENT->in_CLOCK))        (*(in_CLOCK));
72  (*(_@COMPONENT->in_NRESET))       (*(in_NRESET));
73
74
75  msg(_("<%s> : Start Simulation ............\n"),name.c_str());
76   
77  Time * _time = new Time();
78
79  /********************************************************
80   * Simulation - Begin
81   ********************************************************/
82
83  // Initialisation
84
85  const uint32_t seed = 0;
86//const uint32_t seed = static_cast<uint32_t>(time(NULL));
87
88  srand(seed);
89
90  SC_START(0);
91  LABEL("Initialisation");
92
93  LABEL("Reset");
94  in_NRESET->write(0);
95  SC_START(5);
96  in_NRESET->write(1); 
97
98  LABEL("Loop of Test");
99
100  for (uint32_t iteration=0; iteration<NB_ITERATION; iteration ++)
101    {
102      LABEL("Iteration "+toString(iteration));
103
104      SC_START(1);
105    }
106
107  /********************************************************
108   * Simulation - End
109   ********************************************************/
110
111  TEST_OK ("End of Simulation");
112  delete _time;
113
114  msg(_("<%s> : ............ Stop Simulation\n"),name.c_str());
115
116  delete in_CLOCK;
117  delete in_NRESET;
118#endif
119
120  delete _@COMPONENT;
121#ifdef STATISTICS
122  delete _parameters_statistics;
123#endif
124}
Note: See TracBrowser for help on using the repository browser.