source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/SelfTest/src/main.cpp @ 76

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

Add new component : Read_unit (no tested)
Change functionnal_unit : now use type and operation to execute the good function
Change New_Component's script

File size: 3.7 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/SelfTest/include/test.h"
9
10#define NB_PARAMS 18
11
12void usage (int argc, char * argv[])
13{
14  cerr << "<Usage> " << argv[0] << " name_instance list_params" << endl
15       << "list_params is :" << endl
16       << " - size_queue          (unsigned int)" << endl
17       << " - nb_inst_retire      (unsigned int)" << endl
18       << " - nb_context          (unsigned int)" << endl
19       << " - nb_front_end        (unsigned int)" << endl
20       << " - nb_ooo_engine       (unsigned int)" << endl
21       << " - nb_packet           (unsigned int)" << endl
22       << " - size_general_data   (unsigned int)" << endl
23       << " - size_special_data   (unsigned int)" << endl
24       << " - nb_general_register (unsigned int)" << endl
25       << " - nb_special_register (unsigned int)" << endl
26       << " - nb_operation        (unsigned int)" << endl
27       << " - nb_type             (unsigned int)" << endl
28       << " - nb_gpr_write        (unsigned int)" << endl
29       << " - nb_spr_write        (unsigned int)" << endl
30       << " - nb_bypass_write     (unsigned int)" << endl
31       << " - nb_bypass_memory    (unsigned int)" << endl
32       << " - size_store_queue    (unsigned int)" << endl
33       << " - size_load_queue     (unsigned int)" << endl
34       << "" << endl;
35
36  for (int i=0; i<argc; i++)
37    cerr << argv[i] << " ";
38  cerr << endl;
39
40  exit (1);
41}
42
43#ifndef SYSTEMC
44int main    (int argc, char * argv[])
45#else
46int sc_main (int argc, char * argv[])
47#endif
48{
49  if (argc != 2+NB_PARAMS)
50    usage (argc, argv);
51
52  uint32_t x=1;
53  const string   name                =      argv[x++];
54  const uint32_t size_queue          = atoi(argv[x++]);
55  const uint32_t nb_inst_retire      = atoi(argv[x++]);
56  const uint32_t nb_context          = atoi(argv[x++]);
57  const uint32_t nb_front_end        = atoi(argv[x++]);
58  const uint32_t nb_ooo_engine       = atoi(argv[x++]);
59  const uint32_t nb_packet           = atoi(argv[x++]);
60  const uint32_t size_general_data   = atoi(argv[x++]);
61  const uint32_t size_special_data   = atoi(argv[x++]);
62  const uint32_t nb_general_register = atoi(argv[x++]);
63  const uint32_t nb_special_register = atoi(argv[x++]);
64  const uint32_t nb_operation        = atoi(argv[x++]);
65  const uint32_t nb_type             = atoi(argv[x++]);
66  const uint32_t nb_gpr_write        = atoi(argv[x++]);
67  const uint32_t nb_spr_write        = atoi(argv[x++]);
68  const uint32_t nb_bypass_write     = atoi(argv[x++]);
69  const uint32_t nb_bypass_memory    = atoi(argv[x++]);
70  const uint32_t size_store_queue    = atoi(argv[x++]);
71  const uint32_t size_load_queue     = atoi(argv[x++]);
72 
73  try 
74    {
75      morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::reservation_station::Parameters * param = new morpheo::behavioural::core::multi_execute_loop::execute_loop::multi_read_unit::read_unit::reservation_station::Parameters
76        (size_queue   
77         ,nb_inst_retire     
78         ,nb_context         
79         ,nb_front_end       
80         ,nb_ooo_engine
81         ,nb_packet         
82         ,size_general_data 
83         ,size_special_data 
84         ,nb_general_register
85         ,nb_special_register
86         ,nb_operation       
87         ,nb_type           
88         ,nb_gpr_write
89         ,nb_spr_write
90         ,nb_bypass_write
91         ,nb_bypass_memory
92         ,size_store_queue
93         ,size_load_queue
94         );
95     
96      cout << param->print(1);
97     
98      test (name,param);
99    }
100  catch (morpheo::ErrorMorpheo & error)
101    {
102      cout << "<" << name << "> : " <<  error.what ();
103      exit (EXIT_FAILURE);
104    }
105  catch (...)
106    {
107      cerr << "<" << name << "> : This test must generate a error" << endl;
108      exit (EXIT_FAILURE);
109    }
110
111  return (EXIT_SUCCESS);
112}
113
Note: See TracBrowser for help on using the repository browser.