gem5  v20.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/FetchPolicy.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 
86 
90  class IcachePort : public MasterPort
91  {
92  protected:
95 
96  public:
99  : MasterPort(_cpu->name() + ".icache_port", _cpu), fetch(_fetch)
100  { }
101 
102  protected:
103 
106  virtual bool recvTimingResp(PacketPtr pkt);
107 
109  virtual void recvReqRetry();
110  };
111 
113  {
114  protected:
116 
117  public:
119  : fetch(_fetch)
120  {}
121 
122  void
124  {}
125 
126  void
127  finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc,
129  {
130  assert(mode == BaseTLB::Execute);
131  fetch->finishTranslation(fault, req);
132  delete this;
133  }
134  };
135 
136  private:
137  /* Event to delay delivery of a fetch translation result in case of
138  * a fault and the nop to carry the fault cannot be generated
139  * immediately */
141  {
142  private:
146 
147  public:
149  : fetch(_fetch), req(nullptr)
150  {}
151 
152  void setFault(Fault _fault)
153  {
154  fault = _fault;
155  }
156 
157  void setReq(const RequestPtr &_req)
158  {
159  req = _req;
160  }
161 
163  void process()
164  {
165  assert(fetch->numInst < fetch->fetchWidth);
166  fetch->finishTranslation(fault, req);
167  }
168 
169  const char *description() const
170  {
171  return "FullO3CPU FetchFinishTranslation";
172  }
173  };
174 
175  public:
179  enum FetchStatus {
182  };
183 
198  };
199 
200  private:
203 
205  ThreadStatus fetchStatus[Impl::MaxThreads];
206 
208  FetchPolicy fetchPolicy;
209 
212 
217 
218  public:
220  DefaultFetch(O3CPU *_cpu, DerivO3CPUParams *params);
221 
223  std::string name() const;
224 
226  void regStats();
227 
229  void regProbePoints();
230 
232  void setTimeBuffer(TimeBuffer<TimeStruct> *time_buffer);
233 
236 
239 
241  void startupStage();
242 
244  void clearStates(ThreadID tid);
245 
247  void recvReqRetry();
248 
251 
253  void drainResume();
254 
256  void drainSanityCheck() const;
257 
259  bool isDrained() const;
260 
262  void takeOverFrom();
263 
273  void drainStall(ThreadID tid);
274 
276  void wakeFromQuiesce();
277 
279  void deactivateThread(ThreadID tid);
280  private:
282  void resetStage();
283 
287  inline void switchToActive();
288 
292  inline void switchToInactive();
293 
303  bool lookupAndUpdateNextPC(const DynInstPtr &inst, TheISA::PCState &pc);
304 
316  bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc);
317  void finishTranslation(const Fault &fault, const RequestPtr &mem_req);
318 
319 
322  bool
324  {
325  return interruptPending;
326  }
327 
329  inline void doSquash(const TheISA::PCState &newPC,
330  const DynInstPtr squashInst, ThreadID tid);
331 
335  void squashFromDecode(const TheISA::PCState &newPC,
336  const DynInstPtr squashInst,
337  const InstSeqNum seq_num, ThreadID tid);
338 
340  bool checkStall(ThreadID tid) const;
341 
345 
346  public:
351  void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num,
352  DynInstPtr squashInst, ThreadID tid);
353 
357  void tick();
358 
363 
369  void fetch(bool &status_change);
370 
373  {
374  return (addr & ~(fetchBufferMask));
375  }
376 
378  TheISA::Decoder *decoder[Impl::MaxThreads];
379 
381 
382  private:
383  DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst,
384  StaticInstPtr curMacroop, TheISA::PCState thisPC,
385  TheISA::PCState nextPC, bool trace);
386 
389 
392 
394  ThreadID iqCount();
395 
397  ThreadID lsqCount();
398 
402 
405 
407  void profileStall(ThreadID tid);
408 
409  private:
411  O3CPU *cpu;
412 
415 
418 
421 
424 
427 
428  //Might be annoying how this name is different than the queue.
431 
434 
435  TheISA::PCState pc[Impl::MaxThreads];
436 
437  Addr fetchOffset[Impl::MaxThreads];
438 
439  StaticInstPtr macroop[Impl::MaxThreads];
440 
442  bool delayedCommit[Impl::MaxThreads];
443 
445  RequestPtr memReq[Impl::MaxThreads];
446 
451 
453  int numInst;
454 
456  struct Stalls {
457  bool decode;
458  bool drain;
459  };
460 
462  Stalls stalls[Impl::MaxThreads];
463 
466 
469 
472 
475 
477  unsigned fetchWidth;
478 
480  unsigned decodeWidth;
481 
484 
487 
490 
492  unsigned int cacheBlkSize;
493 
497  unsigned fetchBufferSize;
498 
501 
503  uint8_t *fetchBuffer[Impl::MaxThreads];
504 
506  Addr fetchBufferPC[Impl::MaxThreads];
507 
509  unsigned fetchQueueSize;
510 
513 
515  bool fetchBufferValid[Impl::MaxThreads];
516 
518  int instSize;
519 
521  Counter lastIcacheStall[Impl::MaxThreads];
522 
525 
528 
531 
534 
539 
542 
544  bool issuePipelinedIfetch[Impl::MaxThreads];
545 
548 
549  // @todo: Consider making these vectors and tracking on a per thread basis.
600 };
601 
602 #endif //__CPU_O3_FETCH_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
MasterPort & getInstPort()
Definition: fetch.hh:380
Impl::O3CPU O3CPU
Definition: fetch.hh:78
uint32_t MachInst
Definition: types.hh:52
Stats::Formula fetchRate
Number of instruction fetched per cycle.
Definition: fetch.hh:599
Impl::DynInst DynInst
Definition: fetch.hh:76
Addr fetchBufferMask
Mask to align a fetch address to a fetch buffer boundary.
Definition: fetch.hh:500
unsigned fetchWidth
The width of fetch in instructions.
Definition: fetch.hh:477
virtual void recvReqRetry()
Handles doing a retry of a failed fetch.
Definition: fetch_impl.hh:1685
ThreadID iqCount()
Returns the appropriate thread to fetch using the IQ count policy.
Definition: fetch_impl.hh:1512
void profileStall(ThreadID tid)
Profile the reasons of fetch stall.
Definition: fetch_impl.hh:1623
TheISA::Decoder * decoder[Impl::MaxThreads]
The decoder.
Definition: fetch.hh:378
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
Stats::Formula idleRate
Rate of how often fetch was idle.
Definition: fetch.hh:595
void tick()
Ticks the fetch stage, processing all inputs signals and fetching as many instructions as possible...
Definition: fetch_impl.hh:894
void resetStage()
Reset this pipeline stage.
Definition: fetch_impl.hh:351
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:810
TimeBuffer< TimeStruct >::wire fromRename
Wire to get rename&#39;s information from backwards time buffer.
Definition: fetch.hh:420
void pipelineIcacheAccesses(ThreadID tid)
Pipeline the next I-cache access to the current one.
Definition: fetch_impl.hh:1593
Addr fetchBufferPC[Impl::MaxThreads]
The PC of the first instruction loaded into the fetch buffer.
Definition: fetch.hh:506
bool checkInterrupt(Addr pc)
Check if an interrupt is pending and that we need to handle.
Definition: fetch.hh:323
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
FetchStatus _status
Fetch status.
Definition: fetch.hh:202
Impl::DynInstPtr DynInstPtr
Definition: fetch.hh:77
bool checkStall(ThreadID tid) const
Checks if a thread is stalled.
Definition: fetch_impl.hh:825
Stats::Scalar fetchPendingTrapStallCycles
Total number of stall cycles caused by pending traps.
Definition: fetch.hh:577
ip6_addr_t addr
Definition: inet.hh:330
TimeBuffer< FetchStruct >::wire toDecode
Wire used to write any information heading to decode.
Definition: fetch.hh:430
int numInst
Tracks how many instructions has been fetched this cycle.
Definition: fetch.hh:453
void processCacheCompletion(PacketPtr pkt)
Processes cache completion event.
Definition: fetch_impl.hh:386
Stats::Scalar fetchMiscStallCycles
Total number of cycles spent in any other state.
Definition: fetch.hh:571
Stats::Scalar fetchIdleCycles
Stat for total number of cycles spent blocked due to other stages in the pipeline.
Definition: fetch.hh:567
const char * description() const
Return a C string describing the event.
Definition: fetch.hh:169
FinishTranslationEvent(DefaultFetch< Impl > *_fetch)
Definition: fetch.hh:148
Stats::Formula branchRate
Number of branch fetches per cycle.
Definition: fetch.hh:597
unsigned fetchQueueSize
The size of the fetch queue in micro-ops.
Definition: fetch.hh:509
Stats::Scalar fetchTlbSquashes
Total number of outstanding tlb accesses that were dropped due to a squash.
Definition: fetch.hh:591
TimeBuffer< TimeStruct >::wire fromDecode
Wire to get decode&#39;s information from backwards time buffer.
Definition: fetch.hh:417
Stats::Scalar icacheStallCycles
Stat for total number of cycles stalled due to an icache miss.
Definition: fetch.hh:551
Bitfield< 4, 0 > mode
ThreadID getFetchingThread()
Returns the appropriate thread to fetch, given the fetch policy.
Definition: fetch_impl.hh:1446
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.
Definition: fetch.hh:544
ThreadID numThreads
Number of threads.
Definition: fetch.hh:527
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
CPUPol::TimeStruct TimeStruct
Definition: fetch.hh:82
DefaultFetch< Impl > * fetch
Definition: fetch.hh:143
Stats::Scalar fetchedInsts
Stat for total number of fetched instructions.
Definition: fetch.hh:553
Stats::Scalar fetchNoActiveThreadStallCycles
Total number of stall cycles caused by no active threads to run.
Definition: fetch.hh:575
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: fetch_impl.hh:440
FetchStatus
Overall fetch status.
Definition: fetch.hh:179
Stats::Distribution fetchNisnDist
Distribution of number of instructions fetched each cycle.
Definition: fetch.hh:593
void deactivateThread(ThreadID tid)
For priority-based fetch policies, need to keep update priorityList.
Definition: fetch_impl.hh:544
Stats::Scalar fetchPendingDrainCycles
Total number of cycles spent in waiting for drains.
Definition: fetch.hh:573
TheISA::MachInst MachInst
Typedefs from ISA.
Definition: fetch.hh:85
PacketPtr retryPkt
The packet that is waiting to be retried.
Definition: fetch.hh:486
ThreadID numFetchingThreads
Number of threads that are actively fetching.
Definition: fetch.hh:530
Cycles iewToFetchDelay
IEW to fetch delay.
Definition: fetch.hh:471
void process()
Process the delayed finish translation.
Definition: fetch.hh:163
void drainStall(ThreadID tid)
Stall the fetch stage after reaching a safe drain point.
Definition: fetch_impl.hh:498
Stats::Scalar fetchCycles
Stat for total number of cycles spent fetching.
Definition: fetch.hh:559
ThreadID threadFetched
Thread ID being fetched.
Definition: fetch.hh:533
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
Definition: fetch.hh:127
void regStats()
Registers statistics.
Definition: fetch_impl.hh:168
void clearStates(ThreadID tid)
Clear all thread-specific states.
Definition: fetch_impl.hh:331
Addr fetchOffset[Impl::MaxThreads]
Definition: fetch.hh:437
ThreadID roundRobin()
Returns the appropriate thread to fetch using a round robin policy.
Definition: fetch_impl.hh:1482
void switchToActive()
Changes the status of this stage to active, and indicates this to the CPU.
Definition: fetch_impl.hh:518
DefaultFetch class handles both single threaded and SMT fetch.
Definition: fetch.hh:71
A simple distribution stat.
Definition: statistics.hh:2589
int instSize
Size of instructions.
Definition: fetch.hh:518
void finishTranslation(const Fault &fault, const RequestPtr &mem_req)
Definition: fetch_impl.hh:651
Stats::Scalar fetchTlbCycles
Stat for total number of cycles spent waiting for translation.
Definition: fetch.hh:563
RequestPtr memReq[Impl::MaxThreads]
Memory request used to access cache.
Definition: fetch.hh:445
IcachePort icachePort
Instruction port.
Definition: fetch.hh:541
bool fetchCacheLine(Addr vaddr, ThreadID tid, Addr pc)
Fetches the cache line that contains the fetch PC.
Definition: fetch_impl.hh:601
IcachePort(DefaultFetch< Impl > *_fetch, FullO3CPU< Impl > *_cpu)
Default constructor.
Definition: fetch.hh:98
DefaultFetch(O3CPU *_cpu, DerivO3CPUParams *params)
DefaultFetch constructor.
Definition: fetch_impl.hh:79
uint64_t InstSeqNum
Definition: inst_seq.hh:37
void setReq(const RequestPtr &_req)
Definition: fetch.hh:157
ThreadID retryTid
The thread that is waiting on the cache to tell fetch to retry.
Definition: fetch.hh:489
Port Object Declaration.
Stats::Scalar predictedBranches
Stat for total number of predicted branches.
Definition: fetch.hh:557
DefaultFetch< Impl > * fetch
Pointer to fetch.
Definition: fetch.hh:94
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Definition: fetch_impl.hh:304
std::list< ThreadID > * activeThreads
List of Active Threads.
Definition: fetch.hh:524
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void regProbePoints()
Registers probes.
Definition: fetch_impl.hh:158
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit&#39;s information from backwards time buffer.
Definition: fetch.hh:426
Stats::Scalar fetchIcacheWaitRetryStallCycles
Total number of stall cycles caused by I-cache wait retrys.
Definition: fetch.hh:581
int64_t Counter
Statistics counter type.
Definition: types.hh:56
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
uint8_t * fetchBuffer[Impl::MaxThreads]
The fetch data that is being fetched and buffered.
Definition: fetch.hh:503
std::deque< DynInstPtr > fetchQueue[Impl::MaxThreads]
Queue of fetched instructions.
Definition: fetch.hh:512
Impl::CPUPol CPUPol
Typedefs from Impl.
Definition: fetch.hh:75
Stats::Scalar fetchIcacheSquashes
Total number of outstanding icache accesses that were dropped due to a squash.
Definition: fetch.hh:587
bool interruptPending
Checks if there is an interrupt pending.
Definition: fetch.hh:538
ThreadID branchCount()
Returns the appropriate thread to fetch using the branch count policy.
Definition: fetch_impl.hh:1585
unsigned decodeWidth
The width of decode in instructions.
Definition: fetch.hh:480
TheISA::PCState pc[Impl::MaxThreads]
Definition: fetch.hh:435
Counter lastIcacheStall[Impl::MaxThreads]
Icache stall statistics.
Definition: fetch.hh:521
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Mode
Definition: tlb.hh:57
Basically a wrapper class to hold both the branch predictor and the BTB.
Definition: bpred_unit.hh:62
FinishTranslationEvent finishTranslationEvent
Event used to delay fault generation of translation faults.
Definition: fetch.hh:547
Stats::Scalar fetchPendingQuiesceStallCycles
Total number of stall cycles caused by pending quiesce instructions.
Definition: fetch.hh:579
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
void setTimeBuffer(TimeBuffer< TimeStruct > *time_buffer)
Sets the main backwards communication time buffer pointer.
Definition: fetch_impl.hh:291
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Sets pointer to time buffer used to communicate to the next stage.
Definition: fetch_impl.hh:311
Addr fetchBufferAlignPC(Addr addr)
Align a PC to the start of a fetch buffer block.
Definition: fetch.hh:372
ThreadStatus fetchStatus[Impl::MaxThreads]
Per-thread status.
Definition: fetch.hh:205
Declaration of the Packet class.
Stalls stalls[Impl::MaxThreads]
Tracks which stages are telling fetch to stall.
Definition: fetch.hh:462
O3CPU * cpu
Pointer to the O3CPU.
Definition: fetch.hh:411
bool cacheBlocked
Is the cache blocked? If so no threads can access it.
Definition: fetch.hh:483
Definition: eventq.hh:245
FetchTranslation(DefaultFetch< Impl > *_fetch)
Definition: fetch.hh:118
FetchStatus updateFetchStatus()
Updates overall fetch stage status; to be called at the end of each cycle.
Definition: fetch_impl.hh:840
void takeOverFrom(Port *old)
A utility function to make it easier to swap out ports.
Definition: port.hh:128
Cycles decodeToFetchDelay
Decode to fetch delay.
Definition: fetch.hh:465
Cycles commitToFetchDelay
Commit to fetch delay.
Definition: fetch.hh:474
void switchToInactive()
Changes the status of this stage to inactive, and indicates this to the CPU.
Definition: fetch_impl.hh:531
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
void startupStage()
Initialize stage.
Definition: fetch_impl.hh:319
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:555
ProbePointArg< RequestPtr > * ppFetchRequestSent
To probe when a fetch request is successfully sent.
Definition: fetch.hh:216
ProbePointArg< DynInstPtr > * ppFetch
Probe points.
Definition: fetch.hh:214
CPUPol::FetchStruct FetchStruct
Typedefs from the CPU policy.
Definition: fetch.hh:81
void setFault(Fault _fault)
Definition: fetch.hh:152
Stats::Scalar fetchSquashCycles
Stat for total number of cycles spent squashing.
Definition: fetch.hh:561
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:880
unsigned fetchBufferSize
The size of the fetch buffer in bytes.
Definition: fetch.hh:497
ThreadID lsqCount()
Returns the appropriate thread to fetch using the LSQ count policy.
Definition: fetch_impl.hh:1549
FetchPolicy fetchPolicy
Fetch policy.
Definition: fetch.hh:208
Cycles renameToFetchDelay
Rename to fetch delay.
Definition: fetch.hh:468
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
Definition: fetch_impl.hh:1672
bool isDrained() const
Has the stage drained?
Definition: fetch_impl.hh:458
Source of possible stalls.
Definition: fetch.hh:456
void wakeFromQuiesce()
Tells fetch to wake up from a quiesce instruction.
Definition: fetch_impl.hh:508
Stats::Scalar fetchBlockedCycles
Total number of cycles spent blocked.
Definition: fetch.hh:569
ThreadStatus
Individual thread status.
Definition: fetch.hh:185
Stats::Scalar fetchedCacheLines
Stat for total number of fetched cache lines.
Definition: fetch.hh:583
void drainResume()
Resume after a drain.
Definition: fetch_impl.hh:430
std::list< ThreadID > priorityList
List that has the threads organized by priority.
Definition: fetch.hh:211
bool checkSignalsAndUpdate(ThreadID tid)
Checks all input signals and updates the status as necessary.
Definition: fetch_impl.hh:996
StaticInstPtr macroop[Impl::MaxThreads]
Definition: fetch.hh:439
bool delayedCommit[Impl::MaxThreads]
Can the fetch stage redirect from an interrupt on this instruction?
Definition: fetch.hh:442
Stats::Scalar fetchedBranches
Total number of fetched branches.
Definition: fetch.hh:555
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
DynInstPtr buildInst(ThreadID tid, StaticInstPtr staticInst, StaticInstPtr curMacroop, TheISA::PCState thisPC, TheISA::PCState nextPC, bool trace)
Definition: fetch_impl.hh:1101
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
BPredUnit * branchPred
BPredUnit.
Definition: fetch.hh:433
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
Definition: fetch.hh:414
bool wroteToTimeBuffer
Variable that tracks if fetch has written to the time buffer this cycle.
Definition: fetch.hh:450
void doSquash(const TheISA::PCState &newPC, const DynInstPtr squashInst, ThreadID tid)
Squashes a specific thread and resets the PC.
Definition: fetch_impl.hh:758
DefaultFetch< Impl > * fetch
Definition: fetch.hh:115
unsigned int cacheBlkSize
Cache block size.
Definition: fetch.hh:492
bool fetchBufferValid[Impl::MaxThreads]
Whether or not the fetch buffer data is valid.
Definition: fetch.hh:515
IcachePort class for instruction fetch.
Definition: fetch.hh:90
FullO3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time ...
Definition: cpu.hh:94
void markDelayed()
Signal that the translation has been delayed due to a hw page table walk.
Definition: fetch.hh:123
TimeBuffer< TimeStruct >::wire fromIEW
Wire to get iew&#39;s information from backwards time buffer.
Definition: fetch.hh:423

Generated on Thu May 28 2020 16:21:31 for gem5 by doxygen 1.8.13