Go to the documentation of this file.
42 #include "arch/decoder.hh"
48 #include "debug/Branch.hh"
49 #include "debug/Fetch.hh"
50 #include "debug/MinorTrace.hh"
61 const MinorCPUParams ¶ms,
70 branchInp(branchInp_),
71 predictionOut(predictionOut_),
73 nextStageReserve(next_stage_input_buffer),
74 outputWidth(params.decodeInputWidth),
75 processMoreThanOneInput(params.fetch2CycleInput),
76 branchPredictor(*params.branchPred),
77 fetchInfo(params.numThreads),
78 threadPriority(0), stats(&cpu_)
83 if (params.fetch2InputBufferSize < 1) {
84 fatal(
"%s: fetch2InputBufferSize must be >= 1 (%d)\n",
name,
85 params.fetch2InputBufferSize);
89 for (
ThreadID tid = 0; tid < params.numThreads; tid++) {
93 params.fetch2InputBufferSize));
122 DPRINTF(Fetch,
"Dumping whole input buffer\n");
135 if (inst->isFault() || !inst->triedToPredict)
157 DPRINTF(
Branch,
"Unpredicted branch seen inst: %s\n", *inst);
159 branch.
target,
true, inst->id.threadId);
167 DPRINTF(
Branch,
"Branch predicted correctly inst: %s\n", *inst);
175 branch.
target ,
false, inst->id.threadId);
183 DPRINTF(
Branch,
"Branch mis-predicted target inst: %s target: %s\n",
186 branch.
target,
true, inst->id.threadId);
197 assert(!inst->predictedTaken);
200 if (inst->staticInst->isControl() ||
201 inst->staticInst->isSyscall())
204 inst->triedToPredict =
true;
209 inst->id.fetchSeqNum, inst_pc,
212 inst->predictedTaken =
true;
213 inst->predictedTarget = inst_pc;
217 DPRINTF(
Branch,
"Not attempting prediction for inst: %s\n", *inst);
221 if (inst->predictedTaken) {
229 inst->predictedTarget, inst);
237 " new predictionSeqNum: %d\n",
246 if (!
inp.outputWire->isBubble())
262 DPRINTF(Fetch,
"Dumping all input as a stream changing branch"
282 DPRINTF(Fetch,
"Discarding line %s"
283 " due to predictionSeqNum mismatch (expected: %d)\n",
299 DPRINTF(Fetch,
"Scheduled Thread: %d\n", tid);
307 unsigned int output_index = 0;
332 if (!discard_line && (!fetch_info.
havePC || set_pc)) {
336 (line_in->
pc.instAddr() &
decoder->pcMask()) -
338 DPRINTF(Fetch,
"Setting new PC value: %s inputIndex: 0x%x"
339 " lineBaseAddr: 0x%x lineWidth: 0x%x\n",
342 fetch_info.
pc = line_in->
pc;
354 DPRINTF(Fetch,
"Discarding line %s (from inputIndex: %d)"
355 " due to predictionSeqNum mismatch (expected: %d)\n",
358 }
else if (line_in->
isFault()) {
370 assert(dyn_inst->id.execSeqNum == 0);
372 dyn_inst->pc = fetch_info.
pc;
377 dyn_inst->fault = line_in->
fault;
378 DPRINTF(Fetch,
"Fault being passed output_index: "
379 "%d: %s\n", output_index, dyn_inst->fault->name());
381 uint8_t *line = line_in->
line;
390 DPRINTF(Fetch,
"Offering MachInst to decoder addr: 0x%x\n",
413 assert(dyn_inst->id.execSeqNum == 0);
415 dyn_inst->pc = fetch_info.
pc;
416 DPRINTF(Fetch,
"decoder inst %s\n", *dyn_inst);
419 if (decoded_inst->
isLoad())
421 else if (decoded_inst->
isStore())
432 DPRINTF(Fetch,
"Instruction extracted from line %s"
433 " lineWidth: %d output_index: %d inputIndex: %d"
434 " pc: %s inst: %s\n",
437 fetch_info.
pc, *dyn_inst);
439 #if THE_ISA == X86_ISA || THE_ISA == ARM_ISA
454 fetch_info.
pc.upc(0);
455 fetch_info.
pc.nupc(1);
465 DPRINTF(Fetch,
"Inst not ready yet\n");
470 if (
decoder->needMoreBytes()) {
473 DPRINTF(Fetch,
"Updated inputIndex value PC: %s"
474 " inputIndex: 0x%x lineBaseAddr: 0x%x lineWidth: 0x%x\n",
485 if (output_index == 0) {
489 insts_out.
insts[output_index] = dyn_inst;
494 if (debug::MinorTrace && !dyn_inst->isFault() &&
495 dyn_inst->staticInst->isMacroop())
497 dyn_inst->minorTraceInst(*
this,
511 DPRINTF(Fetch,
"Discarding all input on branch/fault\n");
513 fetch_info.
havePC =
false;
515 }
else if (discard_line) {
520 fetch_info.
havePC =
false;
564 if (!
inp.outputWire->isBubble())
575 case enums::SingleThreaded:
576 priority_list.push_back(0);
578 case enums::RoundRobin:
585 panic(
"Unknown fetch policy");
588 for (
auto tid : priority_list) {
606 return (*
inp.outputWire).isBubble() &&
611 : statistics::
Group(cpu,
"fetch2"),
612 ADD_STAT(intInstructions, statistics::units::Count::get(),
613 "Number of integer instructions successfully decoded"),
614 ADD_STAT(fpInstructions, statistics::units::Count::get(),
615 "Number of floating point instructions successfully decoded"),
616 ADD_STAT(vecInstructions, statistics::units::Count::get(),
617 "Number of SIMD instructions successfully decoded"),
618 ADD_STAT(loadInstructions, statistics::units::Count::get(),
619 "Number of memory load instructions successfully decoded"),
620 ADD_STAT(storeInstructions, statistics::units::Count::get(),
621 "Number of memory store instructions successfully decoded"),
622 ADD_STAT(amoInstructions, statistics::units::Count::get(),
623 "Number of memory atomic instructions successfully decoded")
642 std::ostringstream
data;
647 (*
out.inputWire).reportData(
data);
Line fetch data in the forward direction.
#define fatal(...)
This implements a cprintf based fatal() function.
void update(const InstSeqNum &done_sn, ThreadID tid)
Tells the branch predictor to commit any updates until the given sequence number.
std::vector< ThreadID > randomPriority()
InstId id
Thread, stream, prediction ...
bool isBubble() const
BubbleIF interface.
MinorDynInstPtr insts[MAX_FORWARD_INSTS]
Array of carried insts, ref counted.
ThreadID threadId
Thread associated with these instructions.
InstSeqNum lastStreamSeqNum
Stream sequence number of the last seen line used to identify changes of instruction stream.
Reason reason
Explanation for this branch.
Data members after this line are cycle-to-cycle state.
const std::string to_string(sc_enc enc)
bool processMoreThanOneInput
If true, more than one input word can be processed each cycle if there is room in the output to conta...
MinorCPU is an in-order CPU model with four fixed pipeline stages:
unsigned int lineWidth
Explicit line width, don't rely on data.size.
statistics::Scalar loadInstructions
Forward flowing data between Fetch2,Decode,Execute carrying a packet of instructions of a width appro...
void updateBranchPrediction(const BranchData &branch)
Update local branch prediction structures from feedback from Execute.
unsigned int inputIndex
Index into an incompletely processed input line that instructions are to be extracted from.
static bool isStreamChange(const BranchData::Reason reason)
Is a request with this reason actually a request to change the PC rather than a bubble or branch pred...
virtual TheISA::Decoder * getDecoderPtr()=0
branch_prediction::BPredUnit & branchPredictor
Branch predictor passed from Python configuration.
std::vector< minor::MinorThread * > threads
These are thread state-representing objects for this CPU.
Latch< ForwardLineData >::Output inp
Input port carrying lines from Fetch1.
Latch< BranchData >::Input predictionOut
Output port carrying predictions back to Fetch1.
Interface for things with names.
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
const ForwardLineData * getInput(ThreadID tid)
Get a piece of data to work on from the inputBuffer, or 0 if there is no data.
const StaticInstPtr nullStaticInstPtr
Statically allocated null StaticInstPtr.
statistics::Scalar vecInstructions
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Latch< BranchData >::Output branchInp
Input port carrying branches from Execute.
virtual std::string name() const
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
@ CorrectlyPredictedBranch
GenericISA::DelaySlotPCState< 4 > PCState
InstSeqNum streamSeqNum
The 'stream' this instruction belongs to.
InstSeqNum predictionSeqNum
Fetch2 is the source of prediction sequence numbers.
@ BadlyPredictedBranchTarget
std::vector< Fetch2ThreadInfo > fetchInfo
const ThreadID InvalidThreadID
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
statistics::Scalar intInstructions
Stats.
void dumpAllInput(ThreadID tid)
Dump the whole contents of the input buffer.
void squash(const InstSeqNum &squashed_sn, ThreadID tid)
Squashes all outstanding updates until a given sequence number.
TheISA::PCState target
Starting PC of that stream.
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
MinorDynInstPtr inst
Instruction which caused this branch.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
void evaluate()
Pass on input/buffer data to the output if you can.
const std::string & name()
void minorTrace(const char *fmt, Args ...args)
DPRINTFN for MinorTrace reporting.
bool isDrained()
Is this stage drained? For Fetch2, draining is initiated by Execute halting Fetch1 causing Fetch2 to ...
bool isFault() const
This is a fault, not a line.
std::vector< InputBuffer< ForwardLineData > > inputBuffer
void activity()
Records that there is activity this cycle.
void popInput(ThreadID tid)
Pop an element off the input buffer, if there are any.
MinorCPU & cpu
Pointer back to the containing CPU.
statistics::Scalar amoInstructions
void activateStage(const int idx)
Marks a stage as active.
void resize(unsigned int width)
Resize a bubble/empty ForwardInstData and fill with bubbles.
Fetch2Stats(MinorCPU *cpu)
Dynamic instruction for Minor.
ThreadID threadId
ThreadID associated with branch.
Base class for branch operations.
Latch< ForwardInstData >::Input out
Output port carrying instructions into Decode.
Fetch2(const std::string &name, MinorCPU &cpu_, const MinorCPUParams ¶ms, Latch< ForwardLineData >::Output inp_, Latch< BranchData >::Output branchInp_, Latch< BranchData >::Input predictionOut_, Latch< ForwardInstData >::Input out_, std::vector< InputBuffer< ForwardInstData >> &next_stage_input_buffer)
TheISA::PCState pc
Remembered program counter value.
bool havePC
PC is currently valid.
Addr lineBaseAddr
First byte address in the line.
Fault fault
This line has a fault.
InstSeqNum expectedStreamSeqNum
Stream sequence number remembered from last time the predictionSeqNum changed.
enums::ThreadPolicy threadPolicy
Thread Scheduling Policy (RoundRobin, Random, etc)
minor::MinorActivityRecorder * activityRecorder
Activity recording for pipeline.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
gem5::minor::Fetch2::Fetch2Stats stats
InstSeqNum fetchSeqNum
Fetch2 is the source of fetch sequence numbers.
statistics::Scalar fpInstructions
TheISA::PCState pc
PC of the first requested inst within this line.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const FlagsType total
Print the total.
InstSeqNum predictionSeqNum
The predicted qualifier to stream, attached by Fetch2 as a consequence of branch prediction.
statistics::Scalar storeInstructions
std::vector< InputBuffer< ForwardInstData > > & nextStageReserve
Interface to reserve space in the next stage.
virtual void advancePC(TheISA::PCState &pc_state) const =0
std::vector< ThreadID > roundRobinPriority(ThreadID priority)
Thread scheduling utility functions.
bool predict(const StaticInstPtr &inst, const InstSeqNum &seqNum, TheISA::PCState &pc, ThreadID tid)
Predicts whether or not the instruction is a taken branch, and the target of the branch if it is take...
ThreadID getScheduledThread()
Use the current threading policy to determine the next thread to fetch from.
bool blocked
Blocked indication for report.
int16_t ThreadID
Thread index/ID type.
unsigned int outputWidth
Width of output of this stage/input of next in instructions.
ThreadID threadId
The thread to which this line/instruction belongs.
#define panic(...)
This implements a cprintf based panic() function.
void predictBranch(MinorDynInstPtr inst, BranchData &branch)
Predicts branches for the given instruction.
Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17