29 #ifndef __CPU_O3_STORE_SET_HH__ 30 #define __CPU_O3_STORE_SET_HH__ 64 StoreSet(uint64_t clear_period,
int SSIT_size,
int LFST_size);
70 void init(uint64_t clear_period,
int SSIT_size,
int LFST_size);
74 void violation(
Addr store_PC,
Addr load_PC);
98 void issued(
Addr issued_PC,
InstSeqNum issued_seq_num,
bool is_store);
112 {
return (PC >> offsetBits) & indexMask; }
116 {
return ((PC ^ (PC >> 10)) % LFSTSize); }
135 typedef std::map<InstSeqNum, int, ltseqnum>::iterator
SeqNumMapIt;
158 #endif // __CPU_O3_STORE_SET_HH__ Implements a store set predictor for determining if memory instructions are dependent upon each other...
SSID calcSSID(Addr PC)
Calculates a Store Set ID based on the PC.
std::vector< bool > validSSIT
Bit vector to tell if the SSIT has a valid entry.
int calcIndex(Addr PC)
Calculates the index into the SSIT based on the PC.
std::map< InstSeqNum, int, ltseqnum >::iterator SeqNumMapIt
int indexMask
Mask to obtain the index.
std::vector< InstSeqNum > LFST
Last Fetched Store Table.
StoreSet()
Default constructor.
uint64_t clearPeriod
Number of loads/stores to process before wiping predictor so all entries don't get saturated...
int LFSTSize
Last Fetched Store Table size, in entries.
bool operator()(const InstSeqNum &lhs, const InstSeqNum &rhs) const
std::map< InstSeqNum, int, ltseqnum > storeList
Map of stores that have been inserted into the store set, but not yet issued or squashed.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
int memOpsPred
Number of memory operations predicted since last clear of predictor.
int SSITSize
Store Set ID Table size, in entries.
int16_t ThreadID
Thread index/ID type.
std::vector< SSID > SSIT
The Store Set ID Table.
std::vector< bool > validLFST
Bit vector to tell if the LFST has a valid entry.
void dump()
Dump all statistics data to the registered outputs.
const FlagsType init
This Stat is Initialized.