#ifndef morpheo_behavioural_generic_select_select_priority_fixed_Select_Priority_Fixed_h #define morpheo_behavioural_generic_select_select_priority_fixed_Select_Priority_Fixed_h /* * $Id$ * * [ Description ] * */ #ifdef SYSTEMC #include "systemc.h" #endif #include #include "Include/ToString.h" #include "Include/Debug.h" #include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Parameters.h" #include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Types.h" #include "Behavioural/include/Interfaces.h" #ifdef STATISTICS #include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Statistics.h" #endif #ifdef VHDL #include "Behavioural/include/Vhdl.h" #endif #ifdef VHDL_TESTBENCH #include "Behavioural/include/Vhdl_Testbench.h" #endif using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace select { namespace select_priority_fixed { class Select_Priority_Fixed #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 #ifdef VHDL_TESTBENCH private : Vhdl_Testbench * _vhdl_testbench; #endif 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_VAL ; public : SC_OUT(Tcontrol_t) ** out_ACK ; public : SC_OUT(Tcontrol_t) * out_ENTITY_ACK ; public : SC_OUT(Tentity_t) * out_ENTITY ; // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Internal ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #endif // -----[ methods ]--------------------------------------------------- #ifdef SYSTEMC SC_HAS_PROCESS (Select_Priority_Fixed); #endif public : Select_Priority_Fixed ( #ifdef SYSTEMC sc_module_name name, #else string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics param_statistics, #endif Parameters param ); public : Select_Priority_Fixed (Parameters param ); public : ~Select_Priority_Fixed (void); #ifdef SYSTEMC private : void allocation (void); private : void deallocation (void); #if defined(STATISTICS) or defined(VHDL_TESTBENCH) public : void transition (void); #endif public : void genMealy_entity (void); #endif #ifdef STATISTICS public : string statistics (uint32_t depth); #endif #if VHDL public : void vhdl (void); private : void vhdl_port (Vhdl * & vhdl); private : void vhdl_declaration (Vhdl * & vhdl); private : void vhdl_body (Vhdl * & vhdl); #endif #ifdef VHDL_TESTBENCH private : void vhdl_testbench_transition (void); #endif public : void vhdl_testbench_label (string label); }; }; // end namespace select_priority_fixed }; // end namespace select }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif