gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
comm.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, 2016-2017 ARM Limited
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2004-2006 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  *
41  * Authors: Kevin Lim
42  * Nathanael Premillieu
43  */
44 
45 #ifndef __CPU_O3_COMM_HH__
46 #define __CPU_O3_COMM_HH__
47 
48 #include <vector>
49 
50 #include "arch/types.hh"
51 #include "base/types.hh"
52 #include "cpu/inst_seq.hh"
53 #include "sim/faults.hh"
54 
56 template<class Impl>
58  typedef typename Impl::DynInstPtr DynInstPtr;
59 
60  int size;
61 
62  DynInstPtr insts[Impl::MaxWidth];
66 };
67 
69 template<class Impl>
71  typedef typename Impl::DynInstPtr DynInstPtr;
72 
73  int size;
74 
75  DynInstPtr insts[Impl::MaxWidth];
76 };
77 
79 template<class Impl>
81  typedef typename Impl::DynInstPtr DynInstPtr;
82 
83  int size;
84 
85  DynInstPtr insts[Impl::MaxWidth];
86 };
87 
89 template<class Impl>
91  typedef typename Impl::DynInstPtr DynInstPtr;
92 
93  int size;
94 
95  DynInstPtr insts[Impl::MaxWidth];
96  DynInstPtr mispredictInst[Impl::MaxThreads];
97  Addr mispredPC[Impl::MaxThreads];
98  InstSeqNum squashedSeqNum[Impl::MaxThreads];
99  TheISA::PCState pc[Impl::MaxThreads];
100 
101  bool squash[Impl::MaxThreads];
102  bool branchMispredict[Impl::MaxThreads];
103  bool branchTaken[Impl::MaxThreads];
104  bool includeSquashInst[Impl::MaxThreads];
105 };
106 
107 template<class Impl>
108 struct IssueStruct {
109  typedef typename Impl::DynInstPtr DynInstPtr;
110 
111  int size;
112 
113  DynInstPtr insts[Impl::MaxWidth];
114 };
115 
117 template<class Impl>
119  typedef typename Impl::DynInstPtr DynInstPtr;
120  struct decodeComm {
122  DynInstPtr mispredictInst;
123  DynInstPtr squashInst;
126  uint64_t branchAddr;
127  unsigned branchCount;
128  bool squash;
132  };
133 
134  decodeComm decodeInfo[Impl::MaxThreads];
135 
136  struct renameComm {
137  };
138 
139  renameComm renameInfo[Impl::MaxThreads];
140 
141  struct iewComm {
142  // Also eventually include skid buffer space.
143  unsigned freeIQEntries;
144  unsigned freeLQEntries;
145  unsigned freeSQEntries;
146  unsigned dispatchedToLQ;
147  unsigned dispatchedToSQ;
148 
149  unsigned iqCount;
150  unsigned ldstqCount;
151 
152  unsigned dispatched;
153  bool usedIQ;
154  bool usedLSQ;
155  };
156 
157  iewComm iewInfo[Impl::MaxThreads];
158 
159  struct commitComm {
161  // This code has been re-structured for better packing of variables
162  // instead of by stage which is the more logical way to arrange the
163  // data.
164  // F = Fetch
165  // D = Decode
166  // I = IEW
167  // R = Rename
168  // As such each member is annotated with who consumes it
169  // e.g. bool variable name // *F,R for Fetch and Rename
171 
176 
179  DynInstPtr mispredictInst; // *F
180 
182  DynInstPtr squashInst; // *F
183 
186  DynInstPtr strictlyOrderedLoad; // *I
187 
191 
196 
198  unsigned freeROBEntries; // *R
199 
200  bool squash; // *F, D, R, I
201  bool robSquashing; // *F, D, R, I
202 
204  bool usedROB; // *R
205 
207  bool emptyROB; // *R
208 
210  bool branchTaken; // *F
212  bool interruptPending; // *F
214  bool clearInterrupt; // *F
215 
218  bool strictlyOrdered; // *I
219 
220  };
221 
222  commitComm commitInfo[Impl::MaxThreads];
223 
224  bool decodeBlock[Impl::MaxThreads];
225  bool decodeUnblock[Impl::MaxThreads];
226  bool renameBlock[Impl::MaxThreads];
227  bool renameUnblock[Impl::MaxThreads];
228  bool iewBlock[Impl::MaxThreads];
229  bool iewUnblock[Impl::MaxThreads];
230 };
231 
232 #endif //__CPU_O3_COMM_HH__
unsigned dispatchedToSQ
Definition: comm.hh:147
Struct that defines the information passed from IEW to commit.
Definition: comm.hh:90
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:71
bool branchTaken
Was the branch taken or not.
Definition: comm.hh:210
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:58
unsigned freeROBEntries
Tell Rename how many free entries it has in the ROB.
Definition: comm.hh:198
bool clearInterrupt
If the interrupt ended up being cleared before being handled.
Definition: comm.hh:214
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:109
unsigned ldstqCount
Definition: comm.hh:150
DynInstPtr squashInst
Definition: comm.hh:123
InstSeqNum nonSpecSeqNum
Communication specifically to the IQ to tell the IQ that it can schedule a non-speculative instructio...
Definition: comm.hh:190
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:62
InstSeqNum doneSeqNum
Represents the instruction that has either been retired or squashed.
Definition: comm.hh:195
unsigned dispatchedToLQ
Definition: comm.hh:146
DynInstPtr squashInst
Instruction that caused the a non-mispredict squash.
Definition: comm.hh:182
bool emptyROB
Notify Rename that the ROB is empty.
Definition: comm.hh:207
unsigned dispatched
Definition: comm.hh:152
InstSeqNum fetchFaultSN
Definition: comm.hh:64
unsigned iqCount
Definition: comm.hh:149
unsigned freeLQEntries
Definition: comm.hh:144
Bitfield< 4 > pc
unsigned freeIQEntries
Definition: comm.hh:143
unsigned freeSQEntries
Definition: comm.hh:145
uint64_t InstSeqNum
Definition: inst_seq.hh:40
bool strictlyOrdered
Hack for now to send back an strictly ordered access to the IEW stage.
Definition: comm.hh:218
bool usedROB
Rename should re-read number of free rob entries.
Definition: comm.hh:204
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
TheISA::PCState pc
The pc of the next instruction to execute.
Definition: comm.hh:175
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:119
Struct that defines the information passed from fetch to decode.
Definition: comm.hh:57
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:81
GenericISA::SimplePCState< MachInst > PCState
Definition: types.hh:43
DynInstPtr strictlyOrderedLoad
Hack for now to send back a strictly ordered access to the IEW stage.
Definition: comm.hh:186
DynInstPtr mispredictInst
Definition: comm.hh:122
int size
Definition: comm.hh:111
bool interruptPending
If an interrupt is pending and fetch should stall.
Definition: comm.hh:212
Struct that defines the information passed from rename to IEW.
Definition: comm.hh:80
Struct that defines all backwards communication.
Definition: comm.hh:118
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:91
InstSeqNum doneSeqNum
Definition: comm.hh:124
std::shared_ptr< FaultBase > Fault
Definition: types.hh:240
DynInstPtr mispredictInst
Provide fetch the instruction that mispredicted, if this pointer is not-null a misprediction occured...
Definition: comm.hh:179
TheISA::PCState nextPC
Definition: comm.hh:121
Struct that defines the information passed from decode to rename.
Definition: comm.hh:70

Generated on Fri Feb 28 2020 16:26:59 for gem5 by doxygen 1.8.13