iew_impl.hh (7847:0c6613ad8f18) iew_impl.hh (7848:cc5e64f8423f)
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

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

1256
1257 } else {
1258 // If the instruction has already faulted, then skip executing it.
1259 // Such case can happen when it faulted during ITLB translation.
1260 // If we execute the instruction (even if it's a nop) the fault
1261 // will be replaced and we will lose it.
1262 if (inst->getFault() == NoFault) {
1263 inst->execute();
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

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

1256
1257 } else {
1258 // If the instruction has already faulted, then skip executing it.
1259 // Such case can happen when it faulted during ITLB translation.
1260 // If we execute the instruction (even if it's a nop) the fault
1261 // will be replaced and we will lose it.
1262 if (inst->getFault() == NoFault) {
1263 inst->execute();
1264 if (inst->readPredicate() == false)
1265 inst->forwardOldRegs();
1264 }
1265
1266 inst->setExecuted();
1267
1268 instToCommit(inst);
1269 }
1270
1271 updateExeInstStats(inst);

--- 344 unchanged lines hidden ---
1266 }
1267
1268 inst->setExecuted();
1269
1270 instToCommit(inst);
1271 }
1272
1273 updateExeInstStats(inst);

--- 344 unchanged lines hidden ---