source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/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: 912 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/@DIRECTORY/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12@NAMESPACE_BEGIN
13
14#undef  FUNCTION
15#define FUNCTION "@COMPONENT::Parameters"
16  Parameters::Parameters ()
17  {
18    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
19    test();
20    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
21  };
22 
23// #undef  FUNCTION
24// #define FUNCTION "@COMPONENT::Parameters (copy)"
25//   Parameters::Parameters (Parameters & param)
26//   {
27//     log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
28//     test();
29//     log_printf(FUNC,@COMPONENT,FUNCTION,"End");
30//   };
31
32#undef  FUNCTION
33#define FUNCTION "@COMPONENT::~Parameters"
34  Parameters::~Parameters () 
35  {
36    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
37    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
38  };
39
40@NAMESPACE_END
41}; // end namespace behavioural
42}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.