e902126cae
Add a number of small test that check whether accessing unaligned addresses in various ways leads to a specification exception. Run these test both in softmmu and user configurations; expect a PGM in one case and SIGILL in the other. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20230316164428.275147-13-iii@linux.ibm.com> [thuth: Added -Wl,--build-id=none to LDFLAGS] Signed-off-by: Thomas Huth <thuth@redhat.com>
41 lines
1.0 KiB
ArmAsm
41 lines
1.0 KiB
ArmAsm
/*
|
|
* Common softmmu code for specification exception testing.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
.section .head
|
|
.org 0x8d
|
|
ilc:
|
|
.org 0x8e
|
|
program_interruption_code:
|
|
.org 0x150
|
|
program_old_psw:
|
|
.org 0x1D0 /* program new PSW */
|
|
.quad 0x180000000,pgm /* 64-bit mode */
|
|
.org 0x200 /* lowcore padding */
|
|
|
|
.globl _start
|
|
_start:
|
|
lpswe test_psw
|
|
|
|
pgm:
|
|
chhsi program_interruption_code,0x6 /* PGM_SPECIFICATION? */
|
|
jne failure
|
|
lg %r0,expected_old_psw+8 /* ilc adjustment */
|
|
llgc %r1,ilc
|
|
agr %r0,%r1
|
|
stg %r0,expected_old_psw+8
|
|
clc expected_old_psw(16),program_old_psw /* correct location? */
|
|
jne failure
|
|
lpswe success_psw
|
|
failure:
|
|
lpswe failure_psw
|
|
|
|
.align 8
|
|
test_psw:
|
|
.quad 0x180000000,test /* 64-bit mode */
|
|
success_psw:
|
|
.quad 0x2000180000000,0xfff /* see is_special_wait_psw() */
|
|
failure_psw:
|
|
.quad 0x2000180000000,0 /* disabled wait */
|