[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 05/27] tests/tcg/s390x: Add bal.S
From: |
Richard Henderson |
Subject: |
[PATCH v2 05/27] tests/tcg/s390x: Add bal.S |
Date: |
Sun, 11 Dec 2022 09:27:40 -0600 |
From: Ilya Leoshkevich <iii@linux.ibm.com>
Add a small test to prevent regressions.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-Id: <20221103130011.2670186-1-iii@linux.ibm.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tests/tcg/s390x/Makefile.softmmu-target | 1 +
tests/tcg/s390x/bal.S | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
create mode 100644 tests/tcg/s390x/bal.S
diff --git a/tests/tcg/s390x/Makefile.softmmu-target
b/tests/tcg/s390x/Makefile.softmmu-target
index a34fa68473..295df08491 100644
--- a/tests/tcg/s390x/Makefile.softmmu-target
+++ b/tests/tcg/s390x/Makefile.softmmu-target
@@ -7,3 +7,4 @@ QEMU_OPTS=-action panic=exit-failure -kernel
-Wl,--build-id=none $< -o $@
TESTS += unaligned-lowcore
+TESTS += bal
diff --git a/tests/tcg/s390x/bal.S b/tests/tcg/s390x/bal.S
new file mode 100644
index 0000000000..e54d8874ff
--- /dev/null
+++ b/tests/tcg/s390x/bal.S
@@ -0,0 +1,24 @@
+ .org 0x200 /* lowcore padding */
+ .globl _start
+_start:
+ lpswe start24_psw
+_start24:
+ lgrl %r0,initial_r0
+ lgrl %r1,expected_r0
+ bal %r0,0f
+0:
+ cgrjne %r0,%r1,1f
+ lpswe success_psw
+1:
+ lpswe failure_psw
+ .align 8
+start24_psw:
+ .quad 0x160000000000,_start24 /* 24-bit mode, cc = 1, pm = 6 */
+initial_r0:
+ .quad 0x1234567887654321
+expected_r0:
+ .quad 0x1234567896000000 + 0b /* ilc = 2, cc = 1, pm = 6 */
+success_psw:
+ .quad 0x2000000000000,0xfff /* see is_special_wait_psw() */
+failure_psw:
+ .quad 0x2000000000000,0 /* disabled wait */
--
2.34.1
- [PATCH v2 00/27] target/s390x: pc-relative translation blocks, Richard Henderson, 2022/12/11
- [PATCH v2 04/27] target/s390x: Use tcg_constant_* in translate_vx.c.inc, Richard Henderson, 2022/12/11
- [PATCH v2 01/27] target/s390x: Use tcg_constant_* in local contexts, Richard Henderson, 2022/12/11
- [PATCH v2 03/27] target/s390x: Use tcg_constant_i32 for fpinst_extract_m34, Richard Henderson, 2022/12/11
- [PATCH v2 06/27] tests/tcg/s390x: Add sam.S, Richard Henderson, 2022/12/11
- [PATCH v2 02/27] target/s390x: Use tcg_constant_* for DisasCompare, Richard Henderson, 2022/12/11
- [PATCH v2 05/27] tests/tcg/s390x: Add bal.S,
Richard Henderson <=
- [PATCH v2 11/27] target/s390x: Use gen_psw_addr_disp in save_link_info, Richard Henderson, 2022/12/11
- [PATCH v2 07/27] target/s390x: Change help_goto_direct to work on displacements, Richard Henderson, 2022/12/11
- [PATCH v2 16/27] target/s390x: Don't set gbea for user-only, Richard Henderson, 2022/12/11
- [PATCH v2 18/27] target/s390x: Disable conditional branch-to-next for PER, Richard Henderson, 2022/12/11
- [PATCH v2 13/27] target/s390x: Use ilen instead in branches, Richard Henderson, 2022/12/11
- [PATCH v2 14/27] target/s390x: Assert masking of psw.addr in cpu_get_tb_cpu_state, Richard Henderson, 2022/12/11
- [PATCH v2 15/27] target/s390x: Add disp argument to update_psw_addr, Richard Henderson, 2022/12/11