gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
comm.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 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  */
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.
57 typedef short int PhysRegIndex;
58 
60 template<class Impl>
62  typedef typename Impl::DynInstPtr DynInstPtr;
63 
64  int size;
65 
66  DynInstPtr insts[Impl::MaxWidth];
70 };
71 
73 template<class Impl>
75  typedef typename Impl::DynInstPtr DynInstPtr;
76 
77  int size;
78 
79  DynInstPtr insts[Impl::MaxWidth];
80 };
81 
83 template<class Impl>
85  typedef typename Impl::DynInstPtr DynInstPtr;
86 
87  int size;
88 
89  DynInstPtr insts[Impl::MaxWidth];
90 };
91 
93 template<class Impl>
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 
111 template<class Impl>
112 struct IssueStruct {
113  typedef typename Impl::DynInstPtr DynInstPtr;
114 
115  int size;
116 
117  DynInstPtr insts[Impl::MaxWidth];
118 };
119 
121 template<class Impl>
123  typedef typename Impl::DynInstPtr DynInstPtr;
124  struct decodeComm {
130  uint64_t branchAddr;
131  unsigned branchCount;
132  bool squash;
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;
148  unsigned freeLQEntries;
149  unsigned freeSQEntries;
150  unsigned dispatchedToLQ;
151  unsigned dispatchedToSQ;
152 
153  unsigned iqCount;
154  unsigned ldstqCount;
155 
156  unsigned dispatched;
157  bool usedIQ;
158  bool usedLSQ;
159  };
160 
161  iewComm iewInfo[Impl::MaxThreads];
162 
163  struct commitComm {
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
175 
180 
184 
187 
191 
195 
200 
202  unsigned freeROBEntries; // *R
203 
204  bool squash; // *F, D, R, I
205  bool robSquashing; // *F, D, R, I
206 
208  bool usedROB; // *R
209 
211  bool emptyROB; // *R
212 
214  bool branchTaken; // *F
216  bool interruptPending; // *F
218  bool clearInterrupt; // *F
219 
222  bool strictlyOrdered; // *I
223 
224  };
225 
226  commitComm commitInfo[Impl::MaxThreads];
227 
228  bool decodeBlock[Impl::MaxThreads];
229  bool decodeUnblock[Impl::MaxThreads];
230  bool renameBlock[Impl::MaxThreads];
231  bool renameUnblock[Impl::MaxThreads];
232  bool iewBlock[Impl::MaxThreads];
233  bool iewUnblock[Impl::MaxThreads];
234 };
235 
236 #endif //__CPU_O3_COMM_HH__
unsigned dispatchedToSQ
Definition: comm.hh:151
bool iewBlock[Impl::MaxThreads]
Definition: comm.hh:232
Struct that defines the information passed from IEW to commit.
Definition: comm.hh:94
renameComm renameInfo[Impl::MaxThreads]
Definition: comm.hh:143
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:75
bool branchTaken
Was the branch taken or not.
Definition: comm.hh:214
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:62
unsigned freeROBEntries
Tell Rename how many free entries it has in the ROB.
Definition: comm.hh:202
bool includeSquashInst[Impl::MaxThreads]
Definition: comm.hh:108
DynInstPtr mispredictInst[Impl::MaxThreads]
Definition: comm.hh:100
bool clearInterrupt
If the interrupt ended up being cleared before being handled.
Definition: comm.hh:218
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:113
unsigned ldstqCount
Definition: comm.hh:154
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:89
DynInstPtr squashInst
Definition: comm.hh:127
bool decodeBlock[Impl::MaxThreads]
Definition: comm.hh:228
bool branchTaken[Impl::MaxThreads]
Definition: comm.hh:107
InstSeqNum nonSpecSeqNum
Communication specifically to the IQ to tell the IQ that it can schedule a non-speculative instructio...
Definition: comm.hh:194
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:79
bool squash[Impl::MaxThreads]
Definition: comm.hh:105
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:66
InstSeqNum doneSeqNum
Represents the instruction that has either been retired or squashed.
Definition: comm.hh:199
unsigned dispatchedToLQ
Definition: comm.hh:150
DynInstPtr squashInst
Instruction that caused the a non-mispredict squash.
Definition: comm.hh:186
InstSeqNum squashedSeqNum[Impl::MaxThreads]
Definition: comm.hh:102
bool renameBlock[Impl::MaxThreads]
Definition: comm.hh:230
iewComm iewInfo[Impl::MaxThreads]
Definition: comm.hh:161
bool emptyROB
Notify Rename that the ROB is empty.
Definition: comm.hh:211
unsigned dispatched
Definition: comm.hh:156
InstSeqNum fetchFaultSN
Definition: comm.hh:68
unsigned iqCount
Definition: comm.hh:153
unsigned freeLQEntries
Definition: comm.hh:148
bool decodeUnblock[Impl::MaxThreads]
Definition: comm.hh:229
unsigned freeIQEntries
Definition: comm.hh:147
unsigned freeSQEntries
Definition: comm.hh:149
bool iewUnblock[Impl::MaxThreads]
Definition: comm.hh:233
Addr mispredPC[Impl::MaxThreads]
Definition: comm.hh:101
bool branchMispredict[Impl::MaxThreads]
Definition: comm.hh:106
commitComm commitInfo[Impl::MaxThreads]
Definition: comm.hh:226
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:222
bool usedROB
Rename should re-read number of free rob entries.
Definition: comm.hh:208
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:179
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:123
bool renameUnblock[Impl::MaxThreads]
Definition: comm.hh:231
Struct that defines the information passed from fetch to decode.
Definition: comm.hh:61
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:85
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:99
GenericISA::SimplePCState< MachInst > PCState
Definition: types.hh:43
short int PhysRegIndex
Definition: comm.hh:57
DynInstPtr strictlyOrderedLoad
Hack for now to send back a strictly ordered access to the IEW stage.
Definition: comm.hh:190
DynInstPtr mispredictInst
Definition: comm.hh:126
int size
Definition: comm.hh:115
bool interruptPending
If an interrupt is pending and fetch should stall.
Definition: comm.hh:216
Struct that defines the information passed from rename to IEW.
Definition: comm.hh:84
Struct that defines all backwards communication.
Definition: comm.hh:122
TheISA::PCState pc[Impl::MaxThreads]
Definition: comm.hh:103
Impl::DynInstPtr DynInstPtr
Definition: comm.hh:95
InstSeqNum doneSeqNum
Definition: comm.hh:128
std::shared_ptr< FaultBase > Fault
Definition: types.hh:184
DynInstPtr mispredictInst
Provide fetch the instruction that mispredicted, if this pointer is not-null a misprediction occured...
Definition: comm.hh:183
TheISA::PCState nextPC
Definition: comm.hh:125
Struct that defines the information passed from decode to rename.
Definition: comm.hh:74
DynInstPtr insts[Impl::MaxWidth]
Definition: comm.hh:117
decodeComm decodeInfo[Impl::MaxThreads]
Definition: comm.hh:138

Generated on Fri Jun 9 2017 13:03:43 for gem5 by doxygen 1.8.6