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

Last change on this file since 48 was 48, checked in by rosiere, 17 years ago

Modification des Makefile : pas de creation inutile de shell

File size: 1.1 KB
Line 
1#ifdef SYSTEMC
2#if (defined(STATISTICS) || defined (VHDL_TESTBENCH))
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Branch_History_Table/include/Branch_History_Table.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 {
22namespace branch_history_table {
23
24
25  void Branch_History_Table::transition (void)
26  {
27#ifdef STATISTICS
28    _stat->add();
29#endif   
30
31#ifdef VHDL_TESTBENCH
32    vhdl_testbench_transition ();
33#endif
34  };
35
36}; // end namespace branch_history_table
37}; // end namespace two_level_branch_predictor
38}; // end namespace meta_predictor
39
40}; // end namespace core
41}; // end namespace multi_front_end
42}; // end namespace front_end
43}; // end namespace prediction_unit
44}; // end namespace direction
45
46
47}; // end namespace behavioural
48}; // end namespace morpheo             
49#endif
50#endif
Note: See TracBrowser for help on using the repository browser.