source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/src/Two_Level_Branch_Predictor_transition.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1#ifdef SYSTEMC
2#if (defined(STATISTICS) || defined (VHDL_TESTBENCH))
3/*
4 * $Id: Two_Level_Branch_Predictor_transition.cpp 81 2008-04-15 18:40:01Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/include/Two_Level_Branch_Predictor.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_front_end {
16namespace front_end {
17namespace prediction_unit {
18namespace direction {
19
20namespace meta_predictor {
21namespace two_level_branch_predictor {
22
23
24  void Two_Level_Branch_Predictor::transition (void)
25  {
26    log_printf(FUNC,Two_Level_Branch_Predictor,"transition","Begin");
27
28#ifdef STATISTICS
29    _stat->add();
30#endif   
31
32#ifdef VHDL_TESTBENCH
33    vhdl_testbench_transition ();
34#endif
35
36    log_printf(FUNC,Two_Level_Branch_Predictor,"transition","End");
37  };
38
39}; // end namespace two_level_branch_predictor
40}; // end namespace meta_predictor
41
42}; // end namespace core
43}; // end namespace multi_front_end
44}; // end namespace front_end
45}; // end namespace prediction_unit
46}; // end namespace direction
47
48
49}; // end namespace behavioural
50}; // end namespace morpheo             
51#endif
52#endif
Note: See TracBrowser for help on using the repository browser.