#ifndef morpheo_behavioural_stage_1_ifetch_predictor_meta_predictor_two_level_branch_predictor_pattern_history_table_Parameters_h #define morpheo_behavioural_stage_1_ifetch_predictor_meta_predictor_two_level_branch_predictor_pattern_history_table_Parameters_h /* * $Id$ * * [ Description ] * */ #include "Include/Debug.h" #include "Behavioural/include/Parameters.h" // Internal structure #include "Behavioural/Generic/Counter/include/Parameters.h" #include "Behavioural/Generic/RegisterFile/include/Parameters.h" #include namespace morpheo { namespace behavioural { namespace stage_1_ifetch { namespace predictor { namespace meta_predictor { namespace two_level_branch_predictor { namespace pattern_history_table { class Parameters : public morpheo::behavioural::Parameters { //-----[ fields ]------------------------------------------------------------ public : const uint32_t _size_counter ; public : const uint32_t _nb_counter ; public : const uint32_t _nb_prediction ; public : const uint32_t _nb_branch_complete; public : morpheo::behavioural::generic::counter::Parameters * _param_counter; public : morpheo::behavioural::generic::registerfile::Parameters * _param_registerfile; //-----[ methods ]----------------------------------------------------------- public : Parameters (uint32_t size_counter , uint32_t nb_counter , uint32_t nb_prediction , uint32_t nb_branch_complete); public : Parameters (Parameters & param) ; public : ~Parameters () ; public : string msg_error (void); public : string print (uint32_t depth); public : friend ostream& operator<< (ostream& output_stream, morpheo::behavioural::stage_1_ifetch::predictor::meta_predictor::two_level_branch_predictor::pattern_history_table::Parameters & x); }; }; // end namespace pattern_history_table }; // end namespace two_level_branch_predictor }; // end namespace meta_predictor }; // end namespace predictor }; // end namespace stage_1_ifetch }; // end namespace behavioural }; // end namespace morpheo #endif