source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Parameters.cpp @ 78

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

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 1.1 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace generic {
13namespace victim {
14namespace victim_pseudo_lru {
15
16
17  Parameters::Parameters (uint32_t nb_entity ,
18                          uint32_t nb_access ,
19//                        uint32_t nb_update ,
20                          uint32_t size_table,
21                          bool     table_global):
22    _nb_entity  (nb_entity ),
23    _nb_access  (nb_access ),
24//     _nb_update  (nb_update ),
25    _size_table ((table_global == true)?1:size_table),
26    _table_global (table_global),
27    _size_address (size_table)
28  {
29    test();
30  };
31 
32  Parameters::Parameters (Parameters & param):
33    _nb_entity  (param._nb_entity ),
34    _nb_access  (param._nb_access ),
35//     _nb_update  (param._nb_update ),
36    _size_table (param._size_table),
37    _table_global(param._table_global),
38    _size_address(param._size_address)
39  { 
40    test();
41  };
42
43  Parameters::~Parameters () 
44  { };
45
46}; // end namespace victim_pseudo_lru
47}; // end namespace victim
48}; // end namespace generic
49
50}; // end namespace behavioural
51}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.