qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH for-7.1 v6 51/51] tests/tcg/nios2: Add test-shadow-1


From: Richard Henderson
Subject: [PATCH for-7.1 v6 51/51] tests/tcg/nios2: Add test-shadow-1
Date: Wed, 16 Mar 2022 22:05:38 -0700

Add a regression test for tcg indirect global lowering.

This appeared with nios2, with cps != 0, so that we use
indirection into the shadow register set.  An indirect
call verifies alignment of rA.  The use of rA was live
across the brcond leading to a tcg_debug_assert failure.

Cc: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 tests/tcg/nios2/Makefile.softmmu-target |  1 +
 tests/tcg/nios2/test-shadow-1.S         | 37 +++++++++++++++++++++++++
 2 files changed, 38 insertions(+)
 create mode 100644 tests/tcg/nios2/test-shadow-1.S

diff --git a/tests/tcg/nios2/Makefile.softmmu-target 
b/tests/tcg/nios2/Makefile.softmmu-target
index 20d8d143c6..48863549c9 100644
--- a/tests/tcg/nios2/Makefile.softmmu-target
+++ b/tests/tcg/nios2/Makefile.softmmu-target
@@ -30,3 +30,4 @@ QEMU_OPTS = -M 10m50-ghrd,vic=on -semihosting >$@.out -kernel
 
 memory: CFLAGS+=-DCHECK_UNALIGNED=0
 TESTS += $(MULTIARCH_TESTS)
+TESTS += test-shadow-1
diff --git a/tests/tcg/nios2/test-shadow-1.S b/tests/tcg/nios2/test-shadow-1.S
new file mode 100644
index 0000000000..33076ddf59
--- /dev/null
+++ b/tests/tcg/nios2/test-shadow-1.S
@@ -0,0 +1,37 @@
+/*
+ * Regresion test for TCG indirect global lowering.
+ */
+
+#include "semicall.h"
+
+       .text
+       .set noat
+       .align  2
+       .globl  main
+       .type   main, @function
+
+main:
+       /* Initialize r0 in shadow register set 1. */
+       movhi   at, 1                   /* PRS=1, CRS=0, RSIE=0, PIE=0 */
+       wrctl   status, at
+       wrprs   zero, zero
+
+       /* Change current register set to 1. */
+       movi    at, 1 << 10             /* PRS=0, CRS=1, RSIE=0, PIE=0 */
+       wrctl   estatus, at
+       movia   ea, 1f
+       eret
+
+       /* Load address for callr, then end TB. */
+1:     movia   at, 3f
+       br      2f
+
+       /* Test case! TCG abort on indirect lowering across brcond. */
+2:     callr   at
+
+       /* exit(0) */
+3:     movi    r4, HOSTED_EXIT
+       movi    r5, 0
+       semihosting_call
+
+       .size   main, . - main
-- 
2.25.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]