source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Parameters.h @ 146

Last change on this file since 146 was 146, checked in by rosiere, 13 years ago

1) Integration of RegisterFile_Internal_Banked in RegisterFile?
2) Erase "read_write" interface in RegisterFile_Monolithic component
3) Add smith predictor parameters in Load_store_pointer_unit.
4) Fix not statistics flags

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1#ifndef morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
2#define morpheo_behavioural_generic_registerfile_registerfile_monolithic_Parameters_h
3
4/*
5 * $Id: Parameters.h 146 2011-02-01 20:57:54Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13#include <math.h>
14
15namespace morpheo                    {
16namespace behavioural                {
17namespace generic                    {
18namespace registerfile               {
19namespace registerfile_monolithic    {
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23  public : uint32_t    _nb_port_read ;
24  public : uint32_t    _nb_port_write;
25  public : uint32_t    _nb_word      ;
26  public : uint32_t    _size_word    ;
27  public : std::string _init_value   ;
28
29  public : uint32_t    _size_address ;
30  public : bool        _have_port_address;
31  public : bool        _have_init_value;
32
33  public : Parameters (uint32_t    nb_port_read ,
34                       uint32_t    nb_port_write,
35                       uint32_t    nb_word      ,
36                       uint32_t    size_word    ,
37                       std::string init_value="");
38//   public : Parameters (Parameters & param) ;
39  public : ~Parameters () ;
40
41  public :        void            copy       (void);
42
43  public :        Parameters_test msg_error  (void);
44
45  public :        std::string   print      (uint32_t depth);
46  public : friend std::ostream& operator<< (std::ostream& output_stream,
47                                            morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x);
48  };
49
50}; // end namespace registerfile_monolithic
51}; // end namespace registerfile
52}; // end namespace generic
53}; // end namespace behavioural         
54}; // end namespace morpheo             
55
56#endif
Note: See TracBrowser for help on using the repository browser.