Go to the documentation of this file.
41 #ifndef __CPU_O3_FETCH_HH__
42 #define __CPU_O3_FETCH_HH__
44 #include "arch/decoder.hh"
47 #include "config/the_isa.hh"
55 #include "enums/SMTFetchPolicy.hh"
155 return "CPU FetchFinishTranslation";
206 Fetch(
CPU *_cpu,
const O3CPUParams ¶ms);
209 std::string
name()
const;
350 void fetch(
bool &status_change);
595 #endif //__CPU_O3_FETCH_HH__
This is a simple scalar statistic, like a counter.
statistics::Scalar pendingQuiesceStallCycles
Total number of stall cycles caused by pending quiesce instructions.
FetchStatus
Overall fetch status.
ThreadID numFetchingThreads
Number of threads that are actively fetching.
FetchStatus _status
Fetch status.
bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc)
Fetches the cache line that contains the fetch PC.
void switchToInactive()
Changes the status of this stage to inactive, and indicates this to the CPU.
statistics::Scalar insts
Stat for total number of fetched instructions.
statistics::Scalar blockedCycles
Total number of cycles spent blocked.
A simple distribution stat.
uint8_t * fetchBuffer[MaxThreads]
The fetch data that is being fetched and buffered.
statistics::Scalar pendingDrainCycles
Total number of cycles spent in waiting for drains.
statistics::Scalar miscStallCycles
Total number of cycles spent in any other state.
void profileStall(ThreadID tid)
Profile the reasons of fetch stall.
RequestPort & getInstPort()
bool lookupAndUpdateNextPC(const DynInstPtr &inst, TheISA::PCState &pc)
Looks up in the branch predictor to see if the next PC should be either next PC+=MachInst or a branch...
void pipelineIcacheAccesses(ThreadID tid)
Pipeline the next I-cache access to the current one.
virtual void recvReqRetry()
Handles doing a retry of a failed fetch.
branch_prediction::BPredUnit * branchPred
BPredUnit.
void drainStall(ThreadID tid)
Stall the fetch stage after reaching a safe drain point.
bool checkInterrupt(Addr pc)
Check if an interrupt is pending and that we need to handle.
PacketPtr retryPkt
The packet that is waiting to be retried.
Cycles iewToFetchDelay
IEW to fetch delay.
void wakeFromQuiesce()
Tells fetch to wake up from a quiesce instruction.
std::string name() const
Returns the name of fetch.
void processCacheCompletion(PacketPtr pkt)
Processes cache completion event.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
void squashFromDecode(const TheISA::PCState &newPC, const DynInstPtr squashInst, const InstSeqNum seq_num, ThreadID tid)
Squashes a specific thread and resets the PC.
FetchTranslation(Fetch *_fetch)
statistics::Distribution nisnDist
Distribution of number of instructions fetched each cycle.
Fetch(CPU *_cpu, const O3CPUParams ¶ms)
Fetch constructor.
bool delayedCommit[MaxThreads]
Can the fetch stage redirect from an interrupt on this instruction?
statistics::Scalar cacheLines
Stat for total number of fetched cache lines.
Source of possible stalls.
unsigned fetchWidth
The width of fetch in instructions.
void clearStates(ThreadID tid)
Clear all thread-specific states.
Fetch class handles both single threaded and SMT fetch.
int numInst
Tracks how many instructions has been fetched this cycle.
ThreadID retryTid
The thread that is waiting on the cache to tell fetch to retry.
bool isDrained() const
Has the stage drained?
StaticInstPtr macroop[MaxThreads]
ThreadID getFetchingThread()
Returns the appropriate thread to fetch, given the fetch policy.
const char * description() const
Return a C string describing the event.
gem5::o3::Fetch::FetchStatGroup fetchStats
statistics::Scalar idleCycles
Stat for total number of cycles spent blocked due to other stages in the pipeline.
statistics::Scalar pendingTrapStallCycles
Total number of stall cycles caused by pending traps.
ProbePointArg< RequestPtr > * ppFetchRequestSent
To probe when a fetch request is successfully sent.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
void setFault(Fault _fault)
statistics::Scalar tlbCycles
Stat for total number of cycles spent waiting for translation.
Cycles is a wrapper class for representing cycle counts, i.e.
statistics::Scalar icacheStallCycles
Stat for total number of cycles stalled due to an icache miss.
Fetch * fetch
Pointer to fetch.
void drainSanityCheck() const
Perform sanity checks after a drain.
Counter lastIcacheStall[MaxThreads]
Icache stall statistics.
void drainResume()
Resume after a drain.
TimeBuffer< TimeStruct >::wire fromDecode
Wire to get decode's information from backwards time buffer.
unsigned fetchBufferSize
The size of the fetch buffer in bytes.
statistics::Scalar tlbSquashes
Total number of outstanding tlb accesses that were dropped due to a squash.
TheISA::PCState pc[MaxThreads]
std::list< ThreadID > priorityList
List that has the threads organized by priority.
TimeBuffer< TimeStruct >::wire fromIEW
Wire to get iew's information from backwards time buffer.
Cycles commitToFetchDelay
Commit to fetch delay.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
void fetch(bool &status_change)
Does the actual fetching of instructions and passing them on to the next stage.
statistics::Scalar branches
Total number of fetched branches.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
std::shared_ptr< FaultBase > Fault
bool checkStall(ThreadID tid) const
Checks if a thread is stalled.
FinishTranslationEvent finishTranslationEvent
Event used to delay fault generation of translation faults.
Stalls stalls[MaxThreads]
Tracks which stages are telling fetch to stall.
bool wroteToTimeBuffer
Variable that tracks if fetch has written to the time buffer this cycle.
void recvReqRetry()
Handles retrying the fetch access.
ThreadID roundRobin()
Returns the appropriate thread to fetch using a round robin policy.
Addr fetchBufferAlignPC(Addr addr)
Align a PC to the start of a fetch buffer block.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
ThreadID lsqCount()
Returns the appropriate thread to fetch using the LSQ count policy.
GenericISA::DelaySlotPCState< 4 > PCState
void setTimeBuffer(TimeBuffer< TimeStruct > *time_buffer)
Sets the main backwards communication time buffer pointer.
std::shared_ptr< Request > RequestPtr
void setReq(const RequestPtr &_req)
bool fetchBufferValid[MaxThreads]
Whether or not the fetch buffer data is valid.
ThreadID threadFetched
Thread ID being fetched.
void deactivateThread(ThreadID tid)
For priority-based fetch policies, need to keep update priorityList.
void process()
Process the delayed finish translation.
CPU * cpu
Pointer to the O3CPU.
statistics::Scalar cycles
Stat for total number of cycles spent fetching.
statistics::Scalar squashCycles
Stat for total number of cycles spent squashing.
void switchToActive()
Changes the status of this stage to active, and indicates this to the CPU.
statistics::Formula rate
Number of instruction fetched per cycle.
int instSize
Size of instructions.
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
std::deque< DynInstPtr > fetchQueue[MaxThreads]
Queue of fetched instructions.
void tick()
Ticks the fetch stage, processing all inputs signals and fetching as many instructions as possible.
bool interruptPending
Checks if there is an interrupt pending.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
statistics::Scalar icacheSquashes
Total number of outstanding icache accesses that were dropped due to a squash.
statistics::Formula branchRate
Number of branch fetches per cycle.
void resetStage()
Reset this pipeline stage.
FetchStatus updateFetchStatus()
Updates overall fetch stage status; to be called at the end of each cycle.
bool cacheBlocked
Is the cache blocked? If so no threads can access it.
DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst, StaticInstPtr curMacroop, TheISA::PCState thisPC, TheISA::PCState nextPC, bool trace)
void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num, DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
Cycles decodeToFetchDelay
Decode to fetch delay.
bool checkSignalsAndUpdate(ThreadID tid)
Checks all input signals and updates the status as necessary.
void startupStage()
Initialize stage.
void markDelayed()
Signal that the translation has been delayed due to a hw page table walk.
ProbePointArg generates a point for the class of Arg.
unsigned decodeWidth
The width of decode in instructions.
static constexpr int MaxThreads
FinishTranslationEvent(Fetch *_fetch)
ProbePointArg< DynInstPtr > * ppFetch
Probe points.
IcachePort class for instruction fetch.
void finish(const Fault &fault, const RequestPtr &req, gem5::ThreadContext *tc, BaseMMU::Mode mode)
TimeBuffer< FetchStruct >::wire toDecode
Wire used to write any information heading to decode.
ThreadID iqCount()
Returns the appropriate thread to fetch using the IQ count policy.
statistics::Scalar noActiveThreadStallCycles
Total number of stall cycles caused by no active threads to run.
bool issuePipelinedIfetch[MaxThreads]
Set to true if a pipelined I-cache request should be issued.
ThreadStatus
Individual thread status.
SMTFetchPolicy fetchPolicy
Fetch policy.
TimeBuffer< TimeStruct >::wire fromRename
Wire to get rename's information from backwards time buffer.
void takeOverFrom()
Takes over from another CPU's thread.
void doSquash(const TheISA::PCState &newPC, const DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
std::list< ThreadID > * activeThreads
List of Active Threads.
double Counter
All counters are of 64-bit values.
Addr fetchBufferPC[MaxThreads]
The PC of the first instruction loaded into the fetch buffer.
Basically a wrapper class to hold both the branch predictor and the BTB.
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's information from backwards time buffer.
void finishTranslation(const Fault &fault, const RequestPtr &mem_req)
Addr fetchBufferMask
Mask to align a fetch address to a fetch buffer boundary.
IcachePort(Fetch *_fetch, CPU *_cpu)
Default constructor.
statistics::Scalar icacheWaitRetryStallCycles
Total number of stall cycles caused by I-cache wait retrys.
void regProbePoints()
Registers probes.
IcachePort icachePort
Instruction port.
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Sets pointer to time buffer used to communicate to the next stage.
unsigned fetchQueueSize
The size of the fetch queue in micro-ops.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
ThreadID branchCount()
Returns the appropriate thread to fetch using the branch count policy.
Addr fetchOffset[MaxThreads]
statistics::Formula idleRate
Rate of how often fetch was idle.
statistics::Scalar predictedBranches
Stat for total number of predicted branches.
RequestPtr memReq[MaxThreads]
Memory request used to access cache.
ThreadID numThreads
Number of threads.
unsigned int cacheBlkSize
Cache block size.
FetchStatGroup(CPU *cpu, Fetch *fetch)
ThreadStatus fetchStatus[MaxThreads]
Per-thread status.
Cycles renameToFetchDelay
Rename to fetch delay.
TheISA::Decoder * decoder[MaxThreads]
The decoder.
int16_t ThreadID
Thread index/ID type.
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
Generated on Wed Jul 28 2021 12:10:24 for gem5 by doxygen 1.8.17