Skip to content

Commit

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

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Acked-by: David Hildenbrand <david@redhat.com>
Message-Id: <20230704081506.276055-10-iii@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
  • Loading branch information
iii-i authored and huth committed Jul 10, 2023
1 parent f5c2ae7 commit ad85ac6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/tcg/s390x/Makefile.target
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ TESTS+=ex-relative-long
TESTS+=ex-branch
TESTS+=mxdb
TESTS+=epsw
TESTS+=larl

cdsg: CFLAGS+=-pthread
cdsg: LDFLAGS+=-pthread
Expand Down
21 changes: 21 additions & 0 deletions tests/tcg/s390x/larl.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* Test the LARL instruction.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <stdlib.h>

int main(void)
{
long algfi = (long)main;
long larl;

/*
* The compiler may emit larl for the C addition, so compute the expected
* value using algfi.
*/
asm("algfi %[r],0xd0000000" : [r] "+r" (algfi) : : "cc");
asm("larl %[r],main+0xd0000000" : [r] "=r" (larl));

return algfi == larl ? EXIT_SUCCESS : EXIT_FAILURE;
}

0 comments on commit ad85ac6

Please sign in to comment.