source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/src/Parameters_id.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: 1.1 KB
Line 
1/*
2 * $Id: Parameters_id.cpp 113 2009-04-14 18:39:12Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace core {
13namespace multi_execute_loop {
14namespace execute_loop {
15namespace multi_write_unit {
16namespace write_unit {
17namespace execute_queue {
18
19#undef  FUNCTION
20#define FUNCTION "Parameters::get_id"
21  std::string Parameters::id (void) const
22  {
23    log_begin(Execute_queue,FUNCTION);
24
25    std::string _return = 
26      (toString(_size_queue       ) +"_"+
27       toString(_nb_context       ) +"_"+
28       toString(_nb_front_end     ) +"_"+
29       toString(_nb_ooo_engine    ) +"_"+
30       toString(_nb_packet        ) +"_"+
31       toString(_size_general_data) +"_"+
32       toString(_size_special_data) );
33
34    log_end(Execute_queue,FUNCTION);
35
36    return _return;
37  };
38
39}; // end namespace execute_queue
40}; // end namespace write_unit
41}; // end namespace multi_write_unit
42}; // end namespace execute_loop
43}; // end namespace multi_execute_loop
44}; // end namespace core
45}; // end namespace behavioural
46}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.