gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fetch.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2012, 2014 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2004-2006 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __CPU_O3_FETCH_HH__
42 #define __CPU_O3_FETCH_HH__
43 
44 #include "arch/decoder.hh"
45 #include "arch/utility.hh"
46 #include "base/statistics.hh"
47 #include "config/the_isa.hh"
48 #include "cpu/pc_event.hh"
49 #include "cpu/pred/bpred_unit.hh"
50 #include "cpu/timebuf.hh"
51 #include "cpu/translation.hh"
52 #include "enums/SMTFetchPolicy.hh"
53 #include "mem/packet.hh"
54 #include "mem/port.hh"
55 #include "sim/eventq.hh"
56 #include "sim/probe/probe.hh"
57 
58 struct DerivO3CPUParams;
59 template <class Impl>
60 class FullO3CPU;
61 
70 template <class Impl>
72 {
73  public:
75  typedef typename Impl::CPUPol CPUPol;
76  typedef typename Impl::DynInst DynInst;
77  typedef typename Impl::DynInstPtr DynInstPtr;
78  typedef typename Impl::O3CPU O3CPU;
79 
81  typedef typename CPUPol::FetchStruct FetchStruct;
82  typedef typename CPUPol::TimeStruct TimeStruct;
83 
87  class IcachePort : public RequestPort
88  {
89  protected:
92 
93  public:
96  : RequestPort(_cpu->name() + ".icache_port", _cpu), fetch(_fetch)
97  { }
98 
99  protected:
100 
103  virtual bool recvTimingResp(PacketPtr pkt);
104 
106  virtual void recvReqRetry();
107  };
108 
110  {
111  protected:
113 
114  public:
116  : fetch(_fetch)
117  {}
118 
119  void
121  {}
122 
123  void
124  finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc,
126  {
127  assert(mode == BaseTLB::Execute);
128  fetch->finishTranslation(fault, req);
129  delete this;
130  }
131  };
132 
133  private:
134  /* Event to delay delivery of a fetch translation result in case of
135  * a fault and the nop to carry the fault cannot be generated
136  * immediately */
138  {
139  private:
143 
144  public:
146  : fetch(_fetch), req(nullptr)
147  {}
148 
149  void setFault(Fault _fault)
150  {
151  fault = _fault;
152  }
153 
154  void setReq(const RequestPtr &_req)
155  {
156  req = _req;
157  }
158 
160  void process()
161  {
162  assert(fetch->numInst < fetch->fetchWidth);
163  fetch->finishTranslation(fault, req);
164  }
165 
166  const char *description() const
167  {
168  return "FullO3CPU FetchFinishTranslation";
169  }
170  };
171 
172  public:
176  enum FetchStatus {
179  };
180 
195  };
196 
197  private:
200 
202  ThreadStatus fetchStatus[Impl::MaxThreads];
203 
205  SMTFetchPolicy fetchPolicy;
206 
209 
214 
215  public:
217  DefaultFetch(O3CPU *_cpu, const DerivO3CPUParams &params);
218 
220  std::string name() const;
221 
222 
224  void regProbePoints();
225 
227  void setTimeBuffer(TimeBuffer<TimeStruct> *time_buffer);
228 
231 
234 
236  void startupStage();
237 
239  void clearStates(ThreadID tid);
240 
242  void recvReqRetry();
243 
246 
248  void drainResume();
249 
251  void drainSanityCheck() const;
252 
254  bool isDrained() const;
255 
257  void takeOverFrom();
258 
268  void drainStall(ThreadID tid);
269 
271  void wakeFromQuiesce();
272 
274  void deactivateThread(ThreadID tid);
275  private:
277  void resetStage();
278 
282  inline void switchToActive();
283 
287  inline void switchToInactive();
288 
299 
311  bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc);
312  void finishTranslation(const Fault &fault, const RequestPtr &mem_req);
313 
314 
317  bool
319  {
320  return interruptPending;
321  }
322 
324  inline void doSquash(const TheISA::PCState &newPC,
325  const DynInstPtr squashInst, ThreadID tid);
326 
331  void squashFromDecode(const TheISA::PCState &newPC,
332  const DynInstPtr squashInst,
333  const InstSeqNum seq_num, ThreadID tid);
334 
336  bool checkStall(ThreadID tid) const;
337 
341 
342  public:
347  void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num,
348  DynInstPtr squashInst, ThreadID tid);
349 
353  void tick();
354 
359 
365  void fetch(bool &status_change);
366 
369  {
370  return (addr & ~(fetchBufferMask));
371  }
372 
374  TheISA::Decoder *decoder[Impl::MaxThreads];
375 
377 
378  private:
379  DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst,
380  StaticInstPtr curMacroop, TheISA::PCState thisPC,
381  TheISA::PCState nextPC, bool trace);
382 
385 
388 
390  ThreadID iqCount();
391 
393  ThreadID lsqCount();
394 
398 
401 
403  void profileStall(ThreadID tid);
404 
405  private:
408 
411 
414 
417 
420 
423 
424  //Might be annoying how this name is different than the queue.
427 
430 
431  TheISA::PCState pc[Impl::MaxThreads];
432 
433  Addr fetchOffset[Impl::MaxThreads];
434 
435  StaticInstPtr macroop[Impl::MaxThreads];
436 
438  bool delayedCommit[Impl::MaxThreads];
439 
441  RequestPtr memReq[Impl::MaxThreads];
442 
447 
449  int numInst;
450 
452  struct Stalls {
453  bool decode;
454  bool drain;
455  };
456 
458  Stalls stalls[Impl::MaxThreads];
459 
462 
465 
468 
471 
473  unsigned fetchWidth;
474 
476  unsigned decodeWidth;
477 
480 
483 
486 
488  unsigned int cacheBlkSize;
489 
493  unsigned fetchBufferSize;
494 
497 
499  uint8_t *fetchBuffer[Impl::MaxThreads];
500 
502  Addr fetchBufferPC[Impl::MaxThreads];
503 
505  unsigned fetchQueueSize;
506 
509 
511  bool fetchBufferValid[Impl::MaxThreads];
512 
514  int instSize;
515 
517  Counter lastIcacheStall[Impl::MaxThreads];
518 
521 
524 
527 
530 
535 
538 
540  bool issuePipelinedIfetch[Impl::MaxThreads];
541 
544 
545  protected:
546  struct FetchStatGroup : public Stats::Group
547  {
549  // @todo: Consider making these
550  // vectors and tracking on a per thread basis.
603  } fetchStats;
604 };
605 
606 #endif //__CPU_O3_FETCH_HH__
DefaultFetch::FetchStatGroup::cycles
Stats::Scalar cycles
Stat for total number of cycles spent fetching.
Definition: fetch.hh:560
DefaultFetch::FetchStruct
CPUPol::FetchStruct FetchStruct
Typedefs from the CPU policy.
Definition: fetch.hh:81
DefaultFetch::switchToActive
void switchToActive()
Changes the status of this stage to active, and indicates this to the CPU.
Definition: fetch_impl.hh:484
DefaultFetch::FetchStatGroup::pendingQuiesceStallCycles
Stats::Scalar pendingQuiesceStallCycles
Total number of stall cycles caused by pending quiesce instructions.
Definition: fetch.hh:582
DefaultFetch::macroop
StaticInstPtr macroop[Impl::MaxThreads]
Definition: fetch.hh:435
FullO3CPU
FullO3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time ...
Definition: cpu.hh:91
DefaultFetch::FetchTranslation::FetchTranslation
FetchTranslation(DefaultFetch< Impl > *_fetch)
Definition: fetch.hh:115
DefaultFetch::FinishTranslationEvent::setReq
void setReq(const RequestPtr &_req)
Definition: fetch.hh:154
DefaultFetch::getFetchingThread
ThreadID getFetchingThread()
Returns the appropriate thread to fetch, given the fetch policy.
Definition: fetch_impl.hh:1412
DefaultFetch::commitToFetchDelay
Cycles commitToFetchDelay
Commit to fetch delay.
Definition: fetch.hh:470
DefaultFetch::Stalls::decode
bool decode
Definition: fetch.hh:453
DefaultFetch::FinishTranslationEvent::fault
Fault fault
Definition: fetch.hh:141
DefaultFetch::fetchBufferAlignPC
Addr fetchBufferAlignPC(Addr addr)
Align a PC to the start of a fetch buffer block.
Definition: fetch.hh:368
DefaultFetch::DefaultFetch
DefaultFetch(O3CPU *_cpu, const DerivO3CPUParams &params)
DefaultFetch constructor.
Definition: fetch_impl.hh:75
DefaultFetch::FetchStatGroup::tlbSquashes
Stats::Scalar tlbSquashes
Total number of outstanding tlb accesses that were dropped due to a squash.
Definition: fetch.hh:594
DefaultFetch::switchToInactive
void switchToInactive()
Changes the status of this stage to inactive, and indicates this to the CPU.
Definition: fetch_impl.hh:497
DefaultFetch::IcacheAccessComplete
@ IcacheAccessComplete
Definition: fetch.hh:193
DefaultFetch::finishTranslationEvent
FinishTranslationEvent finishTranslationEvent
Event used to delay fault generation of translation faults.
Definition: fetch.hh:543
DefaultFetch::fetchPolicy
SMTFetchPolicy fetchPolicy
Fetch policy.
Definition: fetch.hh:205
DefaultFetch::FetchStatGroup::predictedBranches
Stats::Scalar predictedBranches
Stat for total number of predicted branches.
Definition: fetch.hh:558
DefaultFetch::QuiescePending
@ QuiescePending
Definition: fetch.hh:189
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
DefaultFetch::fetchOffset
Addr fetchOffset[Impl::MaxThreads]
Definition: fetch.hh:433
DefaultFetch::FetchStatus
FetchStatus
Overall fetch status.
Definition: fetch.hh:176
DefaultFetch::O3CPU
Impl::O3CPU O3CPU
Definition: fetch.hh:78
DefaultFetch::IcacheWaitResponse
@ IcacheWaitResponse
Definition: fetch.hh:191
DefaultFetch::takeOverFrom
void takeOverFrom()
Takes over from another CPU's thread.
Definition: fetch_impl.hh:455
DefaultFetch::FetchStatGroup::pendingTrapStallCycles
Stats::Scalar pendingTrapStallCycles
Total number of stall cycles caused by pending traps.
Definition: fetch.hh:579
DefaultFetch::regProbePoints
void regProbePoints()
Registers probes.
Definition: fetch_impl.hh:150
BaseTLB::Mode
Mode
Definition: tlb.hh:57
ProbePointArg< DynInstPtr >
DefaultFetch::Active
@ Active
Definition: fetch.hh:177
DefaultFetch::fetchStats
DefaultFetch::FetchStatGroup fetchStats
DefaultFetch::NoGoodAddr
@ NoGoodAddr
Definition: fetch.hh:194
DefaultFetch::Blocked
@ Blocked
Definition: fetch.hh:186
DefaultFetch::squashFromDecode
void squashFromDecode(const TheISA::PCState &newPC, const DynInstPtr squashInst, const InstSeqNum seq_num, ThreadID tid)
Squashes a specific thread and resets the PC.
Definition: fetch_impl.hh:776
DefaultFetch::decodeWidth
unsigned decodeWidth
The width of decode in instructions.
Definition: fetch.hh:476
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
DefaultFetch::fetchBufferValid
bool fetchBufferValid[Impl::MaxThreads]
Whether or not the fetch buffer data is valid.
Definition: fetch.hh:511
DefaultFetch::cacheBlkSize
unsigned int cacheBlkSize
Cache block size.
Definition: fetch.hh:488
DefaultFetch::fetchBufferPC
Addr fetchBufferPC[Impl::MaxThreads]
The PC of the first instruction loaded into the fetch buffer.
Definition: fetch.hh:502
DefaultFetch::FetchStatGroup::cacheLines
Stats::Scalar cacheLines
Stat for total number of fetched cache lines.
Definition: fetch.hh:586
DefaultFetch::FetchStatGroup::branchRate
Stats::Formula branchRate
Number of branch fetches per cycle.
Definition: fetch.hh:600
DefaultFetch::fromIEW
TimeBuffer< TimeStruct >::wire fromIEW
Wire to get iew's information from backwards time buffer.
Definition: fetch.hh:419
DefaultFetch::deactivateThread
void deactivateThread(ThreadID tid)
For priority-based fetch policies, need to keep update priorityList.
Definition: fetch_impl.hh:510
DefaultFetch::FetchTranslation::markDelayed
void markDelayed()
Signal that the translation has been delayed due to a hw page table walk.
Definition: fetch.hh:120
DefaultFetch::numFetchingThreads
ThreadID numFetchingThreads
Number of threads that are actively fetching.
Definition: fetch.hh:526
DefaultFetch::Fetching
@ Fetching
Definition: fetch.hh:187
DefaultFetch::FetchStatGroup::noActiveThreadStallCycles
Stats::Scalar noActiveThreadStallCycles
Total number of stall cycles caused by no active threads to run.
Definition: fetch.hh:577
DefaultFetch::FetchStatGroup
Definition: fetch.hh:546
DefaultFetch::tick
void tick()
Ticks the fetch stage, processing all inputs signals and fetching as many instructions as possible.
Definition: fetch_impl.hh:860
DefaultFetch::Running
@ Running
Definition: fetch.hh:183
TimeBuffer< TimeStruct >
DefaultFetch::decoder
TheISA::Decoder * decoder[Impl::MaxThreads]
The decoder.
Definition: fetch.hh:374
DefaultFetch::roundRobin
ThreadID roundRobin()
Returns the appropriate thread to fetch using a round robin policy.
Definition: fetch_impl.hh:1448
DefaultFetch::wroteToTimeBuffer
bool wroteToTimeBuffer
Variable that tracks if fetch has written to the time buffer this cycle.
Definition: fetch.hh:446
DefaultFetch::instSize
int instSize
Size of instructions.
Definition: fetch.hh:514
DefaultFetch::wakeFromQuiesce
void wakeFromQuiesce()
Tells fetch to wake up from a quiesce instruction.
Definition: fetch_impl.hh:474
DefaultFetch::pipelineIcacheAccesses
void pipelineIcacheAccesses(ThreadID tid)
Pipeline the next I-cache access to the current one.
Definition: fetch_impl.hh:1559
packet.hh
DefaultFetch::resetStage
void resetStage()
Reset this pipeline stage.
Definition: fetch_impl.hh:317
DefaultFetch::memReq
RequestPtr memReq[Impl::MaxThreads]
Memory request used to access cache.
Definition: fetch.hh:441
DefaultFetch::FetchStatGroup::squashCycles
Stats::Scalar squashCycles
Stat for total number of cycles spent squashing.
Definition: fetch.hh:562
DefaultFetch::retryTid
ThreadID retryTid
The thread that is waiting on the cache to tell fetch to retry.
Definition: fetch.hh:485
timebuf.hh
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
DefaultFetch::doSquash
void doSquash(const TheISA::PCState &newPC, const DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
Definition: fetch_impl.hh:724
DefaultFetch::lsqCount
ThreadID lsqCount()
Returns the appropriate thread to fetch using the LSQ count policy.
Definition: fetch_impl.hh:1515
Counter
int64_t Counter
Statistics counter type.
Definition: types.hh:54
DefaultFetch::isDrained
bool isDrained() const
Has the stage drained?
Definition: fetch_impl.hh:424
DefaultFetch::icachePort
IcachePort icachePort
Instruction port.
Definition: fetch.hh:537
DefaultFetch::FetchTranslation
Definition: fetch.hh:109
DefaultFetch::fromDecode
TimeBuffer< TimeStruct >::wire fromDecode
Wire to get decode's information from backwards time buffer.
Definition: fetch.hh:413
DefaultFetch::FetchStatGroup::insts
Stats::Scalar insts
Stat for total number of fetched instructions.
Definition: fetch.hh:554
DefaultFetch::fetchCacheLine
bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc)
Fetches the cache line that contains the fetch PC.
Definition: fetch_impl.hh:567
DefaultFetch::FetchStatGroup::miscStallCycles
Stats::Scalar miscStallCycles
Total number of cycles spent in any other state.
Definition: fetch.hh:573
DefaultFetch::setActiveThreads
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Definition: fetch_impl.hh:270
DefaultFetch::branchCount
ThreadID branchCount()
Returns the appropriate thread to fetch using the branch count policy.
Definition: fetch_impl.hh:1551
DefaultFetch::name
std::string name() const
Returns the name of fetch.
Definition: fetch_impl.hh:143
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
translation.hh
DefaultFetch::IcachePort::IcachePort
IcachePort(DefaultFetch< Impl > *_fetch, FullO3CPU< Impl > *_cpu)
Default constructor.
Definition: fetch.hh:95
Event
Definition: eventq.hh:248
DefaultFetch::issuePipelinedIfetch
bool issuePipelinedIfetch[Impl::MaxThreads]
Set to true if a pipelined I-cache request should be issued.
Definition: fetch.hh:540
DefaultFetch::recvReqRetry
void recvReqRetry()
Handles retrying the fetch access.
Definition: fetch_impl.hh:1381
DefaultFetch::decodeToFetchDelay
Cycles decodeToFetchDelay
Decode to fetch delay.
Definition: fetch.hh:461
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
DefaultFetch::setFetchQueue
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Sets pointer to time buffer used to communicate to the next stage.
Definition: fetch_impl.hh:277
statistics.hh
DefaultFetch::TimeStruct
CPUPol::TimeStruct TimeStruct
Definition: fetch.hh:82
DefaultFetch::iewToFetchDelay
Cycles iewToFetchDelay
IEW to fetch delay.
Definition: fetch.hh:467
DefaultFetch::startupStage
void startupStage()
Initialize stage.
Definition: fetch_impl.hh:285
DefaultFetch::FinishTranslationEvent
Definition: fetch.hh:137
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
BPredUnit
Basically a wrapper class to hold both the branch predictor and the BTB.
Definition: bpred_unit.hh:62
port.hh
DefaultFetch::timeBuffer
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
Definition: fetch.hh:410
DefaultFetch::renameToFetchDelay
Cycles renameToFetchDelay
Rename to fetch delay.
Definition: fetch.hh:464
BaseTLB::Translation
Definition: tlb.hh:59
DefaultFetch::FinishTranslationEvent::description
const char * description() const
Return a C string describing the event.
Definition: fetch.hh:166
DefaultFetch::Stalls::drain
bool drain
Definition: fetch.hh:454
DefaultFetch::FinishTranslationEvent::FinishTranslationEvent
FinishTranslationEvent(DefaultFetch< Impl > *_fetch)
Definition: fetch.hh:145
DefaultFetch::cacheBlocked
bool cacheBlocked
Is the cache blocked? If so no threads can access it.
Definition: fetch.hh:479
DefaultFetch::checkSignalsAndUpdate
bool checkSignalsAndUpdate(ThreadID tid)
Checks all input signals and updates the status as necessary.
Definition: fetch_impl.hh:962
DefaultFetch::FetchStatGroup::branches
Stats::Scalar branches
Total number of fetched branches.
Definition: fetch.hh:556
DefaultFetch::Stalls
Source of possible stalls.
Definition: fetch.hh:452
DefaultFetch::drainSanityCheck
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: fetch_impl.hh:406
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
DefaultFetch::FetchStatGroup::blockedCycles
Stats::Scalar blockedCycles
Total number of cycles spent blocked.
Definition: fetch.hh:571
DefaultFetch::FetchStatGroup::rate
Stats::Formula rate
Number of instruction fetched per cycle.
Definition: fetch.hh:602
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
DefaultFetch::buildInst
DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst, StaticInstPtr curMacroop, TheISA::PCState thisPC, TheISA::PCState nextPC, bool trace)
Definition: fetch_impl.hh:1067
DefaultFetch::FetchStatGroup::nisnDist
Stats::Distribution nisnDist
Distribution of number of instructions fetched each cycle.
Definition: fetch.hh:596
DefaultFetch::IcachePort
IcachePort class for instruction fetch.
Definition: fetch.hh:87
DefaultFetch::drainStall
void drainStall(ThreadID tid)
Stall the fetch stage after reaching a safe drain point.
Definition: fetch_impl.hh:464
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
Stats::Distribution
A simple distribution stat.
Definition: statistics.hh:2084
DefaultFetch::updateFetchStatus
FetchStatus updateFetchStatus()
Updates overall fetch stage status; to be called at the end of each cycle.
Definition: fetch_impl.hh:806
DefaultFetch::ppFetchRequestSent
ProbePointArg< RequestPtr > * ppFetchRequestSent
To probe when a fetch request is successfully sent.
Definition: fetch.hh:213
DefaultFetch
DefaultFetch class handles both single threaded and SMT fetch.
Definition: fetch.hh:71
DefaultFetch::delayedCommit
bool delayedCommit[Impl::MaxThreads]
Can the fetch stage redirect from an interrupt on this instruction?
Definition: fetch.hh:438
DefaultFetch::FetchStatGroup::pendingDrainCycles
Stats::Scalar pendingDrainCycles
Total number of cycles spent in waiting for drains.
Definition: fetch.hh:575
DefaultFetch::ppFetch
ProbePointArg< DynInstPtr > * ppFetch
Probe points.
Definition: fetch.hh:211
DefaultFetch::lookupAndUpdateNextPC
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...
Definition: fetch_impl.hh:521
DefaultFetch::toDecode
TimeBuffer< FetchStruct >::wire toDecode
Wire used to write any information heading to decode.
Definition: fetch.hh:426
DefaultFetch::fetchWidth
unsigned fetchWidth
The width of fetch in instructions.
Definition: fetch.hh:473
DefaultFetch::Squashing
@ Squashing
Definition: fetch.hh:185
DefaultFetch::FinishTranslationEvent::setFault
void setFault(Fault _fault)
Definition: fetch.hh:149
DefaultFetch::FetchStatGroup::idleCycles
Stats::Scalar idleCycles
Stat for total number of cycles spent blocked due to other stages in the pipeline.
Definition: fetch.hh:569
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
DefaultFetch::FetchStatGroup::FetchStatGroup
FetchStatGroup(O3CPU *cpu, DefaultFetch *fetch)
Definition: fetch_impl.hh:160
DefaultFetch::CPUPol
Impl::CPUPol CPUPol
Typedefs from Impl.
Definition: fetch.hh:75
DefaultFetch::priorityList
std::list< ThreadID > priorityList
List that has the threads organized by priority.
Definition: fetch.hh:208
DefaultFetch::FinishTranslationEvent::process
void process()
Process the delayed finish translation.
Definition: fetch.hh:160
DefaultFetch::fetch
void fetch(bool &status_change)
Does the actual fetching of instructions and passing them on to the next stage.
Definition: fetch_impl.hh:1119
DefaultFetch::interruptPending
bool interruptPending
Checks if there is an interrupt pending.
Definition: fetch.hh:534
DefaultFetch::IcachePort::recvReqRetry
virtual void recvReqRetry()
Handles doing a retry of a failed fetch.
Definition: fetch_impl.hh:1651
DefaultFetch::profileStall
void profileStall(ThreadID tid)
Profile the reasons of fetch stall.
Definition: fetch_impl.hh:1589
DefaultFetch::numThreads
ThreadID numThreads
Number of threads.
Definition: fetch.hh:523
DefaultFetch::clearStates
void clearStates(ThreadID tid)
Clear all thread-specific states.
Definition: fetch_impl.hh:297
pc_event.hh
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
DefaultFetch::drainResume
void drainResume()
Resume after a drain.
Definition: fetch_impl.hh:396
bpred_unit.hh
DefaultFetch::finishTranslation
void finishTranslation(const Fault &fault, const RequestPtr &mem_req)
Definition: fetch_impl.hh:617
DefaultFetch::FinishTranslationEvent::fetch
DefaultFetch< Impl > * fetch
Definition: fetch.hh:140
DefaultFetch::fetchQueueSize
unsigned fetchQueueSize
The size of the fetch queue in micro-ops.
Definition: fetch.hh:505
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
DefaultFetch::FetchStatGroup::tlbCycles
Stats::Scalar tlbCycles
Stat for total number of cycles spent waiting for translation.
Definition: fetch.hh:564
std::deque< DynInstPtr >
DefaultFetch::FetchStatGroup::icacheSquashes
Stats::Scalar icacheSquashes
Total number of outstanding icache accesses that were dropped due to a squash.
Definition: fetch.hh:590
DefaultFetch::TrapPending
@ TrapPending
Definition: fetch.hh:188
Stats::Group
Statistics container.
Definition: group.hh:87
DefaultFetch::FetchStatGroup::idleRate
Stats::Formula idleRate
Rate of how often fetch was idle.
Definition: fetch.hh:598
DefaultFetch::fromRename
TimeBuffer< TimeStruct >::wire fromRename
Wire to get rename's information from backwards time buffer.
Definition: fetch.hh:416
DefaultFetch::Inactive
@ Inactive
Definition: fetch.hh:178
DefaultFetch::fetchBufferMask
Addr fetchBufferMask
Mask to align a fetch address to a fetch buffer boundary.
Definition: fetch.hh:496
DefaultFetch::ThreadStatus
ThreadStatus
Individual thread status.
Definition: fetch.hh:182
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
DefaultFetch::setTimeBuffer
void setTimeBuffer(TimeBuffer< TimeStruct > *time_buffer)
Sets the main backwards communication time buffer pointer.
Definition: fetch_impl.hh:257
DefaultFetch::IcacheWaitRetry
@ IcacheWaitRetry
Definition: fetch.hh:192
DefaultFetch::ItlbWait
@ ItlbWait
Definition: fetch.hh:190
DefaultFetch::threadFetched
ThreadID threadFetched
Thread ID being fetched.
Definition: fetch.hh:529
DefaultFetch::FetchStatGroup::icacheWaitRetryStallCycles
Stats::Scalar icacheWaitRetryStallCycles
Total number of stall cycles caused by I-cache wait retrys.
Definition: fetch.hh:584
DefaultFetch::processCacheCompletion
void processCacheCompletion(PacketPtr pkt)
Processes cache completion event.
Definition: fetch_impl.hh:352
DefaultFetch::pc
TheISA::PCState pc[Impl::MaxThreads]
Definition: fetch.hh:431
RefCountingPtr< StaticInst >
DefaultFetch::Idle
@ Idle
Definition: fetch.hh:184
DefaultFetch::fetchQueue
std::deque< DynInstPtr > fetchQueue[Impl::MaxThreads]
Queue of fetched instructions.
Definition: fetch.hh:508
DefaultFetch::iqCount
ThreadID iqCount()
Returns the appropriate thread to fetch using the IQ count policy.
Definition: fetch_impl.hh:1478
DefaultFetch::DynInst
Impl::DynInst DynInst
Definition: fetch.hh:76
DefaultFetch::cpu
O3CPU * cpu
Pointer to the O3CPU.
Definition: fetch.hh:407
DefaultFetch::FetchTranslation::fetch
DefaultFetch< Impl > * fetch
Definition: fetch.hh:112
DefaultFetch::FetchTranslation::finish
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
Definition: fetch.hh:124
DefaultFetch::branchPred
BPredUnit * branchPred
BPredUnit.
Definition: fetch.hh:429
DefaultFetch::numInst
int numInst
Tracks how many instructions has been fetched this cycle.
Definition: fetch.hh:449
std::list< ThreadID >
DefaultFetch::fetchBuffer
uint8_t * fetchBuffer[Impl::MaxThreads]
The fetch data that is being fetched and buffered.
Definition: fetch.hh:499
DefaultFetch::_status
FetchStatus _status
Fetch status.
Definition: fetch.hh:199
DefaultFetch::IcachePort::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
Definition: fetch_impl.hh:1638
probe.hh
DefaultFetch::stalls
Stalls stalls[Impl::MaxThreads]
Tracks which stages are telling fetch to stall.
Definition: fetch.hh:458
DefaultFetch::retryPkt
PacketPtr retryPkt
The packet that is waiting to be retried.
Definition: fetch.hh:482
DefaultFetch::checkStall
bool checkStall(ThreadID tid) const
Checks if a thread is stalled.
Definition: fetch_impl.hh:791
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
DefaultFetch::FetchStatGroup::icacheStallCycles
Stats::Scalar icacheStallCycles
Stat for total number of cycles stalled due to an icache miss.
Definition: fetch.hh:552
DefaultFetch::lastIcacheStall
Counter lastIcacheStall[Impl::MaxThreads]
Icache stall statistics.
Definition: fetch.hh:517
DefaultFetch::FinishTranslationEvent::req
RequestPtr req
Definition: fetch.hh:142
DefaultFetch::checkInterrupt
bool checkInterrupt(Addr pc)
Check if an interrupt is pending and that we need to handle.
Definition: fetch.hh:318
DefaultFetch::fetchStatus
ThreadStatus fetchStatus[Impl::MaxThreads]
Per-thread status.
Definition: fetch.hh:202
DefaultFetch::activeThreads
std::list< ThreadID > * activeThreads
List of Active Threads.
Definition: fetch.hh:520
DefaultFetch::IcachePort::fetch
DefaultFetch< Impl > * fetch
Pointer to fetch.
Definition: fetch.hh:91
DefaultFetch::getInstPort
RequestPort & getInstPort()
Definition: fetch.hh:376
DefaultFetch::squash
void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num, DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
Definition: fetch_impl.hh:846
DefaultFetch::fetchBufferSize
unsigned fetchBufferSize
The size of the fetch buffer in bytes.
Definition: fetch.hh:493
DefaultFetch::fromCommit
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's information from backwards time buffer.
Definition: fetch.hh:422
DefaultFetch::DynInstPtr
Impl::DynInstPtr DynInstPtr
Definition: fetch.hh:77
eventq.hh

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17