Skip to content

Commit

Permalink
tests/tcg/s390x: Test STPQ
Browse files Browse the repository at this point in the history
Add a small test to prevent regressions.

Tested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-Id: <20230724082032.66864-14-iii@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
  • Loading branch information
iii-i authored and huth committed Jul 24, 2023
1 parent eacfe7c commit e11e2fc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/tcg/s390x/Makefile.softmmu-target
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ASM_TESTS = \
mc \
ssm-early \
stosm-early \
stpq \
unaligned-lowcore

include $(S390X_SRC)/pgm-specification.mak
Expand Down
20 changes: 20 additions & 0 deletions tests/tcg/s390x/stpq.S
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.org 0x200 /* lowcore padding */
.globl _start
_start:
lgrl %r0,value
lgrl %r1,value+8
stpq %r0,stored_value
clc stored_value(16),value
jne failure
lpswe success_psw
failure:
lpswe failure_psw
.align 16
value:
.quad 0x1234567887654321, 0x8765432112345678
stored_value:
.quad 0, 0
success_psw:
.quad 0x2000000000000,0xfff /* see is_special_wait_psw() */
failure_psw:
.quad 0x2000000000000,0 /* disabled wait */

0 comments on commit e11e2fc

Please sign in to comment.