#ifndef morpheo_behavioural_generic_victim_victim_pseudo_lru_Victim_Pseudo_LRU_h #define morpheo_behavioural_generic_victim_victim_pseudo_lru_Victim_Pseudo_LRU_h /* * $Id$ * * [ Description ] * */ // Tree of Pseudo-LRU // // | 4-5-6-7? | // | 0_______|_______1 | // | | | | // | 2-3? 6-7? | // | 0___|___1 0___|___1 | // | | | | | | // | 1? 3? 5? 7? | // | 0_|_1 0_|_1 0_|_1 0_|_1 | // | | | | | | | | | | // | Way Way Way Way Way Way Way Way | // | 0 1 2 3 4 5 6 7 | #ifdef SYSTEMC #include "systemc.h" #endif #include #include "Common/include/ToString.h" #include "Common/include/Debug.h" #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h" #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Types.h" #ifdef STATISTICS #include "Behavioural/include/Stat.h" #endif #ifdef VHDL #include "Behavioural/include/Vhdl.h" #endif #include "Behavioural/include/Component.h" namespace morpheo { namespace behavioural { namespace generic { namespace victim { namespace victim_pseudo_lru { class Victim_Pseudo_LRU #if SYSTEMC : public sc_module #endif { // -----[ internal class ]-------------------------------------------- protected : class entry_t { // Numerotation of victim_pseudo_lru's tree // Tree of Pseudo-LRU // // | d2 [3] | // | 0_______|_______1 | // | | | | // | d1 [1] [5] | // | 0___|___1 0___|___1 | // | | | | | | // | d0 [0] [2] [4] [6] | // | 0_|_1 0_|_1 0_|_1 0_|_1 | // | | | | | | | | | | // | Way Way Way Way Way Way Way Way | // | 0 1 2 3 4 5 6 7 | // // Access : Way N with N=2*n -> bit 2*n = 0 // with N=2*n+1 -> bit 2*n = 1 // // if bit = B, depth = D, next_B = B+D if B==1 // = B-D if B==0 // // Update : private : bool * _entry; private : uint32_t _size; public : entry_t () { }; public : entry_t (uint32_t size) : _size (size) { _entry = new bool [size]; // initialisation for (uint32_t i=0; i>1)-1; // medium for (int32_t i=static_cast(log2(_size)-1); i>= 1; i--) { index = one_access (index,(1<<(i-1))); } index = one_access (index,0); // reverse by one_access make always a reverse uint32_t offset = (_entry[index]==true)?1:0; return index+offset; } private : uint32_t one_update (uint32_t index, uint32_t offset, uint32_t value) { uint32_t mask = (offset==0)?1:(offset<<1); bool val = ((value & mask) != 0); // reverse _entry[index] = not val; if (val == true) // Compute next slot return index + offset; else return index - offset; } public : void update (uint32_t value) { uint32_t index = (_size>>1)-1; // medium for (int32_t i=static_cast(log2(_size)-1); i>=1; i--) { index = one_update (index,1<<(i-1),value); } index = one_update (index,0,value); } public : std::string print () { std::string res = ""; for (int32_t i=static_cast(_size)-1; i>=0; i--) res += toString(_entry[i]) + " "; return res; } }; // -----[ fields ]---------------------------------------------------- // Parameters protected : const std::string _name; protected : const Parameters _param; #ifdef STATISTICS public : Stat * _stat; #endif public : Component * _component; private : Interfaces * _interfaces; #ifdef SYSTEMC // ~~~~~[ Interface ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Interface public : SC_CLOCK * in_CLOCK ; public : SC_IN (Tcontrol_t) * in_NRESET ; // Interface access public : SC_IN (Tcontrol_t) ** in_ACCESS_VAL ; public : SC_OUT(Tcontrol_t) ** out_ACCESS_ACK ; public : SC_IN (Taddress_t) ** in_ACCESS_ADDRESS; public : SC_OUT(Tentity_t ) ** out_ACCESS_ENTITY ; // Interface update public : SC_IN (Tcontrol_t) ** in_UPDATE_VAL ; public : SC_OUT(Tcontrol_t) ** out_UPDATE_ACK ; public : SC_IN (Taddress_t) ** in_UPDATE_ADDRESS; public : SC_IN (Tentity_t ) ** in_UPDATE_ENTITY ; // Interface update // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ private : entry_t ** reg_TABLE; // ~~~~~[ Internal ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ private : Tentity_t * internal_ACCESS_ENTITY; #endif // -----[ methods ]--------------------------------------------------- #ifdef SYSTEMC SC_HAS_PROCESS (Victim_Pseudo_LRU); #endif public : Victim_Pseudo_LRU ( #ifdef SYSTEMC sc_module_name name, #else std::string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics * param_statistics, #endif Parameters param ); public : Victim_Pseudo_LRU (Parameters param ); public : ~Victim_Pseudo_LRU (void); #ifdef SYSTEMC private : void allocation (void); private : void deallocation (void); public : void transition (void); public : void genMealy_access (void); #endif #if VHDL public : void vhdl (void); private : void vhdl_declaration (Vhdl * & vhdl); private : void vhdl_body (Vhdl * & vhdl); #endif #ifdef STATISTICS public : void statistics_declaration (morpheo::behavioural::Parameters_Statistics * param_statistics); #endif #if defined(STATISTICS) or defined(VHDL_TESTBENCH) private : void end_cycle (void); #endif }; }; // end namespace victim_pseudo_lru }; // end namespace victim }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif