Deleted Added
sdiff udiff text old ( 9260:9ca8345d24c4 ) new ( 10239:592f0bb6bd6f )
full compact
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

--- 128 unchanged lines hidden (view full) ---

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 {
164 /////////////////////////////////////////////////////////////////////

--- 72 unchanged lines hidden ---