gem5  v20.0.0.3
commit.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_COMMIT_HH__
42 #define __CPU_O3_COMMIT_HH__
43 
44 #include <queue>
45 
46 #include "base/statistics.hh"
47 #include "cpu/exetrace.hh"
48 #include "cpu/inst_seq.hh"
49 #include "cpu/timebuf.hh"
50 #include "enums/CommitPolicy.hh"
51 #include "sim/probe/probe.hh"
52 
53 struct DerivO3CPUParams;
54 
55 template <class>
57 
80 template<class Impl>
82 {
83  public:
84  // Typedefs from the Impl.
85  typedef typename Impl::O3CPU O3CPU;
86  typedef typename Impl::DynInstPtr DynInstPtr;
87  typedef typename Impl::CPUPol CPUPol;
88 
89  typedef typename CPUPol::RenameMap RenameMap;
90  typedef typename CPUPol::ROB ROB;
91 
92  typedef typename CPUPol::TimeStruct TimeStruct;
93  typedef typename CPUPol::FetchStruct FetchStruct;
94  typedef typename CPUPol::IEWStruct IEWStruct;
95  typedef typename CPUPol::RenameStruct RenameStruct;
96 
97  typedef typename CPUPol::Fetch Fetch;
98  typedef typename CPUPol::IEW IEW;
99 
101 
108  };
109 
117  SquashAfterPending, //< Committing instructions before a squash.
118  };
119 
120  private:
126  ThreadStatus commitStatus[Impl::MaxThreads];
128  CommitPolicy commitPolicy;
129 
135 
137  void processTrapEvent(ThreadID tid);
138 
139  public:
141  DefaultCommit(O3CPU *_cpu, DerivO3CPUParams *params);
142 
144  std::string name() const;
145 
147  void regStats();
148 
150  void regProbePoints();
151 
153  void setThreads(std::vector<Thread *> &threads);
154 
157 
159 
162 
164  void setIEWQueue(TimeBuffer<IEWStruct> *iq_ptr);
165 
167  void setIEWStage(IEW *iew_stage);
168 
173  IEW *iewStage;
174 
177 
179  void setRenameMap(RenameMap rm_ptr[Impl::MaxThreads]);
180 
182  void setROB(ROB *rob_ptr);
183 
185  void startupStage();
186 
188  void clearStates(ThreadID tid);
189 
191  void drain();
192 
194  void drainResume();
195 
197  void drainSanityCheck() const;
198 
200  bool isDrained() const;
201 
203  void takeOverFrom();
204 
206  void deactivateThread(ThreadID tid);
207 
209  void tick();
210 
214  void commit();
215 
217  size_t numROBFreeEntries(ThreadID tid);
218 
220  void generateTrapEvent(ThreadID tid, Fault inst_fault);
221 
225  void generateTCEvent(ThreadID tid);
226 
227  private:
231  void updateStatus();
232 
237  bool changedROBEntries();
238 
240  void squashAll(ThreadID tid);
241 
243  void squashFromTrap(ThreadID tid);
244 
246  void squashFromTC(ThreadID tid);
247 
250 
279  void squashAfter(ThreadID tid, const DynInstPtr &head_inst);
280 
282  void handleInterrupt();
283 
285  void propagateInterrupt();
286 
288  void commitInsts();
289 
293  bool commitHead(const DynInstPtr &head_inst, unsigned inst_num);
294 
296  void getInsts();
297 
299  void markCompletedInsts();
300 
303 
306 
309 
310  public:
312  TheISA::PCState pcState(ThreadID tid) { return pc[tid]; }
313 
316  { pc[tid] = val; }
317 
319  Addr instAddr(ThreadID tid) { return pc[tid].instAddr(); }
320 
322  Addr nextInstAddr(ThreadID tid) { return pc[tid].nextInstAddr(); }
323 
325  Addr microPC(ThreadID tid) { return pc[tid].microPC(); }
326 
327  private:
330 
333 
336 
338 
340 
343 
346 
349 
352 
353  public:
355  ROB *rob;
356 
357  private:
359  O3CPU *cpu;
360 
363 
368 
372  bool changedROBNumEntries[Impl::MaxThreads];
373 
375  bool trapSquash[Impl::MaxThreads];
376 
378  bool tcSquash[Impl::MaxThreads];
379 
387  DynInstPtr squashAfterInst[Impl::MaxThreads];
388 
391 
394 
397 
400 
402 
406  const unsigned renameWidth;
407 
409  const unsigned commitWidth;
410 
412  unsigned numRobs;
413 
416 
421 
428 
433 
436 
440  TheISA::PCState pc[Impl::MaxThreads];
441 
443  InstSeqNum youngestSeqNum[Impl::MaxThreads];
444 
446  InstSeqNum lastCommitedSeqNum[Impl::MaxThreads];
447 
449  bool trapInFlight[Impl::MaxThreads];
450 
452  bool committedStores[Impl::MaxThreads];
453 
456  bool checkEmptyROB[Impl::MaxThreads];
457 
460 
462  RenameMap *renameMap[Impl::MaxThreads];
463 
466 
472 
474  void updateComInstStats(const DynInstPtr &inst);
475 
487 
514 
517 };
518 
519 #endif // __CPU_O3_COMMIT_HH__
ROB * rob
ROB interface.
Definition: commit.hh:355
const unsigned commitWidth
Commit width, in instructions.
Definition: commit.hh:409
void handleInterrupt()
Handles processing an interrupt.
Definition: commit_impl.hh:733
void regProbePoints()
Registers probes.
Definition: commit_impl.hh:138
const Cycles fetchToCommitDelay
Definition: commit.hh:401
void processTrapEvent(ThreadID tid)
Mark the thread as processing a trap.
Definition: commit_impl.hh:73
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
void setRenameMap(RenameMap rm_ptr[Impl::MaxThreads])
Sets pointer to the commited state rename map.
Definition: commit_impl.hh:337
Stats::Scalar commitEligibleSamples
Number of cycles where the commit bandwidth limit is reached.
Definition: commit.hh:516
bool trapInFlight[Impl::MaxThreads]
Records if there is a trap currently in flight.
Definition: commit.hh:449
Class that has various thread state, such as the status, the current instruction being processed...
Definition: commit.hh:56
TimeBuffer< TimeStruct >::wire toIEW
Wire to write information heading to previous stages.
Definition: commit.hh:332
TheISA::PCState pc[Impl::MaxThreads]
The commit PC state of each thread.
Definition: commit.hh:440
bool drainImminent
Is a drain imminent? Commit has found an instruction boundary while no interrupts were present or in ...
Definition: commit.hh:427
TimeBuffer< FetchStruct >::wire fromFetch
Definition: commit.hh:339
void squashFromTC(ThreadID tid)
Handles squashing due to an TC write.
Definition: commit_impl.hh:607
Addr instAddr(ThreadID tid)
Returns the PC of a specific thread.
Definition: commit.hh:319
const Cycles renameToROBDelay
Rename to ROB delay.
Definition: commit.hh:399
Stats::Vector statComBranches
Total number of committed branches.
Definition: commit.hh:503
Stats::Vector statComSwp
Total number of software prefetches committed.
Definition: commit.hh:493
bool commitHead(const DynInstPtr &head_inst, unsigned inst_num)
Tries to commit the head ROB instruction passed in.
CPUPol::RenameMap RenameMap
Definition: commit.hh:89
TimeBuffer< FetchStruct > * fetchQueue
Definition: commit.hh:337
const Cycles commitToIEWDelay
Commit to IEW delay.
Definition: commit.hh:396
Stats::Vector statComRefs
Stat for the total number of committed memory references.
Definition: commit.hh:495
CommitStatus
Overall commit status.
Definition: commit.hh:105
void squashFromSquashAfter(ThreadID tid)
Handles a squash from a squashAfter() request.
Definition: commit_impl.hh:624
TimeBuffer< TimeStruct >::wire robInfoFromIEW
Wire to read information from IEW (for ROB).
Definition: commit.hh:335
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Definition: commit_impl.hh:330
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets the main time buffer pointer, used for backwards communication.
Definition: commit_impl.hh:280
IEW * iewStage
The pointer to the IEW stage.
Definition: commit.hh:173
A vector of scalar stats.
Definition: statistics.hh:2547
bool tcSquash[Impl::MaxThreads]
Records if a thread has to squash this cycle due to an XC write.
Definition: commit.hh:378
void updateStatus()
Updates the overall status of commit with the nextStatus, and tell the CPU if commit is active/inacti...
Definition: commit_impl.hh:469
Stats::Vector2d statCommittedInstType
Committed instructions by instruction type (OpClass)
Definition: commit.hh:513
void getInsts()
Gets instructions from rename and inserts them into the ROB.
CPUPol::RenameStruct RenameStruct
Definition: commit.hh:95
void setRenameQueue(TimeBuffer< RenameStruct > *rq_ptr)
Sets the pointer to the queue coming from rename.
Definition: commit_impl.hh:303
bool avoidQuiesceLiveLock
Have we had an interrupt pending and then seen it de-asserted because of a masking change...
Definition: commit.hh:471
DefaultCommit(O3CPU *_cpu, DerivO3CPUParams *params)
Construct a DefaultCommit with the given parameters.
Definition: commit_impl.hh:81
Stats::Vector statComLoads
Stat for the total number of committed loads.
Definition: commit.hh:497
Declaration of Statistics objects.
void tick()
Ticks the commit stage, which tries to commit instructions.
Definition: commit_impl.hh:654
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
std::list< ThreadID > * activeThreads
Pointer to the list of active threads.
Definition: commit.hh:459
RenameMap * renameMap[Impl::MaxThreads]
Rename map interface.
Definition: commit.hh:462
Bitfield< 63 > val
Definition: misc.hh:769
ThreadID roundRobin()
Returns the thread ID to use based on a round robin policy.
void commitInsts()
Commits as many instructions as possible.
Definition: commit_impl.hh:975
TimeBuffer< RenameStruct > * renameQueue
Rename instruction queue interface, for ROB.
Definition: commit.hh:348
CPUPol::FetchStruct FetchStruct
Definition: commit.hh:93
bool isDrained() const
Has the stage drained?
Definition: commit_impl.hh:412
DefaultCommit handles single threaded and SMT commit.
Definition: commit.hh:81
void setIEWStage(IEW *iew_stage)
Sets the pointer to the IEW stage.
Definition: commit_impl.hh:323
CPUPol::IEW IEW
Definition: commit.hh:98
void drainResume()
Resumes execution after draining.
Definition: commit_impl.hh:396
void propagateInterrupt()
Get fetch redirecting so we can handle an interrupt.
Definition: commit_impl.hh:787
Stats::Vector opsCommitted
Total number of ops (including micro ops) committed.
Definition: commit.hh:491
void generateTrapEvent(ThreadID tid, Fault inst_fault)
Generates an event to schedule a squash due to a trap.
Definition: commit_impl.hh:525
Stats::Vector statComFloating
Total number of floating point instructions.
Definition: commit.hh:507
const Cycles trapLatency
The latency to handle a trap.
Definition: commit.hh:432
Addr microPC(ThreadID tid)
Reads the micro PC of a specific thread.
Definition: commit.hh:325
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Definition: commit_impl.hh:293
void squashFromTrap(ThreadID tid)
Handles squashing due to a trap.
Definition: commit_impl.hh:589
const unsigned renameWidth
Rename width, in instructions.
Definition: commit.hh:406
TheISA::PCState pcState(ThreadID tid)
Reads the PC of a specific thread.
Definition: commit.hh:312
Stats::Vector statComAmos
Stat for the total number of committed atomics.
Definition: commit.hh:499
Stats::Scalar branchMispredicts
Stat for the total number of branch mispredicts that caused a squash.
Definition: commit.hh:484
ThreadID oldestReady()
Returns the thread ID to use based on an oldest instruction policy.
Impl::O3CPU O3CPU
Definition: commit.hh:85
unsigned numRobs
Number of Reorder Buffers.
Definition: commit.hh:412
Stats::Vector statComMembars
Total number of committed memory barriers.
Definition: commit.hh:501
Impl::CPUPol CPUPol
Definition: commit.hh:87
TimeBuffer< IEWStruct >::wire fromIEW
Wire to read information from IEW queue.
Definition: commit.hh:345
A simple distribution stat.
Definition: statistics.hh:2589
ThreadStatus commitStatus[Impl::MaxThreads]
Per-thread status.
Definition: commit.hh:126
Stats::Distribution numCommittedDist
Distribution of the number of committed instructions each cycle.
Definition: commit.hh:486
O3ThreadState< Impl > Thread
Definition: commit.hh:100
CPUPol::IEWStruct IEWStruct
Definition: commit.hh:94
void squashAll(ThreadID tid)
Squashes all in flight instructions.
Definition: commit_impl.hh:553
void generateTCEvent(ThreadID tid)
Records that commit needs to initiate a squash due to an external state update through the TC...
Definition: commit_impl.hh:543
O3CPU * cpu
Pointer to O3CPU.
Definition: commit.hh:359
uint64_t InstSeqNum
Definition: inst_seq.hh:37
void regStats()
Registers statistics.
Definition: commit_impl.hh:147
ProbePointArg< DynInstPtr > * ppCommit
Probe Points.
Definition: commit.hh:131
void deactivateThread(ThreadID tid)
Deschedules a thread from scheduling.
Definition: commit_impl.hh:456
void setROB(ROB *rob_ptr)
Sets pointer to the ROB.
Definition: commit_impl.hh:345
bool checkEmptyROB[Impl::MaxThreads]
Records if commit should check if the ROB is truly empty (see commit_impl.hh).
Definition: commit.hh:456
Fault interrupt
The interrupt fault.
Definition: commit.hh:435
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void takeOverFrom()
Takes over from another CPU&#39;s thread.
Definition: commit_impl.hh:440
void updateComInstStats(const DynInstPtr &inst)
Updates commit stats based on this instruction.
ProbePointArg< DynInstPtr > * ppSquash
To probe when an instruction is squashed.
Definition: commit.hh:134
ThreadStatus
Individual thread status.
Definition: commit.hh:111
const Cycles iewToCommitDelay
IEW to Commit delay.
Definition: commit.hh:393
bool changedROBEntries()
Returns if any of the threads have the number of ROB entries changed on this cycle.
Definition: commit_impl.hh:500
bool drainPending
Is a drain pending? Commit is looking for an instruction boundary while there are no pending interrup...
Definition: commit.hh:420
CommitPolicy commitPolicy
Commit policy used in SMT mode.
Definition: commit.hh:128
CPUPol::TimeStruct TimeStruct
Definition: commit.hh:92
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
Definition: commit.hh:329
void drain()
Initializes the draining of commit.
Definition: commit_impl.hh:389
size_t numROBFreeEntries(ThreadID tid)
Returns the number of free ROB entries for a specific thread.
Definition: commit_impl.hh:518
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
InstSeqNum lastCommitedSeqNum[Impl::MaxThreads]
The sequence number of the last commited instruction.
Definition: commit.hh:446
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: commit_impl.hh:404
void pcState(const TheISA::PCState &val, ThreadID tid)
Sets the PC of a specific thread.
Definition: commit.hh:315
std::list< ThreadID > priority_list
Priority List used for Commit Policy.
Definition: commit.hh:390
Stats::Vector statComVector
Total number of vector instructions.
Definition: commit.hh:505
bool trapSquash[Impl::MaxThreads]
Records if a thread has to squash this cycle due to a trap.
Definition: commit.hh:375
void commit()
Handles any squashes that are sent from IEW, and adds instructions to the ROB and tries to commit ins...
Definition: commit_impl.hh:812
InstSeqNum youngestSeqNum[Impl::MaxThreads]
The sequence number of the youngest valid instruction in the ROB.
Definition: commit.hh:443
Stats::Scalar commitNonSpecStalls
Stat for the total number of times commit has had to stall due to a non- speculative instruction reac...
Definition: commit.hh:482
const ThreadID numThreads
Number of Active Threads.
Definition: commit.hh:415
ThreadID getCommittingThread()
Gets the thread to commit, based on the SMT policy.
void squashAfter(ThreadID tid, const DynInstPtr &head_inst)
Handle squashing from instruction with SquashAfter set.
Definition: commit_impl.hh:642
CPUPol::ROB ROB
Definition: commit.hh:90
void setIEWQueue(TimeBuffer< IEWStruct > *iq_ptr)
Sets the pointer to the queue coming from IEW.
Definition: commit_impl.hh:313
Stats::Vector instsCommitted
Total number of instructions committed.
Definition: commit.hh:489
TimeBuffer< RenameStruct >::wire fromRename
Wire to read information from rename queue.
Definition: commit.hh:351
bool committedStores[Impl::MaxThreads]
Records if there were any stores committed this cycle.
Definition: commit.hh:452
Stats::Scalar commitSquashedInsts
Stat for the total number of squashed instructions discarded by commit.
Definition: commit.hh:478
TimeBuffer< IEWStruct > * iewQueue
IEW instruction queue interface.
Definition: commit.hh:342
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2575
DynInstPtr squashAfterInst[Impl::MaxThreads]
Instruction passed to squashAfter().
Definition: commit.hh:387
CommitStatus _nextStatus
Next commit status, to be set at the end of the cycle.
Definition: commit.hh:124
bool wroteToTimeBuffer
Records that commit has written to the time buffer this cycle.
Definition: commit.hh:367
Addr nextInstAddr(ThreadID tid)
Returns the next PC of a specific thread.
Definition: commit.hh:322
Impl::DynInstPtr DynInstPtr
Definition: commit.hh:86
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Stats::Vector statComFunctionCalls
Total number of function calls.
Definition: commit.hh:511
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
std::string name() const
Returns the name of the DefaultCommit.
Definition: commit_impl.hh:131
Stats::Vector statComInteger
Total number of integer instructions.
Definition: commit.hh:509
void clearStates(ThreadID tid)
Clear all thread-specific states.
Definition: commit_impl.hh:373
CommitStatus _status
Overall commit status.
Definition: commit.hh:122
bool canHandleInterrupts
True if last committed microop can be followed by an interrupt.
Definition: commit.hh:465
void startupStage()
Initializes stage by sending back the number of free entries.
Definition: commit_impl.hh:352
void setThreads(std::vector< Thread *> &threads)
Sets the list of threads.
Definition: commit_impl.hh:273
bool changedROBNumEntries[Impl::MaxThreads]
Records if the number of ROB entries has changed this cycle.
Definition: commit.hh:372
ProbePointArg< DynInstPtr > * ppCommitStall
Definition: commit.hh:132
std::vector< Thread * > thread
Vector of all of the threads.
Definition: commit.hh:362
CPUPol::Fetch Fetch
Definition: commit.hh:97
void markCompletedInsts()
Marks completed instructions using information sent from IEW.

Generated on Fri Jul 3 2020 15:53:00 for gem5 by doxygen 1.8.13