source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/src/Two_Level_Branch_Predictor_Glue_transition.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 1.1 KB
Line 
1#ifdef SYSTEMC
2#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/include/Two_Level_Branch_Predictor_Glue.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace stage_1_ifetch {
15namespace predictor {
16namespace meta_predictor {
17namespace two_level_branch_predictor {
18namespace two_level_branch_predictor_glue {
19
20
21  void Two_Level_Branch_Predictor_Glue::transition (void)
22  {
23    log_printf(FUNC,Two_Level_Branch_Predictor_Glue,"transition","Begin");
24
25#ifdef STATISTICS
26    _stat->add();
27#endif   
28
29#ifdef VHDL_TESTBENCH
30    vhdl_testbench_transition ();
31#endif
32
33    log_printf(FUNC,Two_Level_Branch_Predictor_Glue,"transition","End");
34  };
35
36}; // end namespace two_level_branch_predictor_glue
37}; // end namespace two_level_branch_predictor
38}; // end namespace meta_predictor
39}; // end namespace predictor
40}; // end namespace stage_1_ifetch
41
42}; // end namespace behavioural
43}; // end namespace morpheo             
44#endif
45#endif
Note: See TracBrowser for help on using the repository browser.