42 #ifndef __CPU_O3_LSQ_HH__ 43 #define __CPU_O3_LSQ_HH__ 52 #include "enums/SMTQueuePolicy.hh" 56 struct DerivO3CPUParams;
66 typedef typename Impl::O3CPU
O3CPU;
68 typedef typename Impl::CPUPol::IEW
IEW;
69 typedef typename Impl::CPUPol::LSQUnit
LSQUnit;
240 WbStore = 0x00000002,
241 Delayed = 0x00000004,
242 IsSplit = 0x00000008,
244 TranslationStarted = 0x00000010,
246 TranslationFinished = 0x00000020,
249 Complete = 0x00000100,
252 TranslationSquashed = 0x00000200,
254 Discarded = 0x00000400,
256 LSQEntryFreed = 0x00000800,
258 WritebackScheduled = 0x00001000,
259 WritebackDone = 0x00002000,
261 IsAtomic = 0x00004000
304 _state(
State::NotIssued), _senderState(nullptr),
305 _port(*port), _inst(inst), _data(nullptr),
306 _res(nullptr), _addr(0), _size(0), _flags(0),
307 _numOutstandingPackets(0), _amo_op(nullptr)
309 flags.
set(Flag::IsLoad, isLoad);
310 flags.
set(Flag::WbStore,
311 _inst->isStoreConditional() || _inst->isAtomic());
312 flags.
set(Flag::IsAtomic, _inst->isAtomic());
316 const Addr&
addr,
const uint32_t& size,
320 : _state(
State::NotIssued), _senderState(nullptr),
321 numTranslatedFragments(0),
322 numInTranslationFragments(0),
323 _port(*port), _inst(inst), _data(
data),
324 _res(res), _addr(addr), _size(size),
326 _numOutstandingPackets(0),
327 _amo_op(
std::move(amo_op))
329 flags.
set(Flag::IsLoad, isLoad);
330 flags.
set(Flag::WbStore,
331 _inst->isStoreConditional() || _inst->isAtomic());
332 flags.
set(Flag::IsAtomic, _inst->isAtomic());
339 return flags.
isSet(Flag::IsLoad);
345 return flags.
isSet(Flag::IsAtomic);
352 _port.
loadQueue[_inst->lqIdx].setRequest(
this);
356 _port.
storeQueue[_inst->sqIdx].setRequest(
this);
362 return _inst->isSquashed();
373 return flags.
isSet(Flag::LSQEntryFreed) ||
374 flags.
isSet(Flag::Discarded);
388 assert(reason == Flag::LSQEntryFreed || reason == Flag::Discarded);
389 if (!isAnyOutstandingRequest()) {
409 if (byte_enable.empty() ||
411 auto request = std::make_shared<Request>(
412 addr, size, _flags, _inst->masterId(),
413 _inst->instAddr(), _inst->contextId(),
415 if (!byte_enable.empty()) {
416 request->setByteEnable(byte_enable);
428 assert(!isAnyOutstandingRequest());
429 _inst->savedReq =
nullptr;
433 for (
auto r: _packets)
468 for (
auto&
r: _requests)
472 uint32_t
taskId()
const {
return _taskId; }
478 return _requests.at(idx);
482 virtual void initiateTranslation() = 0;
489 assert (_packets.size() == 1);
496 assert (_requests.size() == 1);
504 for (
auto& pkt: _packets) {
506 pkt->senderState =
st;
523 assert(_senderState);
533 return numInTranslationFragments > 0 ||
534 _numOutstandingPackets > 0 ||
535 (flags.
isSet(Flag::WritebackScheduled) &&
536 !flags.
isSet(Flag::WritebackDone));
542 return flags.
isSet(Flag::IsSplit);
546 virtual void sendPacketToCache() = 0;
547 virtual void buildPackets() = 0;
552 virtual Cycles handleLocalAccess(
558 virtual bool isCacheBlockHit(
Addr blockAddr,
Addr cacheBlockMask) = 0;
564 flags.
set(Flag::Sent);
573 flags.
set(Flag::Retry);
574 flags.
clear(Flag::Sent);
577 void sendFragmentToTranslation(
int i);
581 return flags.
isSet(Flag::Complete);
587 return _state == State::Translation;
593 return flags.
isSet(Flag::TranslationStarted) &&
600 return _state == State::Translation &&
601 flags.
isSet(Flag::TranslationStarted) &&
602 !flags.
isSet(Flag::TranslationFinished);
608 return flags.
isSet(Flag::Sent);
614 return _state == State::PartialFault;
620 return (_state == State::Request ||
621 (isPartialFault() &&
isLoad()));
636 release(Flag::LSQEntryFreed);
645 release(Flag::Discarded);
651 assert(_numOutstandingPackets > 0);
652 _numOutstandingPackets--;
653 if (_numOutstandingPackets == 0 && isReleased())
660 assert(!flags.
isSet(Flag::WritebackScheduled));
661 flags.
set(Flag::WritebackScheduled);
667 flags.
set(Flag::WritebackDone);
677 assert(numInTranslationFragments == 0);
678 flags.
set(Flag::TranslationSquashed);
688 flags.
set(Flag::Complete);
725 const Addr&
addr,
const uint32_t& size,
728 uint64_t* res =
nullptr,
731 std::move(amo_op)) {}
734 virtual void initiateTranslation();
738 virtual void sendPacketToCache();
739 virtual void buildPackets();
741 virtual bool isCacheBlockHit(
Addr blockAddr,
Addr cacheBlockMask);
783 const Addr&
addr,
const uint32_t& size,
786 uint64_t* res =
nullptr) :
790 numReceivedPackets(0),
794 flags.
set(Flag::IsSplit);
803 _mainPacket =
nullptr;
809 virtual void initiateTranslation();
810 virtual void sendPacketToCache();
811 virtual void buildPackets();
814 virtual bool isCacheBlockHit(
Addr blockAddr,
Addr cacheBlockMask);
821 LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params);
825 std::string
name()
const;
861 {
thread.at(tid).commitLoads(youngest_inst); }
867 {
thread.at(tid).commitStores(youngest_inst); }
883 thread.at(tid).squash(squashed_num);
898 return thread.at(tid).getMemDepViolator();
908 return thread.at(tid).getLoadHeadSeqNum();
918 return thread.at(tid).getStoreHeadSeqNum();
1083 if (pol == SMTQueuePolicy::Dynamic) {
1085 }
else if (pol == SMTQueuePolicy::Partitioned) {
1088 }
else if (pol == SMTQueuePolicy::Threshold) {
1092 return SMTThreshold;
1121 template <
class Impl>
1127 return thread.at(tid).read(req, load_idx);
1130 template <
class Impl>
1136 return thread.at(tid).write(req, data, store_idx);
1139 #endif // __CPU_O3_LSQ_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
IEW * iewStage
The IEW stage pointer.
unsigned SQEntries
Total Size of SQ Entries.
void takeOverFrom()
Takes over execution from another CPU's thread.
void set(T v, ByteOrder endian)
Set the value in the data pointer to v using the specified endianness.
ThreadID numThreads
Number of Threads.
DynInstPtr inst
Instruction which initiated the access to memory.
Impl::DynInstPtr DynInstPtr
uint32_t _numOutstandingPackets
Fault pushRequest(const DynInstPtr &inst, bool isLoad, uint8_t *data, unsigned int size, Addr addr, Request::Flags flags, uint64_t *res, AtomicOpFunctorPtr amo_op, const std::vector< bool > &byte_enable)
Cycles is a wrapper class for representing cycle counts, i.e.
PacketPtr mainPkt
The main packet from a split load, used during writeback.
int getCount(ThreadID tid)
Returns the number of instructions in the queues of one thread.
void taskId(const uint32_t &v)
LSQSenderState * _senderState
unsigned LQEntries
Total Size of LQ Entries.
bool willWB()
Returns if the LSQ will write back to memory this cycle.
std::vector< RequestPtr > _requests
unsigned maxSQEntries
Max SQ Size - Used to Enforce Sharing Policies.
SMTQueuePolicy lsqPolicy
The LSQ policy for SMT mode.
void dumpInsts(ThreadID tid) const
Debugging function to print out instructions from a specific thread.
std::vector< LSQUnit > thread
The LSQ units for individual threads.
std::vector< bool > _byteEnable
std::string name() const
Returns the name of the LSQ.
void tick()
Ticks the LSQ.
std::shared_ptr< Request > RequestPtr
void packetSent()
Update the status to reflect that a packet was sent.
bool sqFull()
Returns if any of the SQs are full.
void packetNotSent()
Update the status to reflect that a packet was not sent.
bool isComplete()
Completes a packet and returns whether the access is finished.
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
const Request::Flags _flags
LSQ< Impl > * lsq
Pointer to LSQ.
LSQRequest * _request
The senderState needs to know the LSQRequest who owns it.
bool violation()
Returns whether or not there was a memory ordering violation.
bool hasStoresToWB()
Returns whether or not there are any stores to write back to memory.
Overload hash function for BasicBlockRange type.
Derived class to hold any sender state the LSQ needs.
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
LSQSenderState(LSQRequest *request, bool isLoad_)
Default constructor.
bool isTranslationComplete()
int usedStorePorts
The number of used cache ports in this cycle by stores.
virtual ~LSQRequest()
Destructor.
bool isFull()
Returns if the LSQ is full (either LQ or SQ is full).
int getLoadHead(ThreadID tid)
Returns the head index of the load queue for a specific thread.
bool lqEmpty() const
Returns if all of the LQs are empty.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
bool hasStoresToWB(ThreadID tid)
Returns whether or not a specific thread has any stores to write back to memory.
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked...
bool needWB
Whether or not the instruction will need to writeback.
std::vector< PacketPtr > _packets
void dumpInsts() const
Debugging function to print out all instructions.
AtomicOpFunctorPtr _amo_op
bool violation(ThreadID tid)
Returns whether or not there was a memory ordering violation for a specific thread.
LSQRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad)
bool willWB(ThreadID tid)
Returns if the LSQ of a specific thread will write back to memory this cycle.
::Flags< FlagsStorage > FlagsType
bool isSplit
Whether or not this access is split in two.
uint32_t numInTranslationFragments
void writebackScheduled()
virtual bool squashed() const override
This function is used by the page table walker to determine if it should translate the a pending requ...
Impl::CPUPol::LSQUnit LSQUnit
void release(Flag reason)
Release the LSQRequest.
bool isMemAccessRequired()
bool _cacheBlocked
D-cache is blocked.
void senderState(LSQSenderState *st)
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
bool isDrained() const
Has the LSQ drained?
Addr getVaddr(int idx=0) const
void setState(const State &newState)
void cachePortBusy(bool is_load)
Another store port is in use.
unsigned numFreeStoreEntries()
Returns the number of free store entries.
InstSeqNum getLoadHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the load queue.
DcachePort dcachePort
Data port.
std::vector< Fault > _fault
void setContext(const ContextID &context_id)
Convenience getters/setters.
int numStores(ThreadID tid)
Returns the total number of stores for a single thread.
int usedLoadPorts
The number of used cache ports in this cycle by loads.
void drainSanityCheck() const
Perform sanity checks after a drain.
int numLoads()
Returns the total number of loads in the load queue.
DcachePort(LSQ< Impl > *_lsq, FullO3CPU< Impl > *_cpu)
Default constructor.
unsigned maxLQEntries
Max LQ Size - Used to Enforce Sharing Policies.
void sendFragmentToTranslation(int i)
void setVirt(Addr vaddr, unsigned size, Request::Flags flags_, MasterID mid, Addr pc)
Set up virtual request.
int numStoresToWB(ThreadID tid)
Returns the number of stores a specific thread has to write back.
Fault executeStore(const DynInstPtr &inst)
Executes a store.
Fault write(LSQRequest *req, uint8_t *data, int store_idx)
Executes a store operation, using the store specified at the store index.
void addRequest(Addr addr, unsigned size, const std::vector< bool > &byte_enable)
Helper function used to add a (sub)request, given its address addr, size size and byte-enable mask by...
virtual bool isSnooping() const
As this CPU requires snooping to maintain the load store queue change the behaviour from the base CPU...
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool deleted
Has the request been deleted? LSQ entries can be squashed before the response comes back...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
InstSeqNum getStoreHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the store queue.
void markDelayed() override
Signal that the translation has been delayed due to a hw page table walk.
uint32_t numTranslatedFragments
bool isLoad
Whether or not it is a load.
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
bool isReleased()
Test if the LSQRequest has been released, i.e.
uint32_t _entryIdx
LQ/SQ entry idx.
bool isEmpty() const
Returns if the LSQ is empty (both LQ and SQ are empty).
PacketPtr pendingPacket
A second packet from a split store that needs sending.
virtual void complete()=0
void discardSenderState()
Mark senderState as discarded.
int getCount()
Returns the number of instructions in all of the queues.
bool isTranslationBlocked()
int16_t ThreadID
Thread index/ID type.
SingleDataRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr, AtomicOpFunctorPtr amo_op=nullptr)
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
const LSQSenderState * senderState() const
uint8_t outstanding
Number of outstanding packets to complete.
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
unsigned numFreeLoadEntries()
Returns the number of free load entries.
int entryAmount(ThreadID num_threads)
Number of entries needed for the given amount of threads.
virtual PacketPtr mainPacket()
LSQRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr, AtomicOpFunctorPtr amo_op=nullptr)
RequestPtr request(int idx=0)
Fault read(LSQRequest *req, int load_idx)
Executes a read operation, using the load specified at the load index.
void recvReqRetry()
Retry the previous send that failed.
DcachePort class for the load/store queue.
const DynInstPtr & instruction()
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
uint32_t numReceivedPackets
int cacheStorePorts
The number of cache ports available each cycle (stores only).
virtual RequestPtr mainRequest()
LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params)
Constructs an LSQ with the given parameters.
int numStores()
Returns the total number of stores in the store queue.
bool isAnyOutstandingRequest()
Test if there is any in-flight translation or mem access request.
void install()
Install the request in the LQ/SQ.
bool isAnyActiveElement(const std::vector< bool >::const_iterator &it_start, const std::vector< bool >::const_iterator &it_end)
Test if there is any active element in an enablement range.
bool cachePortAvailable(bool is_load) const
Is any store port available to use?
SplitDataRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr)
virtual ~SingleDataRequest()
void discard()
The request is discarded (e.g.
Memory operation metadata.
void completeDataAccess(PacketPtr pkt)
int cacheLoadPorts
The number of cache ports available each cycle (loads only).
void regStats()
Registers statistics of each LSQ unit.
bool recvTimingResp(PacketPtr pkt)
Handles writing back and completing the load or store that has returned from memory.
LoadQueue loadQueue
The load queue.
virtual ~SplitDataRequest()
bool pktToSend
Whether or not there is a packet that needs sending.
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
CircularQueue< SQEntry > storeQueue
The store queue.
static uint32_t maxLSQAllocation(SMTQueuePolicy pol, uint32_t entries, uint32_t numThreads, uint32_t SMTThreshold)
Auxiliary function to calculate per-thread max LSQ allocation limit.
bool cacheBlocked() const
Is D-cache blocked?
PacketPtr packet(int idx=0)
MasterPort & getDataPort()
O3CPU * cpu
The CPU pointer.
std::list< ThreadID > * activeThreads
List of Active Threads in System.
bool isStalled()
Returns if the LSQ is stalled due to a memory operation that must be replayed.
void freeLSQEntry()
The LSQ entry is cleared.
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
void recvTimingSnoopReq(PacketPtr pkt)
std::shared_ptr< FaultBase > Fault
unsigned numFreeEntries(ThreadID tid)
Returns the number of free entries for a specific thread.
int getStoreHead(ThreadID tid)
Returns the head index of the store queue.
int ContextID
Globally unique thread context ID.
int numLoads(ThreadID tid)
Returns the total number of loads for a single thread.
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
bool sqEmpty() const
Returns if all of the SQs are empty.
const RequestPtr request(int idx=0) const
bool lqFull()
Returns if any of the LQs are full.
FullO3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time ...