summaryrefslogtreecommitdiff
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:16:51 +0800
commitcdfc38bd167bb5efcb05bc9452d15165b0cc1e68 (patch)
tree99c72451ce1ac44e234c9f176bcb4b4893e95a70
parent3b612a54ccde602b0afadbed31e3a10ac3ee4608 (diff)
downloadgem5-is-rebase07-GCC8.tar.xz
Request::getVaddr()is-rebase07-GCC8
Change-Id: Ife5c04941a9181da30e5cc692dec7cfd53feb71f
-rw-r--r--src/cpu/o3/lsq_unit.hh6
-rw-r--r--src/cpu/o3/lsq_unit_impl.hh5
2 files changed, 6 insertions, 5 deletions
diff --git a/src/cpu/o3/lsq_unit.hh b/src/cpu/o3/lsq_unit.hh
index d3dd34ee2..ea10c9b8d 100644
--- a/src/cpu/o3/lsq_unit.hh
+++ b/src/cpu/o3/lsq_unit.hh
@@ -1029,9 +1029,9 @@ LSQUnit<Impl>::read(const RequestPtr &req,
DPRINTF(LSQUnit, "created validation/expose"
" request for inst [sn:%lli]"
"req=%#x, reqLow=%#x, reqHigh=%#x\n",
- load_inst->seqNum, (Addr)(load_inst->postReq),
- (Addr)(load_inst->postSreqLow),
- (Addr)(load_inst->postSreqHigh));
+ load_inst->seqNum, load_inst->postReq->getVaddr(),
+ load_inst->postSreqLow->getVaddr(),
+ load_inst->postSreqHigh->getVaddr());
} else {
load_inst->setExposeCompleted();
load_inst->needPostFetch(false);
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh
index 3da248977..f55c20d18 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;