diff options
author | Iru Cai <mytbk920423@gmail.com> | 2019-04-12 23:53:43 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2019-04-12 23:53:43 +0800 |
commit | 08d003162e7a0bda11a5e4e96e0a6fa203f2c1f3 (patch) | |
tree | cb410db516e8b138881d6fa2a3484c7a2a6990c8 | |
parent | 5cca29c1e9e9e0ce3c87252d00fe2e02c5bb03bd (diff) | |
download | gem5-08d003162e7a0bda11a5e4e96e0a6fa203f2c1f3.tar.xz |
add IEW DPRINTF
-rw-r--r-- | src/cpu/o3/iew_impl.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh index 6adbda7fc..44afc9076 100644 --- a/src/cpu/o3/iew_impl.hh +++ b/src/cpu/o3/iew_impl.hh @@ -1329,8 +1329,10 @@ DefaultIEW<Impl>::executeInsts() } if (inst->srcTainted()) { + DPRINTF(IEW, "Taint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum); inst->taintDestRegs(true); } else { + DPRINTF(IEW, "Untaint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum); inst->taintDestRegs(false); } |