summaryrefslogtreecommitdiff
path: root/src/cpu/o3/lsq_unit_impl.hh
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-03-21 10:15:58 +0800
committerIru Cai <mytbk920423@gmail.com>2019-03-21 10:26:39 +0800
commit694155e0ef174386a6b178ce35d24e504d15ae42 (patch)
tree170ce88a256948eb1ce19916fe3dafcd3df2a673 /src/cpu/o3/lsq_unit_impl.hh
parentcb42ee34adb015a15dda071dda26e8208d29e4ee (diff)
downloadgem5-694155e0ef174386a6b178ce35d24e504d15ae42.tar.xz
Request::getVaddr()is-rebase10-DynInstPtr
Change-Id: Ife5c04941a9181da30e5cc692dec7cfd53feb71f
Diffstat (limited to 'src/cpu/o3/lsq_unit_impl.hh')
-rw-r--r--src/cpu/o3/lsq_unit_impl.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh
index dffaab8b5..eac818454 100644
--- a/src/cpu/o3/lsq_unit_impl.hh
+++ b/src/cpu/o3/lsq_unit_impl.hh
@@ -1147,8 +1147,9 @@ LSQUnit<Impl>::exposeLoads()
DPRINTF(LSQUnit, "Validate/Expose request for inst [sn:%lli]"
" PC= %s. req=%#x, reqLow=%#x, reqHigh=%#x\n",
load_inst->seqNum, load_inst->pcState(),
- (Addr)(load_inst->postReq),
- (Addr)(load_inst->postSreqLow), (Addr)(load_inst->postSreqHigh));
+ load_inst->postReq->getVaddr(),
+ load_inst->postSreqLow->getVaddr(),
+ load_inst->postSreqHigh->getVaddr());
PacketPtr data_pkt = NULL;
PacketPtr snd_data_pkt = NULL;