#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_pattern_history_table_Pattern_History_Table_h #define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_two_level_branch_predictor_pattern_history_table_Pattern_History_Table_h /* * $Id: Pattern_History_Table.h 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #ifdef SYSTEMC #include "systemc.h" #endif #include #include "Common/include/ToString.h" #include "Common/include/Debug.h" // Internal structure #include "Behavioural/Generic/Counter/include/Counter.h" #include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/RegisterFile_Monolithic.h" #include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Parameters.h" #include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Types.h" #ifdef STATISTICS #include "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table/include/Statistics.h" #endif #ifdef VHDL #include "Behavioural/include/Vhdl.h" #endif #include "Behavioural/include/Component.h" using namespace std; namespace morpheo { namespace behavioural { namespace core { namespace multi_front_end { namespace front_end { namespace prediction_unit { namespace direction { namespace meta_predictor { namespace two_level_branch_predictor { namespace pattern_history_table { class Pattern_History_Table #if SYSTEMC : public sc_module #endif { // -----[ fields ]---------------------------------------------------- // Parameters protected : const string _name; protected : const Parameters _param; #ifdef STATISTICS protected : const morpheo::behavioural::Parameters_Statistics _param_statistics; #endif #ifdef STATISTICS private : Statistics * _stat; #endif public : Component * _component; private : Interfaces * _interfaces; #ifdef SYSTEMC // ~~~~~[ Interface ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Interface public : SC_CLOCK * in_CLOCK ; public : SC_IN (Tcontrol_t) * in_NRESET ; public : SC_IN (Tcontrol_t) ** in_PREDICT_VAL ; public : SC_OUT(Tcontrol_t) ** out_PREDICT_ACK ; public : SC_IN (Taddress_t) ** in_PREDICT_ADDRESS ; public : SC_OUT(Thistory_t) ** out_PREDICT_HISTORY ; public : SC_IN (Tcontrol_t) ** in_BRANCH_COMPLETE_VAL ; public : SC_OUT(Tcontrol_t) ** out_BRANCH_COMPLETE_ACK ; public : SC_IN (Taddress_t) ** in_BRANCH_COMPLETE_ADDRESS; public : SC_IN (Thistory_t) ** in_BRANCH_COMPLETE_HISTORY; public : SC_IN (Tcontrol_t) ** in_BRANCH_COMPLETE_DIRECTION; // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Internal ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ public : SC_SIGNAL(Thistory_t) ** signal_BRANCH_COMPLETE_HISTORY; #endif // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ public : morpheo::behavioural::generic::counter::Counter * component_Counter ; public : morpheo::behavioural::generic::registerfile::registerfile_monolithic::RegisterFile_Monolithic * component_RegisterFile; // -----[ methods ]--------------------------------------------------- #ifdef SYSTEMC SC_HAS_PROCESS (Pattern_History_Table); #endif public : Pattern_History_Table ( #ifdef SYSTEMC sc_module_name name, #else string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics param_statistics, #endif Parameters param ); public : Pattern_History_Table (Parameters param ); public : ~Pattern_History_Table (void); #ifdef SYSTEMC private : void allocation (void); private : void deallocation (void); #if (defined(STATISTICS) || defined (VHDL_TESTBENCH)) public : void transition (void); #endif #endif #ifdef STATISTICS public : string statistics (uint32_t depth); #endif #if VHDL public : void vhdl (void); private : void vhdl_declaration (Vhdl * & vhdl); private : void vhdl_body (Vhdl * & vhdl); #endif #ifdef VHDL_TESTBENCH private : void vhdl_testbench_transition (void); #endif }; }; // end namespace pattern_history_table }; // end namespace two_level_branch_predictor }; // end namespace meta_predictor }; // end namespace core }; // end namespace multi_front_end }; // end namespace front_end }; // end namespace prediction_unit }; // end namespace direction }; // end namespace behavioural }; // end namespace morpheo #endif