Deleted Added
sdiff udiff text old ( 8471:18e560ba1539 ) new ( 8607:5fb918115c07 )
full compact
1/*
2 * Copyright (c) 2010 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

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

1210
1211 return ret_val;
1212}
1213
1214template <class Impl>
1215void
1216DefaultRename<Impl>::readFreeEntries(ThreadID tid)
1217{
1218 if (fromIEW->iewInfo[tid].usedIQ)
1219 freeEntries[tid].iqEntries = fromIEW->iewInfo[tid].freeIQEntries;
1220
1221 if (fromIEW->iewInfo[tid].usedLSQ)
1222 freeEntries[tid].lsqEntries = fromIEW->iewInfo[tid].freeLSQEntries;
1223
1224 if (fromCommit->commitInfo[tid].usedROB) {
1225 freeEntries[tid].robEntries =
1226 fromCommit->commitInfo[tid].freeROBEntries;
1227 emptyROB[tid] = fromCommit->commitInfo[tid].emptyROB;
1228 }
1229
1230 DPRINTF(Rename, "[tid:%i]: Free IQ: %i, Free ROB: %i, Free LSQ: %i\n",
1231 tid,
1232 freeEntries[tid].iqEntries,
1233 freeEntries[tid].robEntries,
1234 freeEntries[tid].lsqEntries);
1235

--- 165 unchanged lines hidden ---