summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuan Zhu <chuan.zhu@arm.com>2017-07-26 17:03:18 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2018-02-16 09:28:24 +0000
commitc105793a2027cd113233e8ce6c5e2d4ea2f9cded (patch)
tree7e8fd86bc3ea02ea382d451db968ca8f61e9ea9a
parentfcc98a50e3af273921914f9adf61db7b1944bb05 (diff)
downloadgem5-c105793a2027cd113233e8ce6c5e2d4ea2f9cded.tar.xz
arch-arm: Fix big endian support in {Load,Store}Double64
{Load, Store}Double64 didn't consider some of the big-endian situations. Added big-endian related data conversions to correct them. Change-Id: I8840613f94446e6042276779d1f02350ab57987f Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/8145 Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
-rw-r--r--src/arch/arm/isa/insts/ldr64.isa48
-rw-r--r--src/arch/arm/isa/insts/str64.isa12
2 files changed, 42 insertions, 18 deletions
diff --git a/src/arch/arm/isa/insts/ldr64.isa b/src/arch/arm/isa/insts/ldr64.isa
index e035e1d7e..8c966e40e 100644
--- a/src/arch/arm/isa/insts/ldr64.isa
+++ b/src/arch/arm/isa/insts/ldr64.isa
@@ -228,23 +228,31 @@ let {{
if self.size == 4:
accCode = '''
uint64_t data = cSwap(Mem_ud, isBigEndian64(xc->tcBase()));
- AA64FpDestP0_uw = (uint32_t)data;
+ AA64FpDestP0_uw = isBigEndian64(xc->tcBase())
+ ? (data >> 32)
+ : (uint32_t)data;
AA64FpDestP1_uw = 0;
AA64FpDestP2_uw = 0;
AA64FpDestP3_uw = 0;
- AA64FpDest2P0_uw = (data >> 32);
+ AA64FpDest2P0_uw = isBigEndian64(xc->tcBase())
+ ? (uint32_t)data
+ : (data >> 32);
AA64FpDest2P1_uw = 0;
AA64FpDest2P2_uw = 0;
AA64FpDest2P3_uw = 0;
'''
elif self.size == 8:
accCode = '''
- AA64FpDestP0_uw = (uint32_t)Mem_tud[0];
- AA64FpDestP1_uw = (uint32_t)(Mem_tud[0] >> 32);
+ uint64_t data_a = cSwap(Mem_tud[0],
+ isBigEndian64(xc->tcBase()));
+ uint64_t data_b = cSwap(Mem_tud[1],
+ isBigEndian64(xc->tcBase()));
+ AA64FpDestP0_uw = (uint32_t)data_a;
+ AA64FpDestP1_uw = (uint32_t)(data_a >> 32);
AA64FpDestP2_uw = 0;
AA64FpDestP3_uw = 0;
- AA64FpDest2P0_uw = (uint32_t)Mem_tud[1];
- AA64FpDest2P1_uw = (uint32_t)(Mem_tud[1] >> 32);
+ AA64FpDest2P0_uw = (uint32_t)data_b;
+ AA64FpDest2P1_uw = (uint32_t)(data_b >> 32);
AA64FpDest2P2_uw = 0;
AA64FpDest2P3_uw = 0;
'''
@@ -254,26 +262,38 @@ let {{
accCode = '''
uint64_t data = cSwap(Mem_ud,
isBigEndian64(xc->tcBase()));
- XDest = sext<32>((uint32_t)data);
- XDest2 = sext<32>(data >> 32);
+ XDest = isBigEndian64(xc->tcBase())
+ ? sext<32>(data >> 32)
+ : sext<32>((uint32_t)data);
+ XDest2 = isBigEndian64(xc->tcBase())
+ ? sext<32>((uint32_t)data)
+ : sext<32>(data >> 32);
'''
elif self.size == 8:
accCode = '''
- XDest = Mem_tud[0];
- XDest2 = Mem_tud[1];
+ XDest = cSwap(Mem_tud[0],
+ isBigEndian64(xc->tcBase()));
+ XDest2 = cSwap(Mem_tud[1],
+ isBigEndian64(xc->tcBase()));
'''
else:
if self.size == 4:
accCode = '''
uint64_t data = cSwap(Mem_ud,
isBigEndian64(xc->tcBase()));
- XDest = (uint32_t)data;
- XDest2 = data >> 32;
+ XDest = isBigEndian64(xc->tcBase())
+ ? (data >> 32)
+ : (uint32_t)data;
+ XDest2 = isBigEndian64(xc->tcBase())
+ ? (uint32_t)data
+ : (data >> 32);
'''
elif self.size == 8:
accCode = '''
- XDest = Mem_tud[0];
- XDest2 = Mem_tud[1];
+ XDest = cSwap(Mem_tud[0],
+ isBigEndian64(xc->tcBase()));
+ XDest2 = cSwap(Mem_tud[1],
+ isBigEndian64(xc->tcBase()));
'''
self.codeBlobs["memacc_code"] = accCode
diff --git a/src/arch/arm/isa/insts/str64.isa b/src/arch/arm/isa/insts/str64.isa
index 324d1fc69..0c55b4b64 100644
--- a/src/arch/arm/isa/insts/str64.isa
+++ b/src/arch/arm/isa/insts/str64.isa
@@ -212,14 +212,18 @@ let {{
if self.flavor == "fp":
accCode = '''
uint64_t data = AA64FpDest2P0_uw;
- data = (data << 32) | AA64FpDestP0_uw;
+ data = isBigEndian64(xc->tcBase())
+ ? ((uint64_t(AA64FpDestP0_uw) << 32) | data)
+ : ((data << 32) | AA64FpDestP0_uw);
Mem_ud = cSwap(data, isBigEndian64(xc->tcBase()));
'''
else:
if self.size == 4:
accCode = '''
uint64_t data = XDest2_uw;
- data = (data << 32) | XDest_uw;
+ data = isBigEndian64(xc->tcBase())
+ ? ((uint64_t(XDest_uw) << 32) | data)
+ : ((data << 32) | XDest_uw);
Mem_ud = cSwap(data, isBigEndian64(xc->tcBase()));
'''
elif self.size == 8:
@@ -227,8 +231,8 @@ let {{
// This temporary needs to be here so that the parser
// will correctly identify this instruction as a store.
std::array<uint64_t, 2> temp;
- temp[0] = XDest_ud;
- temp[1] = XDest2_ud;
+ temp[0] = cSwap(XDest_ud,isBigEndian64(xc->tcBase()));
+ temp[1] = cSwap(XDest2_ud,isBigEndian64(xc->tcBase()));
Mem_tud = temp;
'''
self.codeBlobs["memacc_code"] = accCode