diff -r d607836beefa -r 1fb15da02b20 src/cpu/o3/commit_impl.hh --- a/src/cpu/o3/commit_impl.hh Wed Feb 29 10:57:41 2012 -0600 +++ b/src/cpu/o3/commit_impl.hh Wed Feb 29 10:58:15 2012 -0600 @@ -1365,22 +1365,9 @@ { ThreadID tid = inst->threadNumber; - // - // Pick off the software prefetches - // -#ifdef TARGET_ALPHA - if (inst->isDataPrefetch()) { - statComSwp[tid]++; - } else { - if (!inst->isMicroop() || inst->isLastMicroop()) - instsCommitted[tid]++; - opsCommitted[tid]++; - } -#else if (!inst->isMicroop() || inst->isLastMicroop()) instsCommitted[tid]++; opsCommitted[tid]++; -#endif // // Control Instructions diff -r d607836beefa -r 1fb15da02b20 src/cpu/o3/iew_impl.hh --- a/src/cpu/o3/iew_impl.hh Wed Feb 29 10:57:41 2012 -0600 +++ b/src/cpu/o3/iew_impl.hh Wed Feb 29 10:58:15 2012 -0600 @@ -1614,17 +1614,7 @@ { ThreadID tid = inst->threadNumber; - // - // Pick off the software prefetches - // -#ifdef TARGET_ALPHA - if (inst->isDataPrefetch()) - iewExecutedSwp[tid]++; - else - iewIewExecutedcutedInsts++; -#else iewExecutedInsts++; -#endif #if TRACING_ON inst->completeTick = curTick(); diff -r d607836beefa -r 1fb15da02b20 src/cpu/ozone/back_end_impl.hh --- a/src/cpu/ozone/back_end_impl.hh Wed Feb 29 10:57:41 2012 -0600 +++ b/src/cpu/ozone/back_end_impl.hh Wed Feb 29 10:58:15 2012 -0600 @@ -1728,17 +1728,7 @@ { ThreadID tid = inst->threadNumber; - // - // Pick off the software prefetches - // -#ifdef TARGET_ALPHA - if (inst->isDataPrefetch()) - exe_swp[tid]++; - else - exe_inst[tid]++; -#else exe_inst[tid]++; -#endif // // Control operations diff -r d607836beefa -r 1fb15da02b20 src/cpu/ozone/lw_back_end_impl.hh --- a/src/cpu/ozone/lw_back_end_impl.hh Wed Feb 29 10:57:41 2012 -0600 +++ b/src/cpu/ozone/lw_back_end_impl.hh Wed Feb 29 10:58:15 2012 -0600 @@ -1469,17 +1469,7 @@ { ThreadID tid = inst->threadNumber; - // - // Pick off the software prefetches - // -#ifdef TARGET_ALPHA - if (inst->isDataPrefetch()) - exeSwp[tid]++; - else - exeInst[tid]++; -#else exeInst[tid]++; -#endif // // Control operations