All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <rth@twiddle.net>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: [Qemu-devel] [PULL 08/10] tcg/arm: Use ldr (literal) for goto_tb
Date: Tue, 13 Jun 2017 22:23:09 -0700	[thread overview]
Message-ID: <20170614052311.13785-9-rth@twiddle.net> (raw)
In-Reply-To: <20170614052311.13785-1-rth@twiddle.net>

The new placement of the TB means that we can use one insn
to load the goto_tb destination directly from the TB.

Signed-off-by: Richard Henderson <rth@twiddle.net>
---
 tcg/arm/tcg-target.inc.c | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/tcg/arm/tcg-target.inc.c b/tcg/arm/tcg-target.inc.c
index 42370e5..d1793ec 100644
--- a/tcg/arm/tcg-target.inc.c
+++ b/tcg/arm/tcg-target.inc.c
@@ -1669,14 +1669,27 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
         }
         break;
     case INDEX_op_goto_tb:
-        tcg_debug_assert(s->tb_jmp_insn_offset == 0);
         {
             /* Indirect jump method */
-            intptr_t ptr = (intptr_t)(s->tb_jmp_target_addr + args[0]);
-            tcg_out_movi32(s, COND_AL, TCG_REG_R0, ptr & ~0xfff);
-            tcg_out_ld32_12(s, COND_AL, TCG_REG_PC, TCG_REG_R0, ptr & 0xfff);
+            intptr_t ptr, dif, dil;
+            TCGReg base = TCG_REG_PC;
+
+            tcg_debug_assert(s->tb_jmp_insn_offset == 0);
+            ptr = (intptr_t)(s->tb_jmp_target_addr + args[0]);
+            dif = ptr - ((intptr_t)s->code_ptr + 8);
+            dil = sextract32(dif, 0, 12);
+            if (dif != dil) {
+                /* The TB is close, but outside the 12 bits addressable by
+                   the load.  We can extend this to 20 bits with a sub of a
+                   shifted immediate from pc.  In the vastly unlikely event
+                   the code requires more than 1MB, we'll use 2 insns and
+                   be no worse off.  */
+                base = TCG_REG_R0;
+                tcg_out_movi32(s, COND_AL, base, ptr - dil);
+            }
+            tcg_out_ld32_12(s, COND_AL, TCG_REG_PC, base, dil);
+            s->tb_jmp_reset_offset[args[0]] = tcg_current_code_size(s);
         }
-        s->tb_jmp_reset_offset[args[0]] = tcg_current_code_size(s);
         break;
     case INDEX_op_goto_ptr:
         tcg_out_bx(s, COND_AL, args[0]);
-- 
2.9.4

  parent reply	other threads:[~2017-06-14  5:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-14  5:23 [Qemu-devel] [PULL 00/10] TCG queued patches Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 01/10] util: add cacheinfo Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 02/10] tcg: allocate TB structs before the corresponding translated code Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 03/10] translate-all: consolidate tb init in tb_gen_code Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 04/10] tcg/aarch64: Use ADR in tcg_out_movi Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 05/10] tcg/arm: Use indirect branch for goto_tb Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 06/10] tcg/arm: Remove limit on code buffer size Richard Henderson
2017-06-14  5:23 ` [Qemu-devel] [PULL 07/10] tcg/arm: Try pc-relative addresses for movi Richard Henderson
2017-06-14  5:23 ` Richard Henderson [this message]
2017-06-14  5:23 ` [Qemu-devel] [PULL 09/10] Revert "target/aarch64: optimize indirect branches" Richard Henderson
2017-06-14 14:27   ` Philippe Mathieu-Daudé
2017-06-14  5:23 ` [Qemu-devel] [PULL 10/10] tcg: Remove tb_htable_lookup from helper_lookup_tb_ptr Richard Henderson
2017-06-14  5:42 ` [Qemu-devel] [PULL 00/10] TCG queued patches no-reply
2017-06-14  5:43 ` no-reply
2017-06-14 15:23 ` 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=20170614052311.13785-9-rth@twiddle.net \
    --to=rth@twiddle.net \
    --cc=peter.maydell@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.