gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
execute.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
45 #ifndef __CPU_MINOR_EXECUTE_HH__
46 #define __CPU_MINOR_EXECUTE_HH__
47 
48 #include "cpu/minor/buffers.hh"
49 #include "cpu/minor/cpu.hh"
50 #include "cpu/minor/func_unit.hh"
51 #include "cpu/minor/lsq.hh"
52 #include "cpu/minor/pipe_data.hh"
53 #include "cpu/minor/scoreboard.hh"
54 
55 namespace Minor
56 {
57 
60 class Execute : public Named
61 {
62  protected:
65 
68 
71 
73  unsigned int issueLimit;
74 
76  unsigned int memoryIssueLimit;
77 
79  unsigned int commitLimit;
80 
82  unsigned int memoryCommitLimit;
83 
88 
91 
93  unsigned int numFuncUnits;
94 
98 
101 
104 
108 
111  unsigned int noCostFUIndex;
112 
115 
118 
121 
122  public: /* Public for Pipeline to be able to pass it to Decode */
124 
125  protected:
137  {
138  NotDraining, /* Not draining, possibly running */
139  DrainCurrentInst, /* Draining to end of inst/macroop */
140  DrainHaltFetch, /* Halting Fetch after completing current inst */
141  DrainAllInsts /* Discarding all remaining insts */
142  };
143 
146  ExecuteThreadInfo(unsigned int insts_committed) :
147  inputIndex(0),
149  instsBeingCommitted(insts_committed),
150  streamSeqNum(InstId::firstStreamSeqNum),
151  lastPredictionSeqNum(InstId::firstPredictionSeqNum),
153  { }
154 
156  inputIndex(other.inputIndex),
159  streamSeqNum(other.streamSeqNum),
161  drainState(other.drainState)
162  { }
163 
166 
169 
172  unsigned int inputIndex;
173 
177 
181 
187 
193 
196  };
197 
199 
203 
204  protected:
205  friend std::ostream &operator <<(std::ostream &os, DrainState state);
206 
209  const ForwardInstData *getInput(ThreadID tid);
210 
212  void popInput(ThreadID tid);
213 
217  void tryToBranch(MinorDynInstPtr inst, Fault fault, BranchData &branch);
218 
222  MinorDynInstPtr inst, const TheISA::PCState &target,
223  BranchData &branch);
224 
231  LSQ::LSQRequestPtr response, BranchData &branch,
232  Fault &fault);
233 
245  bool executeMemRefInst(MinorDynInstPtr inst, BranchData &branch,
246  bool &failed_predicate, Fault &fault);
247 
249  bool isInterrupted(ThreadID thread_id) const;
250 
252  bool isInbetweenInsts(ThreadID thread_id) const;
253 
256  bool takeInterrupt(ThreadID thread_id, BranchData &branch);
257 
259  unsigned int issue(ThreadID thread_id);
260 
263  bool tryPCEvents(ThreadID thread_id);
264 
268 
272  ThreadID checkInterrupts(BranchData& branch, bool& interrupted);
273 
276  bool hasInterrupt(ThreadID thread_id);
277 
292  bool commitInst(MinorDynInstPtr inst, bool early_memory_issue,
293  BranchData &branch, Fault &fault, bool &committed,
294  bool &completed_mem_issue);
295 
303  void commit(ThreadID thread_id, bool only_commit_microops, bool discard,
304  BranchData &branch);
305 
307  void setDrainState(ThreadID thread_id, DrainState state);
308 
313 
314  public:
315  Execute(const std::string &name_,
316  MinorCPU &cpu_,
317  MinorCPUParams &params,
320 
321  ~Execute();
322 
323  public:
324 
327 
329  LSQ &getLSQ() { return lsq; }
330 
334 
337  bool instIsHeadInst(MinorDynInstPtr inst);
338 
340  void evaluate();
341 
342  void minorTrace() const;
343 
346  bool isDrained();
347 
349  unsigned int drain();
350  void drainResume();
351 };
352 
353 }
354 
355 #endif /* __CPU_MINOR_EXECUTE_HH__ */
DrainState
Stage cycle-by-cycle state.
Definition: execute.hh:136
void handleMemResponse(MinorDynInstPtr inst, LSQ::LSQRequestPtr response, BranchData &branch, Fault &fault)
Handle extracting mem ref responses from the memory queues and completing the associated instructions...
Definition: execute.cc:319
void popInput(ThreadID tid)
Pop an element off the input buffer, if there are any.
Definition: execute.cc:205
ExecuteThreadInfo(unsigned int insts_committed)
Constructor.
Definition: execute.hh:146
void commit(ThreadID thread_id, bool only_commit_microops, bool discard, BranchData &branch)
Try and commit instructions from the ends of the functional unit pipelines.
Definition: execute.cc:1023
Execute stage.
Definition: execute.hh:60
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
Contains class definitions for data flowing between pipeline stages in the top-level structure portio...
bool allowEarlyMemIssue
Allow mem refs to leave their FUs before reaching the head of the in flight insts queue if their depe...
Definition: execute.hh:107
Execute function unit descriptions and pipeline implementations.
unsigned int memoryCommitLimit
Number of memory instructions that can be committed per cycle.
Definition: execute.hh:82
void doInstCommitAccounting(MinorDynInstPtr inst)
Do the stats handling and instruction count and PC event events related to the new instruction/op cou...
Definition: execute.cc:858
ThreadID issuePriority
Definition: execute.hh:201
bool instIsHeadInst(MinorDynInstPtr inst)
Returns true if the given instruction is at the head of the inFlightInsts instruction queue...
Definition: execute.cc:1870
MinorCPU & cpu
Pointer back to the containing CPU.
Definition: execute.hh:70
A collection of MinorFUs.
Definition: func_unit.hh:179
void setDrainState(ThreadID thread_id, DrainState state)
Set the drain state (with useful debugging messages)
Definition: execute.cc:1809
ExecuteThreadInfo(const ExecuteThreadInfo &other)
Definition: execute.hh:155
bool setTraceTimeOnCommit
Modify instruction trace times on commit.
Definition: execute.hh:100
unsigned int memoryIssueLimit
Number of memory ops that can be issued per cycle.
Definition: execute.hh:76
void tryToBranch(MinorDynInstPtr inst, Fault fault, BranchData &branch)
Generate Branch data based (into branch) on an observed (or not) change in PC while executing an inst...
Definition: execute.cc:214
LSQ & getLSQ()
To allow ExecContext to find the LSQ.
Definition: execute.hh:329
unsigned int issue(ThreadID thread_id)
Try and issue instructions from the inputBuffer.
Definition: execute.cc:544
unsigned int commitLimit
Number of instructions that can be committed per cycle.
Definition: execute.hh:79
ThreadID getCommittingThread()
Use the current threading policy to determine the next thread to decode from.
Definition: execute.cc:1678
Id for lines and instructions.
Definition: dyn_inst.hh:68
Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
Definition: activity.cc:44
Queue< QueuedInst, ReportTraitsAdaptor< QueuedInst > > * inFlightInsts
In-order instructions either in FUs or the LSQ.
Definition: execute.hh:165
std::vector< FUPipeline * > funcUnits
The execution functional units.
Definition: execute.hh:120
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:397
unsigned int numFuncUnits
Number of functional units to produce.
Definition: execute.hh:93
Bitfield< 17 > os
Definition: misc.hh:803
STL vector class.
Definition: stl.hh:37
InstSeqNum lastPredictionSeqNum
A prediction number for use where one isn&#39;t available from an instruction.
Definition: execute.hh:192
Derived SenderState to carry data access info.
Definition: lsq.hh:118
InstSeqNum streamSeqNum
Source of sequence number for instuction streams.
Definition: execute.hh:186
Provide a non-protected base class for Minor&#39;s Ports as derived classes are created by Fetch1 and Exe...
Definition: cpu.hh:98
Execute(const std::string &name_, MinorCPU &cpu_, MinorCPUParams &params, Latch< ForwardInstData >::Output inp_, Latch< BranchData >::Input out_)
Definition: execute.cc:60
Definition: trace.hh:147
ForwardInstData instsBeingCommitted
Structure for reporting insts currently being processed/retired for MinorTrace.
Definition: execute.hh:180
void drainResume()
Definition: execute.cc:1773
ThreadID getIssuingThread()
Definition: execute.cc:1745
bool takeInterrupt(ThreadID thread_id, BranchData &branch)
Act on an interrupt.
Definition: execute.cc:416
unsigned int noCostFUIndex
The FU index of the non-existent costless FU for instructions which pass the MinorDynInst::isNoCostIn...
Definition: execute.hh:111
std::vector< InputBuffer< ForwardInstData > > inputBuffer
Definition: execute.hh:123
Cycles longestFuLatency
Longest latency of any FU, useful for setting up the activity recoder.
Definition: execute.hh:97
bool tryPCEvents(ThreadID thread_id)
Try to act on PC-related events.
Definition: execute.cc:836
A simple instruction scoreboard for tracking dependencies in Execute.
uint64_t InstSeqNum
Definition: inst_seq.hh:37
unsigned int inputIndex
Index that we&#39;ve completed upto in getInput data.
Definition: execute.hh:172
Classes for buffer, queue and FIFO behaviour.
bool isInterrupted(ThreadID thread_id) const
Has an interrupt been raised.
Definition: execute.cc:410
Latch< BranchData >::Input out
Input port carrying stream changes to Fetch1.
Definition: execute.hh:67
ThreadID commitPriority
Definition: execute.hh:202
MinorFUPool & fuDescriptions
Descriptions of the functional units we want to generate.
Definition: execute.hh:90
LSQ lsq
Dcache port to pass on to the CPU.
Definition: execute.hh:114
bool hasInterrupt(ThreadID thread_id)
Checks if a specific thread has an interrupt.
Definition: execute.cc:1634
A load/store queue that allows outstanding reads and writes.
bool processMoreThanOneInput
If true, more than one input line can be processed each cycle if there is room to execute more instru...
Definition: execute.hh:87
bool isInbetweenInsts(ThreadID thread_id) const
Are we between instructions? Can we be interrupted?
Definition: execute.cc:1406
ThreadID checkInterrupts(BranchData &branch, bool &interrupted)
Check all threads for possible interrupts.
Definition: execute.cc:1599
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
DrainState drainState
State progression for draining NotDraining -> ...
Definition: execute.hh:195
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
Definition: pipe_data.hh:62
ThreadID interruptPriority
Definition: execute.hh:200
bool lastCommitWasEndOfMacroop
The last commit was the end of a full instruction so an interrupt can safely happen.
Definition: execute.hh:176
bool instIsRightStream(MinorDynInstPtr inst)
Does the given instruction have the right stream sequence number to be committed? ...
Definition: execute.cc:1864
void minorTrace() const
Definition: execute.cc:1645
Top level definition of the Minor in-order CPU model.
bool executeMemRefInst(MinorDynInstPtr inst, BranchData &branch, bool &failed_predicate, Fault &fault)
Execute a memory reference instruction.
Definition: execute.cc:446
bool commitInst(MinorDynInstPtr inst, bool early_memory_issue, BranchData &branch, Fault &fault, bool &committed, bool &completed_mem_issue)
Commit a single instruction.
Definition: execute.cc:890
std::vector< ExecuteThreadInfo > executeInfo
Definition: execute.hh:198
std::vector< Scoreboard > scoreboard
Scoreboard of instruction dependencies.
Definition: execute.hh:117
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:77
bool isDrained()
After thread suspension, has Execute been drained of in-flight instructions and memory accesses...
Definition: execute.cc:1838
Encapsulate wires on either input or output of the latch.
Definition: buffers.hh:245
Latch< ForwardInstData >::Output inp
Input port carrying instructions from Decode.
Definition: execute.hh:64
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
void evaluate()
Pass on input/buffer data to the output if you can.
Definition: execute.cc:1413
unsigned int drain()
Like the drain interface on SimObject.
Definition: execute.cc:1816
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
MinorCPU::MinorCPUPort & getDcachePort()
Returns the DcachePort owned by this Execute to pass upwards.
Definition: execute.cc:1881
friend std::ostream & operator<<(std::ostream &os, DrainState state)
Definition: execute.cc:1784
unsigned int issueLimit
Number of instructions that can be issued per cycle.
Definition: execute.hh:73
bool setTraceTimeOnIssue
Modify instruction trace times on issue.
Definition: execute.hh:103
Forward flowing data between Fetch2,Decode,Execute carrying a packet of instructions of a width appro...
Definition: pipe_data.hh:253
Queue< QueuedInst, ReportTraitsAdaptor< QueuedInst > > * inFUMemInsts
Memory ref instructions still in the FUs.
Definition: execute.hh:168
const ForwardInstData * getInput(ThreadID tid)
Get a piece of data to work on from the inputBuffer, or 0 if there is no data.
Definition: execute.cc:192
void updateBranchData(ThreadID tid, BranchData::Reason reason, MinorDynInstPtr inst, const TheISA::PCState &target, BranchData &branch)
Actually create a branch to communicate to Fetch1/Fetch2 and, if that is a stream-changing branch upd...
Definition: execute.cc:293

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