source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/src/Meta_Predictor_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: 1000 bytes
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/include/Meta_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 {
21
22
23  void Meta_Predictor::transition (void)
24  {
25    log_printf(FUNC,Meta_Predictor,"transition","Begin");
26
27#ifdef STATISTICS
28    _stat->add();
29#endif   
30
31#ifdef VHDL_TESTBENCH
32    vhdl_testbench_transition ();
33#endif
34
35    log_printf(FUNC,Meta_Predictor,"transition","End");
36  };
37
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.