From: Thomas Huth <thuth@redhat.com>
To: Ilya Leoshkevich <iii@linux.ibm.com>,
Richard Henderson <richard.henderson@linaro.org>,
David Hildenbrand <david@redhat.com>
Cc: qemu-s390x@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [PATCH] tests/tcg/s390x: Fix test-svc with clang
Date: Mon, 10 Jul 2023 09:31:54 +0200 [thread overview]
Message-ID: <fbb6b6e0-2aec-5be7-7bf7-83c7b0687533@redhat.com> (raw)
In-Reply-To: <20230707154242.457706-1-iii@linux.ibm.com>
On 07/07/2023 17.42, Ilya Leoshkevich wrote:
> clang does not support expressions involving symbols in instructions
> like lghi yet, so building hello-s390x-asm.S with it fails.
>
> Move the expression to the literal pool and load it from there.
>
> Reported-by: Thomas Huth <thuth@redhat.com>
> Fixes: be4a4cb42961 ("tests/tcg/s390x: Test single-stepping SVC")
> Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
> ---
> tests/tcg/s390x/gdbstub/test-svc.py | 2 +-
> tests/tcg/s390x/hello-s390x-asm.S | 4 +++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tests/tcg/s390x/gdbstub/test-svc.py b/tests/tcg/s390x/gdbstub/test-svc.py
> index 7851ca72846..18fad3f163d 100644
> --- a/tests/tcg/s390x/gdbstub/test-svc.py
> +++ b/tests/tcg/s390x/gdbstub/test-svc.py
> @@ -25,7 +25,7 @@ def run_test():
> gdb.execute("si")
> report("larl\t" in gdb.execute("x/i $pc", False, True), "insn #2")
> gdb.execute("si")
> - report("lghi\t" in gdb.execute("x/i $pc", False, True), "insn #3")
> + report("lgrl\t" in gdb.execute("x/i $pc", False, True), "insn #3")
> gdb.execute("si")
> report("svc\t" in gdb.execute("x/i $pc", False, True), "insn #4")
> gdb.execute("si")
> diff --git a/tests/tcg/s390x/hello-s390x-asm.S b/tests/tcg/s390x/hello-s390x-asm.S
> index 2e9faa16047..4dbda12d35d 100644
> --- a/tests/tcg/s390x/hello-s390x-asm.S
> +++ b/tests/tcg/s390x/hello-s390x-asm.S
> @@ -8,7 +8,7 @@ _start:
> /* puts("Hello, World!"); */
> lghi %r2,1
> larl %r3,foo
> -lghi %r4,foo_end-foo
> +lgrl %r4,foo_len
> svc 4
>
> /* exit(0); */
> @@ -18,3 +18,5 @@ svc 1
> .align 2
> foo: .asciz "Hello, World!\n"
> foo_end:
> +.align 8
> +foo_len: .quad foo_end-foo
Thanks, that seems to work! Queued now.
Tested-by: Thomas Huth <thuth@redhat.com>
prev parent reply other threads:[~2023-07-10 7:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-07 15:42 [PATCH] tests/tcg/s390x: Fix test-svc with clang Ilya Leoshkevich
2023-07-10 7:31 ` Thomas Huth [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fbb6b6e0-2aec-5be7-7bf7-83c7b0687533@redhat.com \
--to=thuth@redhat.com \
--cc=david@redhat.com \
--cc=iii@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=richard.henderson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).