gem5
|
Implements a store set predictor for determining if memory instructions are dependent upon each other. More...
#include <store_set.hh>
Public Types | |
typedef unsigned | SSID |
Public Member Functions | |
StoreSet () | |
Default constructor. More... | |
StoreSet (uint64_t clear_period, int SSIT_size, int LFST_size) | |
Creates store set predictor with given table sizes. More... | |
~StoreSet () | |
Default destructor. More... | |
void | init (uint64_t clear_period, int SSIT_size, int LFST_size) |
Initializes the store set predictor with the given table sizes. More... | |
void | violation (Addr store_PC, Addr load_PC) |
Records a memory ordering violation between the younger load and the older store. More... | |
void | checkClear () |
Clears the store set predictor every so often so that all the entries aren't used and stores are constantly predicted as conflicting. More... | |
void | insertLoad (Addr load_PC, InstSeqNum load_seq_num) |
Inserts a load into the store set predictor. More... | |
void | insertStore (Addr store_PC, InstSeqNum store_seq_num, ThreadID tid) |
Inserts a store into the store set predictor. More... | |
InstSeqNum | checkInst (Addr PC) |
Checks if the instruction with the given PC is dependent upon any store. More... | |
void | issued (Addr issued_PC, InstSeqNum issued_seq_num, bool is_store) |
Records this PC/sequence number as issued. More... | |
void | squash (InstSeqNum squashed_num, ThreadID tid) |
Squashes for a specific thread until the given sequence number. More... | |
void | clear () |
Resets all tables. More... | |
void | dump () |
Debug function to dump the contents of the store list. More... | |
Private Types | |
typedef std::map< InstSeqNum, int, ltseqnum >::iterator | SeqNumMapIt |
Private Member Functions | |
int | calcIndex (Addr PC) |
Calculates the index into the SSIT based on the PC. More... | |
SSID | calcSSID (Addr PC) |
Calculates a Store Set ID based on the PC. More... | |
Private Attributes | |
std::vector< SSID > | SSIT |
The Store Set ID Table. More... | |
std::vector< bool > | validSSIT |
Bit vector to tell if the SSIT has a valid entry. More... | |
std::vector< InstSeqNum > | LFST |
Last Fetched Store Table. More... | |
std::vector< bool > | validLFST |
Bit vector to tell if the LFST has a valid entry. More... | |
std::map< InstSeqNum, int, ltseqnum > | storeList |
Map of stores that have been inserted into the store set, but not yet issued or squashed. More... | |
uint64_t | clearPeriod |
Number of loads/stores to process before wiping predictor so all entries don't get saturated. More... | |
int | SSITSize |
Store Set ID Table size, in entries. More... | |
int | LFSTSize |
Last Fetched Store Table size, in entries. More... | |
int | indexMask |
Mask to obtain the index. More... | |
int | offsetBits |
int | memOpsPred |
Number of memory operations predicted since last clear of predictor. More... | |
Implements a store set predictor for determining if memory instructions are dependent upon each other.
See paper "Memory Dependence Prediction using Store Sets" by Chrysos and Emer. SSID stands for Store Set ID, SSIT stands for Store Set ID Table, and LFST is Last Fetched Store Table.
Definition at line 56 of file store_set.hh.
|
private |
Definition at line 137 of file store_set.hh.
typedef unsigned StoreSet::SSID |
Definition at line 59 of file store_set.hh.
|
inline |
Default constructor.
init() must be called prior to use.
Definition at line 63 of file store_set.hh.
StoreSet::StoreSet | ( | uint64_t | clear_period, |
int | SSIT_size, | ||
int | LFST_size | ||
) |
Creates store set predictor with given table sizes.
Definition at line 38 of file store_set.cc.
References DPRINTF, fatal, ArmISA::i, indexMask, isPowerOf2(), LFST, LFSTSize, memOpsPred, offsetBits, SSIT, SSITSize, validLFST, and validSSIT.
StoreSet::~StoreSet | ( | ) |
Default destructor.
Definition at line 76 of file store_set.cc.
|
inlineprivate |
Calculates the index into the SSIT based on the PC.
Definition at line 113 of file store_set.hh.
References indexMask, and offsetBits.
Referenced by checkInst(), insertStore(), issued(), and violation().
Calculates a Store Set ID based on the PC.
Definition at line 117 of file store_set.hh.
References LFSTSize.
Referenced by violation().
void StoreSet::checkClear | ( | ) |
Clears the store set predictor every so often so that all the entries aren't used and stores are constantly predicted as conflicting.
Definition at line 189 of file store_set.cc.
References clear(), clearPeriod, DPRINTF, and memOpsPred.
Referenced by insertLoad(), and insertStore().
InstSeqNum StoreSet::checkInst | ( | Addr | PC | ) |
Checks if the instruction with the given PC is dependent upon any store.
Definition at line 239 of file store_set.cc.
References calcIndex(), DPRINTF, MipsISA::index, LFST, LFSTSize, SSIT, SSITSize, validLFST, and validSSIT.
void StoreSet::clear | ( | ) |
Resets all tables.
Definition at line 341 of file store_set.cc.
References ArmISA::i, LFSTSize, SSITSize, storeList, validLFST, and validSSIT.
Referenced by checkClear().
void StoreSet::dump | ( | ) |
Debug function to dump the contents of the store list.
Definition at line 355 of file store_set.cc.
void StoreSet::init | ( | uint64_t | clear_period, |
int | SSIT_size, | ||
int | LFST_size | ||
) |
Initializes the store set predictor with the given table sizes.
Definition at line 81 of file store_set.cc.
References clearPeriod, DPRINTF, ArmISA::i, indexMask, LFST, LFSTSize, memOpsPred, offsetBits, SSIT, SSITSize, validLFST, and validSSIT.
void StoreSet::insertLoad | ( | Addr | load_PC, |
InstSeqNum | load_seq_num | ||
) |
Inserts a load into the store set predictor.
This does nothing but is included in case other predictors require a similar function.
Definition at line 201 of file store_set.cc.
References checkClear().
void StoreSet::insertStore | ( | Addr | store_PC, |
InstSeqNum | store_seq_num, | ||
ThreadID | tid | ||
) |
Inserts a store into the store set predictor.
Updates the LFST if the store has a valid SSID.
Definition at line 209 of file store_set.cc.
References calcIndex(), checkClear(), DPRINTF, MipsISA::index, LFST, LFSTSize, SSIT, SSITSize, storeList, validLFST, and validSSIT.
void StoreSet::issued | ( | Addr | issued_PC, |
InstSeqNum | issued_seq_num, | ||
bool | is_store | ||
) |
Records this PC/sequence number as issued.
Definition at line 274 of file store_set.cc.
References calcIndex(), DPRINTF, MipsISA::index, LFST, LFSTSize, SSIT, SSITSize, storeList, validLFST, and validSSIT.
void StoreSet::squash | ( | InstSeqNum | squashed_num, |
ThreadID | tid | ||
) |
Records a memory ordering violation between the younger load and the older store.
Definition at line 116 of file store_set.cc.
References calcIndex(), calcSSID(), DPRINTF, LFSTSize, SSIT, SSITSize, and validSSIT.
|
private |
Number of loads/stores to process before wiping predictor so all entries don't get saturated.
Definition at line 142 of file store_set.hh.
Referenced by checkClear(), and init().
|
private |
Mask to obtain the index.
Definition at line 151 of file store_set.hh.
Referenced by calcIndex(), init(), and StoreSet().
|
private |
Last Fetched Store Table.
Definition at line 127 of file store_set.hh.
Referenced by checkInst(), init(), insertStore(), issued(), squash(), and StoreSet().
|
private |
Last Fetched Store Table size, in entries.
Definition at line 148 of file store_set.hh.
Referenced by calcSSID(), checkInst(), clear(), init(), insertStore(), issued(), StoreSet(), and violation().
|
private |
Number of memory operations predicted since last clear of predictor.
Definition at line 157 of file store_set.hh.
Referenced by checkClear(), init(), and StoreSet().
|
private |
Definition at line 154 of file store_set.hh.
Referenced by calcIndex(), init(), and StoreSet().
|
private |
The Store Set ID Table.
Definition at line 121 of file store_set.hh.
Referenced by checkInst(), init(), insertStore(), issued(), StoreSet(), and violation().
|
private |
Store Set ID Table size, in entries.
Definition at line 145 of file store_set.hh.
Referenced by checkInst(), clear(), init(), insertStore(), issued(), StoreSet(), and violation().
|
private |
Map of stores that have been inserted into the store set, but not yet issued or squashed.
Definition at line 135 of file store_set.hh.
Referenced by clear(), dump(), insertStore(), issued(), and squash().
|
private |
Bit vector to tell if the LFST has a valid entry.
Definition at line 130 of file store_set.hh.
Referenced by checkInst(), clear(), init(), insertStore(), issued(), squash(), and StoreSet().
|
private |
Bit vector to tell if the SSIT has a valid entry.
Definition at line 124 of file store_set.hh.
Referenced by checkInst(), clear(), init(), insertStore(), issued(), StoreSet(), and violation().