source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Address_management/include/Parameters.h @ 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.8 KB
Line 
1#ifndef morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_address_management_Parameters_h
2#define morpheo_behavioural_core_multi_front_end_front_end_ifetch_unit_address_management_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Common/include/Debug.h"
12#include "Behavioural/include/Parameters.h"
13
14namespace morpheo {
15namespace behavioural {
16namespace core {
17namespace multi_front_end {
18namespace front_end {
19namespace ifetch_unit {
20namespace address_management {
21
22  class Parameters : public morpheo::behavioural::Parameters
23  {
24    //-----[ fields ]------------------------------------------------------------
25  public : uint32_t _nb_instruction               ;
26  public : uint32_t _size_address                 ;
27  public : uint32_t _size_branch_update_prediction;
28
29  public : uint32_t _size_instruction_ptr                 ;
30
31  public : bool     _have_port_instruction_ptr            ;
32  public : bool     _have_port_branch_update_prediction_id;
33
34    //-----[ methods ]-----------------------------------------------------------
35  public : Parameters  (uint32_t nb_instruction,
36                        uint32_t size_address  ,
37                        uint32_t size_branch_update_prediction);
38
39//   public : Parameters  (Parameters & param) ;
40  public : ~Parameters () ;
41
42  public :        Parameters_test msg_error  (void);
43
44  public :        std::string     print      (uint32_t depth);
45  public : friend std::ostream&   operator<< (std::ostream& output_stream,
46                                              morpheo::behavioural::core::multi_front_end::front_end::ifetch_unit::address_management::Parameters & x);
47  };
48
49}; // end namespace address_management
50}; // end namespace ifetch_unit
51}; // end namespace front_end
52}; // end namespace multi_front_end
53}; // end namespace core
54
55}; // end namespace behavioural
56}; // end namespace morpheo             
57
58#endif
Note: See TracBrowser for help on using the repository browser.