* [Qemu-devel] [PATCH 0/2] tcg/ppc updates
@ 2018-01-10 7:55 Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 1/2] tcg/ppc: Support tlb offsets larger than 64k Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 2/2] tcg/ppc: Allow a 32-bit offset to the constant pool Richard Henderson
0 siblings, 2 replies; 3+ messages in thread
From: Richard Henderson @ 2018-01-10 7:55 UTC (permalink / raw)
To: qemu-devel
I found two problems testing my ARM SVE branch on PPC64.
r~
Richard Henderson (2):
tcg/ppc: Support tlb offsets larger than 64k
tcg/ppc: Allow a 32-bit offset to the constant pool
tcg/ppc/tcg-target.inc.c | 84 +++++++++++++++++++++++++++---------------------
1 file changed, 47 insertions(+), 37 deletions(-)
--
2.14.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PATCH 1/2] tcg/ppc: Support tlb offsets larger than 64k
2018-01-10 7:55 [Qemu-devel] [PATCH 0/2] tcg/ppc updates Richard Henderson
@ 2018-01-10 7:55 ` Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 2/2] tcg/ppc: Allow a 32-bit offset to the constant pool Richard Henderson
1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2018-01-10 7:55 UTC (permalink / raw)
To: qemu-devel
AArch64 with SVE has an offset of 80k to the 8th TLB.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/ppc/tcg-target.inc.c | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/tcg/ppc/tcg-target.inc.c b/tcg/ppc/tcg-target.inc.c
index 879885b68b..74f9b4aa34 100644
--- a/tcg/ppc/tcg-target.inc.c
+++ b/tcg/ppc/tcg-target.inc.c
@@ -1524,16 +1524,15 @@ static TCGReg tcg_out_tlb_read(TCGContext *s, TCGMemOp opc,
/* Compensate for very large offsets. */
if (add_off >= 0x8000) {
- /* Most target env are smaller than 32k; none are larger than 64k.
- Simplify the logic here merely to offset by 0x7ff0, giving us a
- range just shy of 64k. Check this assumption. */
- QEMU_BUILD_BUG_ON(offsetof(CPUArchState,
- tlb_table[NB_MMU_MODES - 1][1])
- > 0x7ff0 + 0x7fff);
- tcg_out32(s, ADDI | TAI(TCG_REG_TMP1, base, 0x7ff0));
+ int low = (int16_t)cmp_off;
+ int high = cmp_off - low;
+ assert((high & 0xffff) == 0);
+ assert(cmp_off - high == (int16_t)(cmp_off - high));
+ assert(add_off - high == (int16_t)(add_off - high));
+ tcg_out32(s, ADDIS | TAI(TCG_REG_TMP1, base, high >> 16));
base = TCG_REG_TMP1;
- cmp_off -= 0x7ff0;
- add_off -= 0x7ff0;
+ cmp_off -= high;
+ add_off -= high;
}
/* Extraction and shifting, part 2. */
--
2.14.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Qemu-devel] [PATCH 2/2] tcg/ppc: Allow a 32-bit offset to the constant pool
2018-01-10 7:55 [Qemu-devel] [PATCH 0/2] tcg/ppc updates Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 1/2] tcg/ppc: Support tlb offsets larger than 64k Richard Henderson
@ 2018-01-10 7:55 ` Richard Henderson
1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2018-01-10 7:55 UTC (permalink / raw)
To: qemu-devel
We recently relaxed the limit of the number of opcodes that can
appear in a TranslationBlock. In certain cases this has resulted
in relocation overflow.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/ppc/tcg-target.inc.c | 67 ++++++++++++++++++++++++++++--------------------
1 file changed, 39 insertions(+), 28 deletions(-)
diff --git a/tcg/ppc/tcg-target.inc.c b/tcg/ppc/tcg-target.inc.c
index 74f9b4aa34..86f7de5f7e 100644
--- a/tcg/ppc/tcg-target.inc.c
+++ b/tcg/ppc/tcg-target.inc.c
@@ -222,33 +222,6 @@ static inline void tcg_out_bc_noaddr(TCGContext *s, int insn)
tcg_out32(s, insn | retrans);
}
-static void patch_reloc(tcg_insn_unit *code_ptr, int type,
- intptr_t value, intptr_t addend)
-{
- tcg_insn_unit *target;
- tcg_insn_unit old;
-
- value += addend;
- target = (tcg_insn_unit *)value;
-
- switch (type) {
- case R_PPC_REL14:
- reloc_pc14(code_ptr, target);
- break;
- case R_PPC_REL24:
- reloc_pc24(code_ptr, target);
- break;
- case R_PPC_ADDR16:
- assert(value == (int16_t)value);
- old = *code_ptr;
- old = deposit32(old, 0, 16, value);
- *code_ptr = old;
- break;
- default:
- tcg_abort();
- }
-}
-
/* parse target specific constraints */
static const char *target_parse_constraint(TCGArgConstraint *ct,
const char *ct_str, TCGType type)
@@ -552,6 +525,43 @@ static const uint32_t tcg_to_isel[] = {
[TCG_COND_GTU] = ISEL | BC_(7, CR_GT),
};
+static void patch_reloc(tcg_insn_unit *code_ptr, int type,
+ intptr_t value, intptr_t addend)
+{
+ tcg_insn_unit *target;
+ tcg_insn_unit old;
+
+ value += addend;
+ target = (tcg_insn_unit *)value;
+
+ switch (type) {
+ case R_PPC_REL14:
+ reloc_pc14(code_ptr, target);
+ break;
+ case R_PPC_REL24:
+ reloc_pc24(code_ptr, target);
+ break;
+ case R_PPC_ADDR16:
+ /* We are abusing this relocation type. This points to a pair
+ of insns, addis + load. If the displacement is small, we
+ can nop out the addis. */
+ if (value == (int16_t)value) {
+ code_ptr[0] = NOP;
+ old = deposit32(code_ptr[1], 0, 16, value);
+ code_ptr[1] = deposit32(old, 16, 5, TCG_REG_TB);
+ } else {
+ int16_t lo = value;
+ int hi = value - lo;
+ assert(hi + lo == value);
+ code_ptr[0] = deposit32(code_ptr[0], 0, 16, hi >> 16);
+ code_ptr[1] = deposit32(code_ptr[1], 0, 16, lo);
+ }
+ break;
+ default:
+ g_assert_not_reached();
+ }
+}
+
static void tcg_out_mem_long(TCGContext *s, int opi, int opx, TCGReg rt,
TCGReg base, tcg_target_long offset);
@@ -690,7 +700,8 @@ static void tcg_out_movi_int(TCGContext *s, TCGType type, TCGReg ret,
if (!in_prologue && USE_REG_TB) {
new_pool_label(s, arg, R_PPC_ADDR16, s->code_ptr,
-(intptr_t)s->code_gen_ptr);
- tcg_out32(s, LD | TAI(ret, TCG_REG_TB, 0));
+ tcg_out32(s, ADDIS | TAI(ret, TCG_REG_TB, 0));
+ tcg_out32(s, LD | TAI(ret, ret, 0));
return;
}
--
2.14.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-01-10 7:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-10 7:55 [Qemu-devel] [PATCH 0/2] tcg/ppc updates Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 1/2] tcg/ppc: Support tlb offsets larger than 64k Richard Henderson
2018-01-10 7:55 ` [Qemu-devel] [PATCH 2/2] tcg/ppc: Allow a 32-bit offset to the constant pool Richard Henderson
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).