diff options
author | Andrew Waterman <waterman@cs.berkeley.edu> | 2014-11-06 18:16:48 -0800 |
---|---|---|
committer | Andrew Waterman <waterman@cs.berkeley.edu> | 2014-11-06 18:16:48 -0800 |
commit | c897f34a637fc38137eaf56f3d785ea4fce7a3bd (patch) | |
tree | f11f011357b3ebd75397b473a0d51900fddfaba9 /isa/rv32ui | |
parent | dcf8a205dce59d9249bfd67c7f6145621a188c12 (diff) | |
download | riscv-tests-c897f34a637fc38137eaf56f3d785ea4fce7a3bd.zip riscv-tests-c897f34a637fc38137eaf56f3d785ea4fce7a3bd.tar.gz riscv-tests-c897f34a637fc38137eaf56f3d785ea4fce7a3bd.tar.bz2 |
Don't access memory outside of the binary's range
Diffstat (limited to 'isa/rv32ui')
-rw-r--r-- | isa/rv32ui/amoadd_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amoand_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amomax_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amomaxu_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amomin_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amominu_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amoor_w.S | 1 | ||||
-rw-r--r-- | isa/rv32ui/amoswap_w.S | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/isa/rv32ui/amoadd_w.S b/isa/rv32ui/amoadd_w.S index 5f331c5..30d3f79 100644 --- a/isa/rv32ui/amoadd_w.S +++ b/isa/rv32ui/amoadd_w.S @@ -60,3 +60,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amoand_w.S b/isa/rv32ui/amoand_w.S index 37cb46a..3204f1c 100644 --- a/isa/rv32ui/amoand_w.S +++ b/isa/rv32ui/amoand_w.S @@ -60,3 +60,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amomax_w.S b/isa/rv32ui/amomax_w.S index d71baa0..a7fc95a 100644 --- a/isa/rv32ui/amomax_w.S +++ b/isa/rv32ui/amomax_w.S @@ -44,3 +44,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amomaxu_w.S b/isa/rv32ui/amomaxu_w.S index 8295b73..ca8045d 100644 --- a/isa/rv32ui/amomaxu_w.S +++ b/isa/rv32ui/amomaxu_w.S @@ -44,3 +44,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amomin_w.S b/isa/rv32ui/amomin_w.S index 40fd769..3cbf08c 100644 --- a/isa/rv32ui/amomin_w.S +++ b/isa/rv32ui/amomin_w.S @@ -44,3 +44,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amominu_w.S b/isa/rv32ui/amominu_w.S index 1f8abb1..3809d1c 100644 --- a/isa/rv32ui/amominu_w.S +++ b/isa/rv32ui/amominu_w.S @@ -44,3 +44,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amoor_w.S b/isa/rv32ui/amoor_w.S index ece7a91..6df4da4 100644 --- a/isa/rv32ui/amoor_w.S +++ b/isa/rv32ui/amoor_w.S @@ -60,3 +60,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 diff --git a/isa/rv32ui/amoswap_w.S b/isa/rv32ui/amoswap_w.S index 118c92d..bf034d1 100644 --- a/isa/rv32ui/amoswap_w.S +++ b/isa/rv32ui/amoswap_w.S @@ -60,3 +60,4 @@ RVTEST_DATA_END .align 3 amo_operand: .dword 0 + .skip 65536 |