Go to the documentation of this file.
42 #ifndef __CPU_O3_LSQ_UNIT_HH__
43 #define __CPU_O3_LSQ_UNIT_HH__
54 #include "config/the_isa.hh"
62 #include "debug/HtmCpu.hh"
63 #include "debug/LSQUnit.hh"
70 struct BaseO3CPUParams;
214 LSQUnit(uint32_t lqEntries, uint32_t sqEntries);
222 panic(
"LSQUnit is not copy-able");
226 void init(
CPU *cpu_ptr,
IEW *iew_ptr,
const BaseO3CPUParams ¶ms,
227 LSQ *lsq_ptr,
unsigned id);
230 std::string
name()
const;
572 #endif // __CPU_O3_LSQ_UNIT_HH__
bool sqEmpty() const
Returns if the SQ is empty.
This is a simple scalar statistic, like a counter.
void storePostSend()
Handles completing the send of a store to memory.
statistics::Scalar squashedLoads
Total number of squashed loads.
void process()
Processes the writeback event.
uint64_t lastRetiredHtmUid
Memory operation metadata.
void init(CPU *cpu_ptr, IEW *iew_ptr, const BaseO3CPUParams ¶ms, LSQ *lsq_ptr, unsigned id)
Initializes the LSQ unit with the specified number of entries.
SQEntry()
Constructs an empty store queue entry.
bool violation()
Returns if there is a memory ordering violation.
constexpr decltype(nullptr) NoFault
InstSeqNum stallingStoreIsn
The store that causes the stall due to partial store to load forwarding.
void insertStore(const DynInstPtr &store_inst)
Inserts a store instruction.
bool storeInFlight
Whether or not a store is in flight.
const char * description() const
Returns the description of this event.
bool isStalled()
Returns whether or not the LSQ unit is stalled.
bool checkLoads
Should loads be checked for dependency issues.
A simple distribution stat.
statistics::Scalar memOrderViolation
Tota number of memory ordering violations.
bool recvTimingResp(PacketPtr pkt)
Handles writing back and completing the load or store that has returned from memory.
void setRequest(LSQRequest *r)
bool & canWB()
Member accessors.
const bool & committed() const
IEW * iewStage
Pointer to the IEW stage.
DynInstPtr memDepViolator
The oldest load that caused a memory ordering violation.
void resetHtmStartsStops()
bool isFull()
Returns if either the LQ or SQ is full.
LSQUnit(uint32_t lqEntries, uint32_t sqEntries)
Constructs an LSQ unit.
LSQUnit * lsqPtr
The pointer to the LSQ unit that issued the store.
unsigned numFreeStoreEntries()
Returns the number of free SQ entries.
statistics::Scalar ignoredResponses
Total number of responses from the memory system that are ignored due to the instruction already bein...
Fault write(LSQRequest *requst, uint8_t *data, ssize_t store_idx)
Executes the store at the given index.
void startStaleTranslationFlush()
void schedule(Event &ev, Tick when)
Schedule event for the cpu.
bool sqFull()
Returns if the SQ is full.
bool _isAllZeros
Does this request write all zeros and thus doesn't have any data attached to it.
int getLoadHead()
Returns the index of the head load instruction.
static constexpr auto MaxDataBytes
int storesToWB
The number of store instructions in the SQ waiting to writeback.
ssize_t stallingLoadIdx
The index of the above store.
Addr cacheBlockMask
Address Mask for a cache block (e.g.
int numStoresToWB()
Returns the number of stores to writeback.
void setDcachePort(RequestPort *dcache_port)
Sets the pointer to the dcache port.
bool full() const
Is the queue full? A queue is full if the head is the 0^{th} element and the tail is the (size-1)^{th...
unsigned getCount()
Returns the number of instructions in the LSQ.
statistics::Distribution loadToUse
Distribution of cycle latency between the first time a load is issued and its completion.
bool _committed
Whether or not the store is committed.
bool valid() const
Member accessors.
unsigned depCheckShift
The number of places to shift addresses in the LSQ before checking for dependency violations.
@ PartialAddrRangeCoverage
unsigned numFreeLoadEntries()
Returns the number of free LQ entries.
int getStoreHead()
Returns the index of the head store instruction.
const uint32_t & size() const
void setLastRetiredHtmUid(uint64_t htm_uid)
bool _completed
Whether or not the store is completed.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
uint64_t getLatestHtmUid() const
void completeStore(typename StoreQueue::iterator store_idx)
Completes the store at the specified index.
bool needsTSO
Flag for memory model.
uint32_t _size
The size of the operation.
statistics::Scalar forwLoads
Total number of loads forwaded from LSQ stores.
statistics::Scalar blockedByCache
Number of times the LSQ is blocked due to the cache.
const bool & isAllZeros() const
Writeback event, specifically for when stores forward data to loads.
void set(const DynInstPtr &new_inst)
Class that implements the actual LQ and SQ for each specific thread.
StoreQueue storeQueue
The store queue.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
gem5::o3::LSQUnit::LSQUnitStats stats
void commitLoad()
Commits the head load.
statistics::Scalar rescheduledLoads
Number of loads that were rescheduled.
bool trySendPacket(bool isLoad, PacketPtr data_pkt)
Attempts to send a packet to the cache.
std::shared_ptr< FaultBase > Fault
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
int numStores()
Returns the number of stores in the SQ.
bool isStoreBlocked
Whehter or not a store is blocked due to the memory system.
void set(const DynInstPtr &inst)
uint64_t Tick
Tick count type.
WritebackEvent(const DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr)
Constructs a writeback event.
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
char _data[MaxDataBytes]
The store data.
CPU * cpu
Pointer to the CPU.
StoreQueue::iterator storeWBIt
The index of the first instruction that may be ready to be written back, and has not yet been written...
ThreadID lsqID
The LSQUnit thread id.
bool _canWB
Whether or not the store can writeback.
PacketPtr pkt
The packet that would have been sent to memory.
constexpr unsigned MaxVecRegLenInBytes
void commitLoads(InstSeqNum &youngest_inst)
Commits loads older than a specific sequence number.
void completeDataAccess(PacketPtr pkt)
Completes the data access that has been returned from the memory system.
void takeOverFrom()
Takes over from another CPU's thread.
PacketPtr retryPkt
The packet that needs to be retried.
Fault checkViolations(typename LoadQueue::iterator &loadIt, const DynInstPtr &inst)
Check for ordering violations in the LSQ.
CircularQueue< LQEntry >::iterator LQIterator
void writeback(const DynInstPtr &inst, PacketPtr pkt)
Writes back the instruction, sending it to IEW.
int numLoads()
Returns the number of loads in the LQ.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void squash(const InstSeqNum &squashed_num)
Squashes all instructions younger than a specific sequence number.
LSQUnit(const LSQUnit &l)
We cannot copy LSQUnit because it has stats for which copy contructor is deleted explicitly.
statistics::Scalar squashedStores
Total number of squashed stores.
bool willWB()
Returns if the LSQ unit will writeback on this cycle.
CircularQueue< SQEntry >::iterator SQIterator
const DynInstPtr & instruction() const
Fault executeStore(const DynInstPtr &inst)
Executes a store instruction.
void writebackBlockedStore()
Try to finish a previously blocked write back attempt.
DynInstPtr _inst
The instruction.
DynInstPtr inst
Instruction whose results are being written back.
void insert(const DynInstPtr &inst)
Inserts an instruction.
RequestPort * dcachePort
Pointer to the dcache port.
bool hasStoresToWB()
Returns if there are any stores to writeback.
bool stalled
Whether or not the LSQ is stalled.
bool checkStaleTranslations() const
Fault read(LSQRequest *request, ssize_t load_idx)
Executes the load at the given index.
static constexpr size_t DataSize
LSQ * lsq
Pointer to the LSQ.
Fault executeLoad(const DynInstPtr &inst)
Executes a load instruction.
void recvRetry()
Handles doing the retry.
void drainSanityCheck() const
Perform sanity checks after a drain.
void commitStores(InstSeqNum &youngest_inst)
Commits stores older than a specific sequence number.
const bool & completed() const
void resetState()
Reset the LSQ state.
LSQRequest * _request
The request.
const bool & canWB() const
DynInstPtr getMemDepViolator()
Returns the memory ordering violator.
bool isEmpty() const
Returns if both the LQ and SQ are empty.
InstSeqNum getStoreHeadSeqNum()
Returns the sequence number of the head store instruction.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
LoadQueue loadQueue
The load queue.
std::string name() const
Returns the name of the LSQ unit.
AddrRangeCoverage
Coverage of one address range with another.
void dumpInsts() const
Debugging function to dump instructions in the LSQ.
bool lqFull()
Returns if the LQ is full.
const char * data() const
void insertLoad(const DynInstPtr &load_inst)
Inserts a load instruction.
unsigned int cacheLineSize()
TimeBuffer< IssueStruct >::wire fromIssue
Wire to read information from the issue stage time queue.
InstSeqNum getLoadHeadSeqNum()
Returns the sequence number of the head load instruction.
void writebackStores()
Writes back stores.
Fault executeLoad(int lq_idx)
bool lqEmpty() const
Returns if the LQ is empty.
int16_t ThreadID
Thread index/ID type.
void checkSnoop(PacketPtr pkt)
Check if an incoming invalidate hits in the lsq on a load that might have issued out of order wrt ano...
#define panic(...)
This implements a cprintf based panic() function.
LSQUnitStats(statistics::Group *parent)
void freeLSQEntry()
The LSQ entry is cleared.
Generated on Wed Jul 13 2022 10:39:16 for gem5 by doxygen 1.8.17