Go to the documentation of this file.
45 #ifndef __CPU_MINOR_FETCH1_HH__
46 #define __CPU_MINOR_FETCH1_HH__
186 request = std::make_shared<Request>();
251 pc(other.
pc->clone()),
262 std::unique_ptr<PCStateBase>
pc;
387 Fetch1(
const std::string &name_,
389 const BaseMinorCPUParams ¶ms,
Line fetch data in the forward direction.
unsigned int numFetchesInITLB
Number of requests inside the ITLB rather than in the queues.
static const InstSeqNum firstPredictionSeqNum
constexpr decltype(nullptr) NoFault
MinorCPUPort(const std::string &name_, MinorCPU &cpu_)
void fetchLine(ThreadID tid)
Insert a line fetch into the requests.
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
const std::string name() const
Return port name (for DPRINTF).
Latch< ForwardLineData >::Input out
Output port carrying read lines to Fetch2.
friend std::ostream & operator<<(std::ostream &os, Fetch1::FetchState state)
Id for lines and instructions.
void reportData(std::ostream &os) const
Report interface.
InstId id
Identity of the line that this request will generate.
void minorTraceResponseLine(const std::string &name, FetchRequestPtr response) const
Print the appropriate MinorLine line for a fetch response.
InstSeqNum lineSeqNum
Sequence number for line fetch used for ordering lines to flush.
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Exe...
FetchState
Cycle-by-cycle state.
InstSeqNum predictionSeqNum
Prediction sequence number.
void popAndDiscard(FetchQueue &queue)
Pop a request from the given queue and correctly deallocate and discard it.
Fetch1ThreadInfo(const Fetch1ThreadInfo &other)
Wrapper for a queue type to act as a pipeline stage input queue.
MinorCPU & cpu
The enclosing cpu.
unsigned int numFetchesInMemorySystem
Count of the number fetches which have left the transfers queue and are in the 'wild' in the memory s...
void updateExpectedSeqNums(const BranchData &branch)
Update streamSeqNum and predictionSeqNum from the given branch (and assume these have changed and dis...
MinorCPU is an in-order CPU model with four fixed pipeline stages:
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Latch< BranchData >::Output prediction
Input port carrying branch predictions from Fetch2.
FetchQueue transfers
Queue of in-memory system requests and responses.
static const InstSeqNum firstStreamSeqNum
First sequence numbers to use in initialisation of the pipeline and to be expected on the first line/...
unsigned int lineSnap
Line snap size in bytes.
Interface for things with names.
IcachePort icachePort
IcachePort to pass to the CPU.
void handleTLBResponse(FetchRequestPtr response)
Handle pushing a TLB response onto the right queue.
bool isDiscardable() const
Is this line out of date with the current stream/prediction sequence and can it be discarded without ...
Fetch1 & fetch
Owning fetch unit.
ThreadID getScheduledThread()
Use the current threading policy to determine the next thread to fetch from.
std::vector< InputBuffer< ForwardLineData > > & nextStageReserve
Interface to reserve space in the next stage.
MinorCPU::MinorCPUPort & getIcachePort()
Returns the IcachePort owned by this Fetch1.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
unsigned int maxLineWidth
Maximum fetch width in bytes.
virtual std::string name() const
std::shared_ptr< FaultBase > Fault
Fault fault
Fill in a fault if one happens during fetch, check this by picking apart the response packet.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
bool isComplete() const
Is this a complete read line or fault.
void moveFromRequestsToTransfers(FetchRequestPtr request)
Move a request between queues.
void tryToSendToTransfers(FetchRequestPtr request)
Try and issue a fetch for a translated request at the head of the requests queue.
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
std::shared_ptr< Request > RequestPtr
A stage responsible for fetching "lines" from memory and passing them to Fetch2.
bool blocked
Blocked indication for report.
FetchRequest(Fetch1 &fetch_, InstId id_, Addr pc_)
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
A virtual base opaque structure used to hold state associated with the packet (e.g....
void processResponse(FetchRequestPtr response, ForwardLineData &line)
Convert a response to a ForwardLineData.
IcacheState
State of memory access for head instruction fetch.
unsigned int fetchLimit
Maximum number of fetches allowed in flight (in queues or memory)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
void changeStream(const BranchData &branch)
Start fetching from a new address.
void makePacket()
Make a packet to use with the memory transaction.
virtual void recvReqRetry()
std::unique_ptr< PCStateBase > pc
Fetch PC value.
void markDelayed()
BaseMMU::Translation interface.
FetchRequestState
Progress of this request through address translation and memory.
Fetch1(const std::string &name_, MinorCPU &cpu_, const BaseMinorCPUParams ¶ms, Latch< BranchData >::Output inp_, Latch< ForwardLineData >::Input out_, Latch< BranchData >::Output prediction_, std::vector< InputBuffer< ForwardLineData >> &next_stage_input_buffer)
Latch< BranchData >::Output inp
Input port carrying branch requests from Execute.
void wakeupFetch(ThreadID tid)
Initiate fetch1 fetching.
virtual bool recvTimingResp(PacketPtr pkt)
Memory interface.
Stage cycle-by-cycle state.
MinorCPU & cpu
Construction-assigned data members.
unsigned int numInFlightFetches()
Returns the total number of queue occupancy, in-ITLB and in-memory system fetches.
Addr fetchAddr
The address we're currently fetching lines from.
FetchRequest * FetchRequestPtr
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseMMU::Mode mode)
Interface for ITLB responses.
FetchQueue requests
Queue of address translated requests from Fetch1.
void stepQueues()
Step requests along between requests and transfers queues.
bool tryToSend(FetchRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system.
std::vector< Fetch1ThreadInfo > fetchInfo
Queue< FetchRequestPtr, ReportTraitsPtrAdaptor< FetchRequestPtr >, NoBubbleTraits< FetchRequestPtr > > FetchQueue
Addr pc
PC to fixup with line address.
void evaluate()
Pass on input/buffer data to the output if you can.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
PacketPtr packet
FetchRequests carry packets while they're in the requests and transfers responses queues.
bool wakeupGuard
Signal to guard against sleeping first cycle of wakeup.
RequestPtr request
The underlying request that this fetch represents.
bool isDrained()
Is this stage drained? For Fetch1, draining is initiated by Execute signalling a branch with the reas...
IcacheState icacheState
Retry state of icache_port.
InstSeqNum streamSeqNum
Stream sequence number.
int16_t ThreadID
Thread index/ID type.
IcachePort(std::string name, Fetch1 &fetch_, MinorCPU &cpu)
Generated on Thu Jun 16 2022 10:41:46 for gem5 by doxygen 1.8.17