From: "Alex Bennée" <alex.bennee@linaro.org>
To: Richard Henderson <richard.henderson@linaro.org>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v3 16/16] tcg/s390x: Return false on failure from patch_reloc
Date: Mon, 03 Dec 2018 10:46:13 +0000 [thread overview]
Message-ID: <87tvju3n2i.fsf@linaro.org> (raw)
In-Reply-To: <20181130215221.20554-17-richard.henderson@linaro.org>
Richard Henderson <richard.henderson@linaro.org> writes:
> This does require an extra two checks within the slow paths
> to replace the assert that we're moving. Also add two checks
> within existing functions that lacked any kind of assert for
> out of range branch.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> tcg/s390/tcg-target.inc.c | 34 +++++++++++++++++++++++-----------
> 1 file changed, 23 insertions(+), 11 deletions(-)
>
> diff --git a/tcg/s390/tcg-target.inc.c b/tcg/s390/tcg-target.inc.c
> index 68a4c60394..39ecf609a1 100644
> --- a/tcg/s390/tcg-target.inc.c
> +++ b/tcg/s390/tcg-target.inc.c
> @@ -377,23 +377,29 @@ static bool patch_reloc(tcg_insn_unit *code_ptr, int type,
>
> switch (type) {
> case R_390_PC16DBL:
> - assert(pcrel2 == (int16_t)pcrel2);
> - tcg_patch16(code_ptr, pcrel2);
> + if (pcrel2 == (int16_t)pcrel2) {
> + tcg_patch16(code_ptr, pcrel2);
> + return true;
> + }
> break;
> case R_390_PC32DBL:
> - assert(pcrel2 == (int32_t)pcrel2);
> - tcg_patch32(code_ptr, pcrel2);
> + if (pcrel2 == (int32_t)pcrel2) {
> + tcg_patch32(code_ptr, pcrel2);
> + return true;
> + }
> break;
> case R_390_20:
> - assert(value == sextract64(value, 0, 20));
> - old = *(uint32_t *)code_ptr & 0xf00000ff;
> - old |= ((value & 0xfff) << 16) | ((value & 0xff000) >> 4);
> - tcg_patch32(code_ptr, old);
> + if (value == sextract64(value, 0, 20)) {
> + old = *(uint32_t *)code_ptr & 0xf00000ff;
> + old |= ((value & 0xfff) << 16) | ((value & 0xff000) >> 4);
> + tcg_patch32(code_ptr, old);
> + return true;
> + }
> break;
> default:
> g_assert_not_reached();
> }
> - return true;
> + return false;
> }
>
> /* parse target specific constraints */
> @@ -1334,6 +1340,7 @@ static void tgen_compare_branch(TCGContext *s, S390Opcode opc, int cc,
>
> if (l->has_value) {
> off = l->u.value_ptr - s->code_ptr;
> + tcg_debug_assert(off == (int16_t)off);
> } else {
> tcg_out_reloc(s, s->code_ptr + 1, R_390_PC16DBL, l, 2);
> }
> @@ -1350,6 +1357,7 @@ static void tgen_compare_imm_branch(TCGContext *s, S390Opcode opc, int cc,
>
> if (l->has_value) {
> off = l->u.value_ptr - s->code_ptr;
> + tcg_debug_assert(off == (int16_t)off);
> } else {
> tcg_out_reloc(s, s->code_ptr + 1, R_390_PC16DBL, l, 2);
> }
> @@ -1615,7 +1623,9 @@ static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
> TCGMemOpIdx oi = lb->oi;
> TCGMemOp opc = get_memop(oi);
>
> - patch_reloc(lb->label_ptr[0], R_390_PC16DBL, (intptr_t)s->code_ptr, 2);
> + bool ok = patch_reloc(lb->label_ptr[0], R_390_PC16DBL,
> + (intptr_t)s->code_ptr, 2);
> + tcg_debug_assert(ok);
>
> tcg_out_mov(s, TCG_TYPE_PTR, TCG_REG_R2, TCG_AREG0);
> if (TARGET_LONG_BITS == 64) {
> @@ -1636,7 +1646,9 @@ static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
> TCGMemOpIdx oi = lb->oi;
> TCGMemOp opc = get_memop(oi);
>
> - patch_reloc(lb->label_ptr[0], R_390_PC16DBL, (intptr_t)s->code_ptr, 2);
> + bool ok = patch_reloc(lb->label_ptr[0], R_390_PC16DBL,
> + (intptr_t)s->code_ptr, 2);
> + tcg_debug_assert(ok);
>
> tcg_out_mov(s, TCG_TYPE_PTR, TCG_REG_R2, TCG_AREG0);
> if (TARGET_LONG_BITS == 64) {
--
Alex Bennée
prev parent reply other threads:[~2018-12-03 10:46 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-30 21:52 [Qemu-devel] [PATCH v3 00/16] tcg: Assorted cleanups Richard Henderson
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 01/16] tcg/i386: Always use %ebp for TCG_AREG0 Richard Henderson
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 02/16] tcg/i386: Move TCG_REG_CALL_STACK from define to enum Richard Henderson
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 03/16] tcg/aarch64: Remove reloc_pc26_atomic Richard Henderson
2018-12-03 8:44 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 04/16] tcg/aarch64: Fold away "noaddr" branch routines Richard Henderson
2018-12-03 15:49 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 05/16] tcg/arm: Remove reloc_pc24_atomic Richard Henderson
2018-12-03 15:49 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 06/16] tcg/arm: Fold away "noaddr" branch routines Richard Henderson
2018-12-03 10:33 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 07/16] tcg/ppc: " Richard Henderson
2018-12-03 10:35 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 08/16] tcg/s390: Remove retranslation code Richard Henderson
2018-12-03 10:37 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 09/16] tcg/sparc: " Richard Henderson
2018-12-03 10:39 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 10/16] tcg/mips: " Richard Henderson
2018-12-03 10:39 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 11/16] tcg: Return success from patch_reloc Richard Henderson
2018-12-03 10:40 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 12/16] tcg/i386: Return false on failure " Richard Henderson
2018-12-03 10:40 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 13/16] tcg/aarch64: " Richard Henderson
2018-12-03 10:43 ` Alex Bennée
2018-12-03 13:23 ` Richard Henderson
2018-12-03 14:15 ` Alex Bennée
2018-12-03 14:31 ` Richard Henderson
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 14/16] tcg/arm: " Richard Henderson
2018-12-03 10:43 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 15/16] tcg/ppc: " Richard Henderson
2018-12-03 10:44 ` Alex Bennée
2018-11-30 21:52 ` [Qemu-devel] [PATCH v3 16/16] tcg/s390x: " Richard Henderson
2018-12-03 10:46 ` Alex Bennée [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=87tvju3n2i.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=qemu-devel@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).