From e9d7833de3115201ee68b6f22a105abb511dc8c4 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Mon, 15 Apr 2019 23:21:46 +0800 Subject: Add IFT debug flags --- src/cpu/o3/iew_impl.hh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/cpu/o3/iew_impl.hh') diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh index 44afc9076..5b67e4c3c 100644 --- a/src/cpu/o3/iew_impl.hh +++ b/src/cpu/o3/iew_impl.hh @@ -1329,11 +1329,9 @@ DefaultIEW::executeInsts() } if (inst->srcTainted()) { - DPRINTF(IEW, "Taint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum); - inst->taintDestRegs(true); + inst->taintDestRegs(true, "source is tainted"); } else { - DPRINTF(IEW, "Untaint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum); - inst->taintDestRegs(false); + inst->taintDestRegs(false, "source is not tainted"); } inst->setExecuted(); -- cgit v1.2.3