41 #ifndef __CPU_O3_FETCH_HH__ 42 #define __CPU_O3_FETCH_HH__ 44 #include "arch/decoder.hh" 45 #include "arch/utility.hh" 47 #include "config/the_isa.hh" 52 #include "enums/FetchPolicy.hh" 58 struct DerivO3CPUParams;
75 typedef typename Impl::CPUPol
CPUPol;
78 typedef typename Impl::O3CPU
O3CPU;
149 : fetch(_fetch), req(nullptr)
171 return "FullO3CPU FetchFinishTranslation";
223 std::string
name()
const;
330 const DynInstPtr squashInst,
ThreadID tid);
336 const DynInstPtr squashInst,
352 DynInstPtr squashInst,
ThreadID tid);
369 void fetch(
bool &status_change);
602 #endif //__CPU_O3_FETCH_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
MasterPort & getInstPort()
Stats::Formula fetchRate
Number of instruction fetched per cycle.
Addr fetchBufferMask
Mask to align a fetch address to a fetch buffer boundary.
unsigned fetchWidth
The width of fetch in instructions.
virtual void recvReqRetry()
Handles doing a retry of a failed fetch.
ThreadID iqCount()
Returns the appropriate thread to fetch using the IQ count policy.
void profileStall(ThreadID tid)
Profile the reasons of fetch stall.
TheISA::Decoder * decoder[Impl::MaxThreads]
The decoder.
Cycles is a wrapper class for representing cycle counts, i.e.
Stats::Formula idleRate
Rate of how often fetch was idle.
void tick()
Ticks the fetch stage, processing all inputs signals and fetching as many instructions as possible...
void resetStage()
Reset this pipeline stage.
void squashFromDecode(const TheISA::PCState &newPC, const DynInstPtr squashInst, const InstSeqNum seq_num, ThreadID tid)
Squashes a specific thread and resets the PC.
TimeBuffer< TimeStruct >::wire fromRename
Wire to get rename's information from backwards time buffer.
void pipelineIcacheAccesses(ThreadID tid)
Pipeline the next I-cache access to the current one.
Addr fetchBufferPC[Impl::MaxThreads]
The PC of the first instruction loaded into the fetch buffer.
bool checkInterrupt(Addr pc)
Check if an interrupt is pending and that we need to handle.
std::shared_ptr< Request > RequestPtr
FetchStatus _status
Fetch status.
Impl::DynInstPtr DynInstPtr
bool checkStall(ThreadID tid) const
Checks if a thread is stalled.
Stats::Scalar fetchPendingTrapStallCycles
Total number of stall cycles caused by pending traps.
TimeBuffer< FetchStruct >::wire toDecode
Wire used to write any information heading to decode.
int numInst
Tracks how many instructions has been fetched this cycle.
void processCacheCompletion(PacketPtr pkt)
Processes cache completion event.
Stats::Scalar fetchMiscStallCycles
Total number of cycles spent in any other state.
Stats::Scalar fetchIdleCycles
Stat for total number of cycles spent blocked due to other stages in the pipeline.
const char * description() const
Return a C string describing the event.
FinishTranslationEvent(DefaultFetch< Impl > *_fetch)
Stats::Formula branchRate
Number of branch fetches per cycle.
unsigned fetchQueueSize
The size of the fetch queue in micro-ops.
Stats::Scalar fetchTlbSquashes
Total number of outstanding tlb accesses that were dropped due to a squash.
TimeBuffer< TimeStruct >::wire fromDecode
Wire to get decode's information from backwards time buffer.
Stats::Scalar icacheStallCycles
Stat for total number of cycles stalled due to an icache miss.
ThreadID getFetchingThread()
Returns the appropriate thread to fetch, given the fetch policy.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
bool issuePipelinedIfetch[Impl::MaxThreads]
Set to true if a pipelined I-cache request should be issued.
ThreadID numThreads
Number of threads.
This is a simple scalar statistic, like a counter.
CPUPol::TimeStruct TimeStruct
DefaultFetch< Impl > * fetch
Stats::Scalar fetchedInsts
Stat for total number of fetched instructions.
Stats::Scalar fetchNoActiveThreadStallCycles
Total number of stall cycles caused by no active threads to run.
void drainSanityCheck() const
Perform sanity checks after a drain.
FetchStatus
Overall fetch status.
Stats::Distribution fetchNisnDist
Distribution of number of instructions fetched each cycle.
void deactivateThread(ThreadID tid)
For priority-based fetch policies, need to keep update priorityList.
Stats::Scalar fetchPendingDrainCycles
Total number of cycles spent in waiting for drains.
TheISA::MachInst MachInst
Typedefs from ISA.
PacketPtr retryPkt
The packet that is waiting to be retried.
ThreadID numFetchingThreads
Number of threads that are actively fetching.
Cycles iewToFetchDelay
IEW to fetch delay.
void process()
Process the delayed finish translation.
void drainStall(ThreadID tid)
Stall the fetch stage after reaching a safe drain point.
Stats::Scalar fetchCycles
Stat for total number of cycles spent fetching.
ThreadID threadFetched
Thread ID being fetched.
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
void regStats()
Registers statistics.
void clearStates(ThreadID tid)
Clear all thread-specific states.
Addr fetchOffset[Impl::MaxThreads]
ThreadID roundRobin()
Returns the appropriate thread to fetch using a round robin policy.
void switchToActive()
Changes the status of this stage to active, and indicates this to the CPU.
DefaultFetch class handles both single threaded and SMT fetch.
A simple distribution stat.
int instSize
Size of instructions.
void finishTranslation(const Fault &fault, const RequestPtr &mem_req)
Stats::Scalar fetchTlbCycles
Stat for total number of cycles spent waiting for translation.
RequestPtr memReq[Impl::MaxThreads]
Memory request used to access cache.
IcachePort icachePort
Instruction port.
bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc)
Fetches the cache line that contains the fetch PC.
IcachePort(DefaultFetch< Impl > *_fetch, FullO3CPU< Impl > *_cpu)
Default constructor.
DefaultFetch(O3CPU *_cpu, DerivO3CPUParams *params)
DefaultFetch constructor.
void setReq(const RequestPtr &_req)
ThreadID retryTid
The thread that is waiting on the cache to tell fetch to retry.
Stats::Scalar predictedBranches
Stat for total number of predicted branches.
DefaultFetch< Impl > * fetch
Pointer to fetch.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
std::list< ThreadID > * activeThreads
List of Active Threads.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void regProbePoints()
Registers probes.
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's information from backwards time buffer.
Stats::Scalar fetchIcacheWaitRetryStallCycles
Total number of stall cycles caused by I-cache wait retrys.
int64_t Counter
Statistics counter type.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
uint8_t * fetchBuffer[Impl::MaxThreads]
The fetch data that is being fetched and buffered.
std::deque< DynInstPtr > fetchQueue[Impl::MaxThreads]
Queue of fetched instructions.
Impl::CPUPol CPUPol
Typedefs from Impl.
Stats::Scalar fetchIcacheSquashes
Total number of outstanding icache accesses that were dropped due to a squash.
bool interruptPending
Checks if there is an interrupt pending.
ThreadID branchCount()
Returns the appropriate thread to fetch using the branch count policy.
unsigned decodeWidth
The width of decode in instructions.
TheISA::PCState pc[Impl::MaxThreads]
Counter lastIcacheStall[Impl::MaxThreads]
Icache stall statistics.
Basically a wrapper class to hold both the branch predictor and the BTB.
FinishTranslationEvent finishTranslationEvent
Event used to delay fault generation of translation faults.
Stats::Scalar fetchPendingQuiesceStallCycles
Total number of stall cycles caused by pending quiesce instructions.
int16_t ThreadID
Thread index/ID type.
void setTimeBuffer(TimeBuffer< TimeStruct > *time_buffer)
Sets the main backwards communication time buffer pointer.
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Sets pointer to time buffer used to communicate to the next stage.
Addr fetchBufferAlignPC(Addr addr)
Align a PC to the start of a fetch buffer block.
ThreadStatus fetchStatus[Impl::MaxThreads]
Per-thread status.
Declaration of the Packet class.
Stalls stalls[Impl::MaxThreads]
Tracks which stages are telling fetch to stall.
O3CPU * cpu
Pointer to the O3CPU.
bool cacheBlocked
Is the cache blocked? If so no threads can access it.
FetchTranslation(DefaultFetch< Impl > *_fetch)
FetchStatus updateFetchStatus()
Updates overall fetch stage status; to be called at the end of each cycle.
void takeOverFrom(Port *old)
A utility function to make it easier to swap out ports.
Cycles decodeToFetchDelay
Decode to fetch delay.
Cycles commitToFetchDelay
Commit to fetch delay.
void switchToInactive()
Changes the status of this stage to inactive, and indicates this to the CPU.
const std::string name() const
Return port name (for DPRINTF).
void startupStage()
Initialize stage.
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...
ProbePointArg< RequestPtr > * ppFetchRequestSent
To probe when a fetch request is successfully sent.
ProbePointArg< DynInstPtr > * ppFetch
Probe points.
CPUPol::FetchStruct FetchStruct
Typedefs from the CPU policy.
void setFault(Fault _fault)
Stats::Scalar fetchSquashCycles
Stat for total number of cycles spent squashing.
void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num, DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
unsigned fetchBufferSize
The size of the fetch buffer in bytes.
ThreadID lsqCount()
Returns the appropriate thread to fetch using the LSQ count policy.
FetchPolicy fetchPolicy
Fetch policy.
Cycles renameToFetchDelay
Rename to fetch delay.
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
bool isDrained() const
Has the stage drained?
Source of possible stalls.
void wakeFromQuiesce()
Tells fetch to wake up from a quiesce instruction.
Stats::Scalar fetchBlockedCycles
Total number of cycles spent blocked.
ThreadStatus
Individual thread status.
Stats::Scalar fetchedCacheLines
Stat for total number of fetched cache lines.
void drainResume()
Resume after a drain.
std::list< ThreadID > priorityList
List that has the threads organized by priority.
bool checkSignalsAndUpdate(ThreadID tid)
Checks all input signals and updates the status as necessary.
StaticInstPtr macroop[Impl::MaxThreads]
bool delayedCommit[Impl::MaxThreads]
Can the fetch stage redirect from an interrupt on this instruction?
Stats::Scalar fetchedBranches
Total number of fetched branches.
GenericISA::DelaySlotPCState< MachInst > PCState
DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst, StaticInstPtr curMacroop, TheISA::PCState thisPC, TheISA::PCState nextPC, bool trace)
std::shared_ptr< FaultBase > Fault
BPredUnit * branchPred
BPredUnit.
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
bool wroteToTimeBuffer
Variable that tracks if fetch has written to the time buffer this cycle.
void doSquash(const TheISA::PCState &newPC, const DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
DefaultFetch< Impl > * fetch
unsigned int cacheBlkSize
Cache block size.
bool fetchBufferValid[Impl::MaxThreads]
Whether or not the fetch buffer data is valid.
IcachePort class for instruction fetch.
FullO3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time ...
void markDelayed()
Signal that the translation has been delayed due to a hw page table walk.
TimeBuffer< TimeStruct >::wire fromIEW
Wire to get iew's information from backwards time buffer.