source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/src/Meta_Predictor_Glue_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) or 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/Meta_Predictor_Glue/include/Meta_Predictor_Glue.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 meta_predictor_glue {
22
23
24  void Meta_Predictor_Glue::transition (void)
25  {
26    log_printf(FUNC,Meta_Predictor_Glue,"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,Meta_Predictor_Glue,"transition","End");
37  };
38
39}; // end namespace meta_predictor_glue
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.