source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/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.2 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace core {
13namespace multi_front_end {
14namespace front_end {
15namespace ifetch_unit {
16namespace ifetch_unit_glue {
17
18
19#undef  FUNCTION
20#define FUNCTION "Ifetch_unit_Glue::Parameters"
21  Parameters::Parameters ()
22  {
23    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
24    test();
25    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
26  };
27 
28// #undef  FUNCTION
29// #define FUNCTION "Ifetch_unit_Glue::Parameters (copy)"
30//   Parameters::Parameters (Parameters & param)
31//   {
32//     log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
33//     test();
34//     log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
35//   };
36
37#undef  FUNCTION
38#define FUNCTION "Ifetch_unit_Glue::~Parameters"
39  Parameters::~Parameters () 
40  {
41    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"Begin");
42    log_printf(FUNC,Ifetch_unit_Glue,FUNCTION,"End");
43  };
44
45}; // end namespace ifetch_unit_glue
46}; // end namespace ifetch_unit
47}; // end namespace front_end
48}; // end namespace multi_front_end
49}; // end namespace core
50
51}; // end namespace behavioural
52}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.