tcg/sparc: Use constant pool for movi

Backports commit e9823b4c3347370414b63010ec4a2a4754e4abb5 from qemu
This commit is contained in:
Richard Henderson 2018-03-04 22:53:58 -05:00 committed by Lioncash
parent b786e2d27e
commit b3fd6a8c8c
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
2 changed files with 58 additions and 20 deletions

View file

@ -183,4 +183,6 @@ static inline void flush_icache_range(uintptr_t start, uintptr_t stop)
void tb_target_set_jmp_target(uintptr_t, uintptr_t, uintptr_t); void tb_target_set_jmp_target(uintptr_t, uintptr_t, uintptr_t);
#define TCG_TARGET_NEED_POOL_LABELS
#endif #endif

View file

@ -22,6 +22,8 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "tcg-pool.inc.c"
#ifdef CONFIG_DEBUG_TCG #ifdef CONFIG_DEBUG_TCG
static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = { static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
"%g0", "%g0",
@ -294,33 +296,47 @@ static inline int check_fit_i32(int32_t val, unsigned int bits)
static void patch_reloc(tcg_insn_unit *code_ptr, int type, static void patch_reloc(tcg_insn_unit *code_ptr, int type,
intptr_t value, intptr_t addend) intptr_t value, intptr_t addend)
{ {
uint32_t insn; uint32_t insn = *code_ptr;
intptr_t pcrel;
tcg_debug_assert(addend == 0); value += addend;
value = tcg_ptr_byte_diff((tcg_insn_unit *)value, code_ptr); pcrel = tcg_ptr_byte_diff((tcg_insn_unit *)value, code_ptr);
switch (type) { switch (type) {
case R_SPARC_WDISP16: case R_SPARC_WDISP16:
if (!check_fit_ptr(value >> 2, 16)) { assert(check_fit_ptr(pcrel >> 2, 16));
tcg_abort();
}
insn = *code_ptr;
insn &= ~INSN_OFF16(-1); insn &= ~INSN_OFF16(-1);
insn |= INSN_OFF16(value); insn |= INSN_OFF16(pcrel);
*code_ptr = insn;
break; break;
case R_SPARC_WDISP19: case R_SPARC_WDISP19:
if (!check_fit_ptr(value >> 2, 19)) { assert(check_fit_ptr(pcrel >> 2, 19));
tcg_abort();
}
insn = *code_ptr;
insn &= ~INSN_OFF19(-1); insn &= ~INSN_OFF19(-1);
insn |= INSN_OFF19(value); insn |= INSN_OFF19(value);
*code_ptr = insn; insn |= INSN_OFF19(pcrel);
break; break;
default: case R_SPARC_13:
tcg_abort(); /* Note that we're abusing this reloc type for our own needs. */
if (!check_fit_ptr(value, 13)) {
int adj = (value > 0 ? 0xff8 : -0x1000);
value -= adj;
assert(check_fit_ptr(value, 13));
*code_ptr++ = (ARITH_ADD | INSN_RD(TCG_REG_T2)
| INSN_RS1(TCG_REG_TB) | INSN_IMM13(adj));
insn ^= INSN_RS1(TCG_REG_TB) ^ INSN_RS1(TCG_REG_T2);
} }
insn &= ~INSN_IMM13(-1);
insn |= INSN_IMM13(value);
break;
case R_SPARC_32:
/* Note that we're abusing this reloc type for our own needs. */
code_ptr[0] = deposit32(code_ptr[0], 0, 22, value >> 10);
code_ptr[1] = deposit32(code_ptr[1], 0, 10, value);
return;
default:
g_assert_not_reached();
}
*code_ptr = insn;
} }
/* parse target specific constraints */ /* parse target specific constraints */
@ -476,12 +492,24 @@ static void tcg_out_movi_int(TCGContext *s, TCGType type, TCGReg ret,
return; return;
} }
if (USE_REG_TB && !in_prologue) { if (!in_prologue) {
if (USE_REG_TB) {
intptr_t diff = arg - (uintptr_t)s->code_gen_ptr; intptr_t diff = arg - (uintptr_t)s->code_gen_ptr;
if (check_fit_ptr(diff, 13)) { if (check_fit_ptr(diff, 13)) {
tcg_out_arithi(s, ret, TCG_REG_TB, diff, ARITH_ADD); tcg_out_arithi(s, ret, TCG_REG_TB, diff, ARITH_ADD);
return; } else {
new_pool_label(s, arg, R_SPARC_13, s->code_ptr,
-(intptr_t)s->code_gen_ptr);
tcg_out32(s, LDX | INSN_RD(ret) | INSN_RS1(TCG_REG_TB));
/* May be used to extend the 13-bit range in patch_reloc. */
tcg_out32(s, NOP);
} }
} else {
new_pool_label(s, arg, R_SPARC_32, s->code_ptr, 0);
tcg_out_sethi(s, ret, 0);
tcg_out32(s, LDX | INSN_RD(ret) | INSN_RS1(ret) | INSN_IMM13(0));
}
return;
} }
/* A 64-bit constant decomposed into 2 32-bit pieces. */ /* A 64-bit constant decomposed into 2 32-bit pieces. */
@ -1060,6 +1088,14 @@ static void tcg_target_qemu_prologue(TCGContext *s)
#endif #endif
} }
static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
{
int i;
for (i = 0; i < count; ++i) {
p[i] = NOP;
}
}
#if defined(CONFIG_SOFTMMU) #if defined(CONFIG_SOFTMMU)
/* Perform the TLB load and compare. /* Perform the TLB load and compare.