#ifndef morpheo_behavioural_generic_registerfile_multi_banked_RegisterFile_Multi_Banked_h #define morpheo_behavioural_generic_registerfile_multi_banked_RegisterFile_Multi_Banked_h /* * $Id$ * * [ Description ] * */ #ifdef SYSTEMC #include "systemc.h" #endif #include #include "Include/ToString.h" #include "Include/Debug.h" #include "Behavioural/Generic/RegisterFile_Multi_Banked/include/Parameters.h" #include "Behavioural/Generic/RegisterFile_Multi_Banked/include/Types.h" #ifdef STATISTICS #include "Behavioural/Generic/RegisterFile_Multi_Banked/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 registerfile_multi_banked { class RegisterFile_Multi_Banked #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 #ifdef SYSTEMC // ~~~~~[ Interface ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Interface public : SC_CLOCK * in_CLOCK ; public : SC_IN (Tcontrol_t) * in_NRESET ; // ----- Interface Read public : SC_IN (Tcontrol_t) ** in_READ_VAL ; public : SC_OUT (Tcontrol_t) ** out_READ_ACK ; public : SC_IN (Taddress_t) ** in_READ_ADDRESS ; public : SC_OUT (Tdata_t) ** out_READ_DATA ; // ----- Interface Write public : SC_IN (Tcontrol_t) ** in_WRITE_VAL ; public : SC_OUT (Tcontrol_t) ** out_WRITE_ACK ; public : SC_IN (Taddress_t) ** in_WRITE_ADDRESS; public : SC_IN (Tdata_t) ** in_WRITE_DATA ; // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Internal ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #endif // -----[ methods ]--------------------------------------------------- #ifdef SYSTEMC SC_HAS_PROCESS (RegisterFile_Multi_Banked); #endif public : RegisterFile_Multi_Banked ( #ifdef SYSTEMC sc_module_name name, #else string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics param_statistics, #endif Parameters param ); public : RegisterFile_Multi_Banked (Parameters param ); public : ~RegisterFile_Multi_Banked (void); #ifdef SYSTEMC private : void allocation (void); private : void deallocation (void); //#if defined(STATISTICS) or 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_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 registerfile_multi_banked }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif