45 #ifndef __CPU_MINOR_NEW_LSQ_HH__ 46 #define __CPU_MINOR_NEW_LSQ_HH__ 191 void tryToSuppressFault();
193 void disableMemAccess();
194 void completeDisabledMemAccess();
216 Addr req1_addr,
unsigned int req1_size,
217 Addr req2_addr,
unsigned int req2_size);
225 virtual void startAddrTranslation() = 0;
234 virtual void stepToNextPacket() = 0;
237 virtual bool sentAllPackets() = 0;
241 virtual bool hasPacketsInMemSystem() = 0;
245 virtual void retireResponse(
PacketPtr packet_) = 0;
248 virtual bool isBarrier();
252 bool needsToBeSentToStoreBuffer();
260 bool isComplete()
const;
263 void reportData(std::ostream &
os)
const;
290 {
fatal(
"No packets in a SpecialDataRequest"); }
333 {
state = Complete; }
353 void startAddrTranslation();
374 bool isLoad_,
PacketDataPtr data_ = NULL, uint64_t *res_ = NULL) :
375 LSQRequest(port_, inst_, isLoad_, data_, res_),
376 packetInFlight(false),
420 uint64_t *res_ = NULL);
427 void makeFragmentRequests();
431 void makeFragmentPackets();
437 void startAddrTranslation();
443 void stepToNextPacket();
446 {
return numIssuedFragments != numRetiredFragments; }
450 {
return numIssuedFragments == numTranslatedFragments; }
457 void sendNextFragmentToTranslation();
485 unsigned int store_buffer_size,
486 unsigned int store_limit_per_cycle);
490 bool canInsert()
const;
493 void deleteRequest(LSQRequestPtr request);
496 void insert(LSQRequestPtr request);
504 unsigned int &found_slot);
508 void forwardStoreData(LSQRequestPtr load,
unsigned int slot_number);
517 void countIssuedStore(LSQRequestPtr request);
640 LSQ(std::string name_, std::string dcache_port_name_,
642 unsigned int max_accesses_in_memory_system,
unsigned int line_width,
643 unsigned int requests_queue_size,
unsigned int transfers_queue_size,
644 unsigned int store_buffer_size,
645 unsigned int store_buffer_cycle_store_limit);
682 {
return numAccessesIssuedToMemory != 0; }
691 {
return lastMemBarrier[thread_id]; }
MemoryState
State of memory access for head access.
SpecialDataRequest(LSQ &port_, MinorDynInstPtr inst_)
MinorDynInstPtr inst
Instruction which made this request.
void stepToNextPacket()
Remember that the packet has been sent.
SingleDataRequest is used for requests that don't fragment.
const unsigned int numSlots
Number of slots, this is a bound on the size of slots.
unsigned int numAccessesIssuedToMemory
The number of accesses which have been issued to the memory system but have not been committed/discar...
LSQQueue transfers
Once issued to memory (or, for stores, just had their state changed to StoreToStoreBuffer) LSQRequest...
#define fatal(...)
This implements a cprintf based fatal() function.
PacketDataPtr data
Dynamically allocated and populated data carried for building write packets.
Contains class definitions for data flowing between pipeline stages in the top-level structure portio...
EventFunctionWrapper translationEvent
Event to step between translations.
LSQQueue requests
requests contains LSQRequests which have been issued to the TLB by calling ExecContext::readMem/write...
friend std::ostream & operator<<(std::ostream &os, MemoryState state)
Print MemoryState values as shown in the enum definition.
bool isTranslationDelayed
Address translation is delayed due to table walk.
std::vector< Packet * > fragmentPackets
Packets matching fragmentRequests to issue fragments to memory.
unsigned int numIssuedFragments
Number of fragments already issued (<= numFragments)
void popResponse(LSQRequestPtr response)
Sanity check and pop the head response.
void issuedMemBarrierInst(MinorDynInstPtr inst)
A memory barrier instruction has been issued, remember its execSeqNum that we can avoid issuing memor...
unsigned int numUnissuedAccesses
Number of occupied slots which have not yet issued a memory access.
void pushFailedRequest(MinorDynInstPtr inst)
Push a predicate failed-representing request into the queues just to maintain commit order...
std::shared_ptr< Request > RequestPtr
std::deque< LSQRequestPtr > slots
Queue of store requests on their way to memory.
std::vector< RequestPtr > fragmentRequests
Fragment Requests corresponding to the address ranges of each fragment.
unsigned int numStoresInTransfers
The number of stores in the transfers queue.
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
const unsigned int storeLimitPerCycle
Maximum number of stores that can be issued per cycle.
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
void stepToNextPacket()
Step on numIssuedFragments.
SingleDataRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Special request types that don't actually issue memory requests.
void retireResponse(PacketPtr packet_)
Keep the given packet as the response packet LSQRequest::packet.
unsigned int numFragments
Number of fragments this request is split into.
MinorCPUPort(const std::string &name_, MinorCPU &cpu_)
Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
bool canInsert() const
Can a new request be inserted into the queue?
void startAddrTranslation()
Send single translation request.
unsigned int numAccessesInMemorySystem
Count of the number of mem.
LSQRequestPtr findResponse(MinorDynInstPtr inst)
Returns a response if it's at the head of the transfers queue and it's either complete or can be sent...
BarrierDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Wrapper for a queue type to act as a pipeline stage input queue.
bool isBarrier()
Is this a request a barrier?
ThreadContext is the external interface to all thread state for anything outside of the CPU...
This file contains miscellaneous classes and functions for formatting general trace information and a...
FailedDataRequest(LSQ &port_, MinorDynInstPtr inst_)
bool sentAllPackets()
packetInFlight can become false again, so need to check packetSent
Derived SenderState to carry data access info.
bool isSnooping() const override
Determine if this master port is snooping or not.
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Exe...
std::vector< InstSeqNum > lastMemBarrier
Most recent execSeqNum of a memory barrier instruction or 0 if there are no in-flight barriers...
bool canRequest()
Is their space in the request queue to be able to push a request by issuing an isMemRef instruction...
Request for doing barrier accounting in the store buffer.
void completeMemBarrierInst(MinorDynInstPtr inst, bool committed)
Complete a barrier instruction.
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
MemoryState state
Retry state of last issued memory transfer.
bool skippedMemAccess()
Was no memory access attempted for this request?
unsigned int numRetiredFragments
Number of fragments retired back to this request.
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad, Packet::SenderState *sender_state, PacketDataPtr data)
Make a suitable packet for the given request.
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
bool issuedToMemory
This in an access other than a normal cacheable load that's visited the memory system.
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
TLB interace.
Fault pushRequest(MinorDynInstPtr 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=std::vector< bool >())
Single interface for readMem/writeMem/amoMem to issue requests into the LSQ.
bool tryToSend(LSQRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system. ...
bool isLoad
Load/store indication used for building packet.
bool hasPacketsInMemSystem()
Has packet been sent.
MinorCPU::MinorCPUPort & getDcachePort()
Return the raw-bindable port.
bool canSendToMemorySystem()
Can a request be sent to the memory system.
bool canPushIntoStoreBuffer() const
Must check this before trying to insert into the store buffer.
FailedDataRequest represents requests from instructions that failed their predicates but need to ride...
LSQRequest * LSQRequestPtr
bool packetSent
Has the packet been at least sent to the memory system?
unsigned int numInTranslationFragments
Number of fragments in the address translation mechanism.
Classes for buffer, queue and FIFO behaviour.
void clearMemBarrier(MinorDynInstPtr inst)
Clear a barrier (if it's the last one marked up in lastMemBarrier)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
MinorCPU & cpu
My owner(s)
bool sentAllPackets()
Have we stepped past the end of fragmentPackets?
bool isDrained()
Is there nothing left in the LSQ.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
unsigned int numUnissuedStores()
Number of stores in the store buffer which have not been completely issued to the memory system...
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
void tryToSendToTransfers(LSQRequestPtr request)
Try and issue a memory access for a translated request at the head of the requests queue...
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.
AddrRangeCoverage
Coverage of one address range with another.
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
void markDelayed()
BaseTLB::Translation interface.
void step()
Step checks the queues to see if their are issuable transfers which were not otherwise picked up by t...
unsigned int numAccessesInDTLB
Number of requests in the DTLB in the requests queue.
int16_t ThreadID
Thread index/ID type.
void sendStoreToStoreBuffer(LSQRequestPtr request)
A store has been committed, please move it to the store buffer.
LSQRequestPtr retryRequest
The request (from either requests or the store buffer) which is currently waiting have its memory acc...
bool recvTimingResp(PacketPtr pkt)
Memory interface.
uint64_t * res
Res from pushRequest.
DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu)
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
bool hasPacketsInMemSystem()
True if this request has any issued packets in the memory system and so can't be interrupted until it...
Top level definition of the Minor in-order CPU model.
Addr cacheBlockMask
Address Mask for a cache block (e.g.
const std::string name() const
Return port name (for DPRINTF).
bool hasPacketsInMemSystem()
Never sends any requests.
bool isDrained() const
Drained if there is absolutely nothing left in the buffer.
LSQ(std::string name_, std::string dcache_port_name_, MinorCPU &cpu_, Execute &execute_, unsigned int max_accesses_in_memory_system, unsigned int line_width, unsigned int requests_queue_size, unsigned int transfers_queue_size, unsigned int store_buffer_size, unsigned int store_buffer_cycle_store_limit)
bool packetInFlight
Has my only packet been sent to the memory system but has not yet been responded to.
const unsigned int inMemorySystemLimit
Maximum number of in-flight accesses issued to the memory system.
InstSeqNum getLastMemBarrier(ThreadID thread_id) const
Get the execSeqNum of the last issued memory barrier.
const unsigned int lineWidth
Memory system access width (and snap) in bytes.
MinorCPU is an in-order CPU model with four fixed pipeline stages:
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
RequestPtr request
The underlying request of this LSQRequest.
void threadSnoop(LSQRequestPtr request)
Snoop other threads monitors on memory system accesses.
void setSkipped()
Set this request as having been skipped before a memory transfer was attempt.
std::shared_ptr< FaultBase > Fault
bool accessesInFlight() const
Are there any accesses other than normal cached loads in the memory system or having received respons...
Queue< LSQRequestPtr, ReportTraitsPtrAdaptor< LSQRequestPtr >, NoBubbleTraits< LSQRequestPtr > > LSQQueue
The LSQ consists of three queues: requests, transfers and the store buffer storeBuffer.
void recvTimingSnoopReq(PacketPtr pkt)
bool sentAllPackets()
Has no packets to send.
void moveFromRequestsToTransfers(LSQRequestPtr request)
Move a request between queues.
bool needsToTick()
May need to be ticked next cycle as one of the queues contains an actionable transfers or address tra...
unsigned int numTranslatedFragments
Number of fragments that have completed address translation, (numTranslatedFragments + numInTranslati...