From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PATCH v3 4/7] tcg/sparc: Improve code gen for shifted 32-bit constants
Date: Wed, 18 Aug 2021 10:45:59 -1000 [thread overview]
Message-ID: <20210818204602.394771-5-richard.henderson@linaro.org> (raw)
In-Reply-To: <20210818204602.394771-1-richard.henderson@linaro.org>
We had code for checking for 13 and 21-bit shifted constants,
but we can do better and allow 32-bit shifted constants.
This is still 2 insns shorter than the full 64-bit sequence.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/sparc/tcg-target.c.inc | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tcg/sparc/tcg-target.c.inc b/tcg/sparc/tcg-target.c.inc
index f11f054df5..16e2258b9b 100644
--- a/tcg/sparc/tcg-target.c.inc
+++ b/tcg/sparc/tcg-target.c.inc
@@ -456,17 +456,17 @@ static void tcg_out_movi_int(TCGContext *s, TCGType type, TCGReg ret,
return;
}
- /* A 21-bit constant, shifted. */
+ /* A 32-bit constant, shifted. */
lsb = ctz64(arg);
test = (tcg_target_long)arg >> lsb;
- if (check_fit_tl(test, 13)) {
- tcg_out_movi_imm13(s, ret, test);
- tcg_out_arithi(s, ret, ret, lsb, SHIFT_SLLX);
- return;
- } else if (lsb > 10 && test == extract64(test, 0, 21)) {
+ if (lsb > 10 && test == extract64(test, 0, 21)) {
tcg_out_sethi(s, ret, test << 10);
tcg_out_arithi(s, ret, ret, lsb - 10, SHIFT_SLLX);
return;
+ } else if (test == (uint32_t)test || test == (int32_t)test) {
+ tcg_out_movi_int(s, TCG_TYPE_I64, ret, test, in_prologue, scratch);
+ tcg_out_arithi(s, ret, ret, lsb, SHIFT_SLLX);
+ return;
}
/* A 64-bit constant decomposed into 2 32-bit pieces. */
--
2.25.1
next prev parent reply other threads:[~2021-08-18 20:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-18 20:45 [PATCH v3 0/7] tcg/sparc: Unaligned access and other cleanup Richard Henderson
2021-08-18 20:45 ` [PATCH v3 1/7] tcg/sparc: Drop inline markers Richard Henderson
2021-08-18 21:07 ` Philippe Mathieu-Daudé
2021-08-18 20:45 ` [PATCH v3 2/7] tcg/sparc: Introduce tcg_out_mov_delay Richard Henderson
2021-08-18 21:08 ` Philippe Mathieu-Daudé
2021-08-18 20:45 ` [PATCH v3 3/7] tcg/sparc: Add scratch argument to tcg_out_movi_int Richard Henderson
2021-08-18 20:45 ` Richard Henderson [this message]
2021-08-18 20:46 ` [PATCH v3 5/7] tcg/sparc: Use the constant pool for 64-bit constants Richard Henderson
2021-08-18 20:46 ` [PATCH v3 6/7] tcg/sparc: Add tcg_out_jmpl_const for better tail calls Richard Henderson
2021-08-18 20:46 ` [PATCH v3 7/7] tcg/sparc: Support unaligned access for user-only Richard Henderson
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=20210818204602.394771-5-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=qemu-devel@nongnu.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).