comm.hh (9260:9ca8345d24c4) comm.hh (10239:592f0bb6bd6f)
1/*
2 * Copyright (c) 2011 ARM Limited
1/*
2 * Copyright (c) 2011 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
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 * Authors: Kevin Lim
41 */
42
43#ifndef __CPU_O3_COMM_HH__
44#define __CPU_O3_COMM_HH__
45
46#include <vector>
47
48#include "arch/types.hh"
49#include "base/types.hh"
50#include "cpu/inst_seq.hh"
51#include "sim/faults.hh"
52
53// Typedef for physical register index type. Although the Impl would be the
54// most likely location for this, there are a few classes that need this
55// typedef yet are not templated on the Impl. For now it will be defined here.
56typedef short int PhysRegIndex;
57
58/** Struct that defines the information passed from fetch to decode. */
59template<class Impl>
60struct DefaultFetchDefaultDecode {
61 typedef typename Impl::DynInstPtr DynInstPtr;
62
63 int size;
64
65 DynInstPtr insts[Impl::MaxWidth];
66 Fault fetchFault;
67 InstSeqNum fetchFaultSN;
68 bool clearFetchFault;
69};
70
71/** Struct that defines the information passed from decode to rename. */
72template<class Impl>
73struct DefaultDecodeDefaultRename {
74 typedef typename Impl::DynInstPtr DynInstPtr;
75
76 int size;
77
78 DynInstPtr insts[Impl::MaxWidth];
79};
80
81/** Struct that defines the information passed from rename to IEW. */
82template<class Impl>
83struct DefaultRenameDefaultIEW {
84 typedef typename Impl::DynInstPtr DynInstPtr;
85
86 int size;
87
88 DynInstPtr insts[Impl::MaxWidth];
89};
90
91/** Struct that defines the information passed from IEW to commit. */
92template<class Impl>
93struct DefaultIEWDefaultCommit {
94 typedef typename Impl::DynInstPtr DynInstPtr;
95
96 int size;
97
98 DynInstPtr insts[Impl::MaxWidth];
99 DynInstPtr mispredictInst[Impl::MaxThreads];
100 Addr mispredPC[Impl::MaxThreads];
101 InstSeqNum squashedSeqNum[Impl::MaxThreads];
102 TheISA::PCState pc[Impl::MaxThreads];
103
104 bool squash[Impl::MaxThreads];
105 bool branchMispredict[Impl::MaxThreads];
106 bool branchTaken[Impl::MaxThreads];
107 bool includeSquashInst[Impl::MaxThreads];
108};
109
110template<class Impl>
111struct IssueStruct {
112 typedef typename Impl::DynInstPtr DynInstPtr;
113
114 int size;
115
116 DynInstPtr insts[Impl::MaxWidth];
117};
118
119/** Struct that defines all backwards communication. */
120template<class Impl>
121struct TimeBufStruct {
122 typedef typename Impl::DynInstPtr DynInstPtr;
123 struct decodeComm {
124 TheISA::PCState nextPC;
125 DynInstPtr mispredictInst;
126 DynInstPtr squashInst;
127 InstSeqNum doneSeqNum;
128 Addr mispredPC;
129 uint64_t branchAddr;
130 unsigned branchCount;
131 bool squash;
132 bool predIncorrect;
133 bool branchMispredict;
134 bool branchTaken;
135 };
136
137 decodeComm decodeInfo[Impl::MaxThreads];
138
139 struct renameComm {
140 };
141
142 renameComm renameInfo[Impl::MaxThreads];
143
144 struct iewComm {
145 // Also eventually include skid buffer space.
146 unsigned freeIQEntries;
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 */
43
44#ifndef __CPU_O3_COMM_HH__
45#define __CPU_O3_COMM_HH__
46
47#include <vector>
48
49#include "arch/types.hh"
50#include "base/types.hh"
51#include "cpu/inst_seq.hh"
52#include "sim/faults.hh"
53
54// Typedef for physical register index type. Although the Impl would be the
55// most likely location for this, there are a few classes that need this
56// typedef yet are not templated on the Impl. For now it will be defined here.
57typedef short int PhysRegIndex;
58
59/** Struct that defines the information passed from fetch to decode. */
60template<class Impl>
61struct DefaultFetchDefaultDecode {
62 typedef typename Impl::DynInstPtr DynInstPtr;
63
64 int size;
65
66 DynInstPtr insts[Impl::MaxWidth];
67 Fault fetchFault;
68 InstSeqNum fetchFaultSN;
69 bool clearFetchFault;
70};
71
72/** Struct that defines the information passed from decode to rename. */
73template<class Impl>
74struct DefaultDecodeDefaultRename {
75 typedef typename Impl::DynInstPtr DynInstPtr;
76
77 int size;
78
79 DynInstPtr insts[Impl::MaxWidth];
80};
81
82/** Struct that defines the information passed from rename to IEW. */
83template<class Impl>
84struct DefaultRenameDefaultIEW {
85 typedef typename Impl::DynInstPtr DynInstPtr;
86
87 int size;
88
89 DynInstPtr insts[Impl::MaxWidth];
90};
91
92/** Struct that defines the information passed from IEW to commit. */
93template<class Impl>
94struct DefaultIEWDefaultCommit {
95 typedef typename Impl::DynInstPtr DynInstPtr;
96
97 int size;
98
99 DynInstPtr insts[Impl::MaxWidth];
100 DynInstPtr mispredictInst[Impl::MaxThreads];
101 Addr mispredPC[Impl::MaxThreads];
102 InstSeqNum squashedSeqNum[Impl::MaxThreads];
103 TheISA::PCState pc[Impl::MaxThreads];
104
105 bool squash[Impl::MaxThreads];
106 bool branchMispredict[Impl::MaxThreads];
107 bool branchTaken[Impl::MaxThreads];
108 bool includeSquashInst[Impl::MaxThreads];
109};
110
111template<class Impl>
112struct IssueStruct {
113 typedef typename Impl::DynInstPtr DynInstPtr;
114
115 int size;
116
117 DynInstPtr insts[Impl::MaxWidth];
118};
119
120/** Struct that defines all backwards communication. */
121template<class Impl>
122struct TimeBufStruct {
123 typedef typename Impl::DynInstPtr DynInstPtr;
124 struct decodeComm {
125 TheISA::PCState nextPC;
126 DynInstPtr mispredictInst;
127 DynInstPtr squashInst;
128 InstSeqNum doneSeqNum;
129 Addr mispredPC;
130 uint64_t branchAddr;
131 unsigned branchCount;
132 bool squash;
133 bool predIncorrect;
134 bool branchMispredict;
135 bool branchTaken;
136 };
137
138 decodeComm decodeInfo[Impl::MaxThreads];
139
140 struct renameComm {
141 };
142
143 renameComm renameInfo[Impl::MaxThreads];
144
145 struct iewComm {
146 // Also eventually include skid buffer space.
147 unsigned freeIQEntries;
147 unsigned freeLSQEntries;
148 unsigned freeLQEntries;
149 unsigned freeSQEntries;
150 unsigned dispatchedToLQ;
151 unsigned dispatchedToSQ;
148
149 unsigned iqCount;
150 unsigned ldstqCount;
151
152 unsigned dispatched;
152
153 unsigned iqCount;
154 unsigned ldstqCount;
155
156 unsigned dispatched;
153 unsigned dispatchedToLSQ;
154 bool usedIQ;
155 bool usedLSQ;
156 };
157
158 iewComm iewInfo[Impl::MaxThreads];
159
160 struct commitComm {
161 /////////////////////////////////////////////////////////////////////
162 // This code has been re-structured for better packing of variables
163 // instead of by stage which is the more logical way to arrange the
164 // data.
165 // F = Fetch
166 // D = Decode
167 // I = IEW
168 // R = Rename
169 // As such each member is annotated with who consumes it
170 // e.g. bool variable name // *F,R for Fetch and Rename
171 /////////////////////////////////////////////////////////////////////
172
173 /// The pc of the next instruction to execute. This is the next
174 /// instruction for a branch mispredict, but the same instruction for
175 /// order violation and the like
176 TheISA::PCState pc; // *F
177
178 /// Provide fetch the instruction that mispredicted, if this
179 /// pointer is not-null a misprediction occured
180 DynInstPtr mispredictInst; // *F
181
182 /// Instruction that caused the a non-mispredict squash
183 DynInstPtr squashInst; // *F
184
185 /// Hack for now to send back an uncached access to the IEW stage.
186 DynInstPtr uncachedLoad; // *I
187
188 /// Communication specifically to the IQ to tell the IQ that it can
189 /// schedule a non-speculative instruction.
190 InstSeqNum nonSpecSeqNum; // *I
191
192 /// Represents the instruction that has either been retired or
193 /// squashed. Similar to having a single bus that broadcasts the
194 /// retired or squashed sequence number.
195 InstSeqNum doneSeqNum; // *F, I
196
197 /// Tell Rename how many free entries it has in the ROB
198 unsigned freeROBEntries; // *R
199
200 bool squash; // *F, D, R, I
201 bool robSquashing; // *F, D, R, I
202
203 /// Rename should re-read number of free rob entries
204 bool usedROB; // *R
205
206 /// Notify Rename that the ROB is empty
207 bool emptyROB; // *R
208
209 /// Was the branch taken or not
210 bool branchTaken; // *F
211 /// If an interrupt is pending and fetch should stall
212 bool interruptPending; // *F
213 /// If the interrupt ended up being cleared before being handled
214 bool clearInterrupt; // *F
215
216 /// Hack for now to send back an uncached access to the IEW stage.
217 bool uncached; // *I
218
219 };
220
221 commitComm commitInfo[Impl::MaxThreads];
222
223 bool decodeBlock[Impl::MaxThreads];
224 bool decodeUnblock[Impl::MaxThreads];
225 bool renameBlock[Impl::MaxThreads];
226 bool renameUnblock[Impl::MaxThreads];
227 bool iewBlock[Impl::MaxThreads];
228 bool iewUnblock[Impl::MaxThreads];
229 bool commitBlock[Impl::MaxThreads];
230 bool commitUnblock[Impl::MaxThreads];
231};
232
233#endif //__CPU_O3_COMM_HH__
157 bool usedIQ;
158 bool usedLSQ;
159 };
160
161 iewComm iewInfo[Impl::MaxThreads];
162
163 struct commitComm {
164 /////////////////////////////////////////////////////////////////////
165 // This code has been re-structured for better packing of variables
166 // instead of by stage which is the more logical way to arrange the
167 // data.
168 // F = Fetch
169 // D = Decode
170 // I = IEW
171 // R = Rename
172 // As such each member is annotated with who consumes it
173 // e.g. bool variable name // *F,R for Fetch and Rename
174 /////////////////////////////////////////////////////////////////////
175
176 /// The pc of the next instruction to execute. This is the next
177 /// instruction for a branch mispredict, but the same instruction for
178 /// order violation and the like
179 TheISA::PCState pc; // *F
180
181 /// Provide fetch the instruction that mispredicted, if this
182 /// pointer is not-null a misprediction occured
183 DynInstPtr mispredictInst; // *F
184
185 /// Instruction that caused the a non-mispredict squash
186 DynInstPtr squashInst; // *F
187
188 /// Hack for now to send back an uncached access to the IEW stage.
189 DynInstPtr uncachedLoad; // *I
190
191 /// Communication specifically to the IQ to tell the IQ that it can
192 /// schedule a non-speculative instruction.
193 InstSeqNum nonSpecSeqNum; // *I
194
195 /// Represents the instruction that has either been retired or
196 /// squashed. Similar to having a single bus that broadcasts the
197 /// retired or squashed sequence number.
198 InstSeqNum doneSeqNum; // *F, I
199
200 /// Tell Rename how many free entries it has in the ROB
201 unsigned freeROBEntries; // *R
202
203 bool squash; // *F, D, R, I
204 bool robSquashing; // *F, D, R, I
205
206 /// Rename should re-read number of free rob entries
207 bool usedROB; // *R
208
209 /// Notify Rename that the ROB is empty
210 bool emptyROB; // *R
211
212 /// Was the branch taken or not
213 bool branchTaken; // *F
214 /// If an interrupt is pending and fetch should stall
215 bool interruptPending; // *F
216 /// If the interrupt ended up being cleared before being handled
217 bool clearInterrupt; // *F
218
219 /// Hack for now to send back an uncached access to the IEW stage.
220 bool uncached; // *I
221
222 };
223
224 commitComm commitInfo[Impl::MaxThreads];
225
226 bool decodeBlock[Impl::MaxThreads];
227 bool decodeUnblock[Impl::MaxThreads];
228 bool renameBlock[Impl::MaxThreads];
229 bool renameUnblock[Impl::MaxThreads];
230 bool iewBlock[Impl::MaxThreads];
231 bool iewUnblock[Impl::MaxThreads];
232 bool commitBlock[Impl::MaxThreads];
233 bool commitUnblock[Impl::MaxThreads];
234};
235
236#endif //__CPU_O3_COMM_HH__