mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
tcg: Formalize tcg_out_br
Split these functions out from tcg_out_op. Call it directly from tcg_gen_code. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e038696c92
commit
3752a5a5ba
11 changed files with 60 additions and 53 deletions
|
@ -1407,7 +1407,7 @@ static void tcg_out_call(TCGContext *s, const tcg_insn_unit *target,
|
|||
tcg_out_call_int(s, target);
|
||||
}
|
||||
|
||||
static inline void tcg_out_goto_label(TCGContext *s, TCGLabel *l)
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
if (!l->has_value) {
|
||||
tcg_out_reloc(s, s->code_ptr, R_AARCH64_JUMP26, l, 0);
|
||||
|
@ -2779,10 +2779,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType ext,
|
|||
tcg_out_insn(s, 3207, BR, a0);
|
||||
break;
|
||||
|
||||
case INDEX_op_br:
|
||||
tcg_out_goto_label(s, arg_label(a0));
|
||||
break;
|
||||
|
||||
case INDEX_op_ld8u_i32:
|
||||
case INDEX_op_ld8u_i64:
|
||||
tcg_out_ldst(s, I3312_LDRB, a0, a1, a2, 0);
|
||||
|
|
|
@ -1203,6 +1203,11 @@ static void tcg_out_goto_label(TCGContext *s, ARMCond cond, TCGLabel *l)
|
|||
}
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_goto_label(s, COND_AL, l);
|
||||
}
|
||||
|
||||
static void tcg_out_mb(TCGContext *s, unsigned a0)
|
||||
{
|
||||
if (use_armv7_instructions) {
|
||||
|
@ -2522,9 +2527,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
case INDEX_op_goto_ptr:
|
||||
tcg_out_b_reg(s, COND_AL, args[0]);
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
tcg_out_goto_label(s, COND_AL, arg_label(args[0]));
|
||||
break;
|
||||
|
||||
case INDEX_op_ld8u_i32:
|
||||
tcg_out_ld8u(s, COND_AL, args[0], args[1], args[2]);
|
||||
|
|
|
@ -1546,6 +1546,11 @@ static void tcg_out_jxx(TCGContext *s, int opc, TCGLabel *l, bool small)
|
|||
}
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_jxx(s, JCC_JMP, l, 0);
|
||||
}
|
||||
|
||||
static int tcg_out_cmp(TCGContext *s, TCGCond cond, TCGArg arg1,
|
||||
TCGArg arg2, int const_arg2, int rexw)
|
||||
{
|
||||
|
@ -3436,9 +3441,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
/* jmp to the given host address (could be epilogue) */
|
||||
tcg_out_modrm(s, OPC_GRP5, EXT5_JMPN_Ev, a0);
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
tcg_out_jxx(s, JCC_JMP, arg_label(a0), 0);
|
||||
break;
|
||||
OP_32_64(ld8u):
|
||||
/* Note that we can ignore REXW for the zero-extend to 64-bit. */
|
||||
tcg_out_modrm_offset(s, OPC_MOVZBL, a0, a1, a2);
|
||||
|
|
|
@ -756,6 +756,12 @@ static const TCGOutOpMovcond outop_movcond = {
|
|||
* Branch helpers
|
||||
*/
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_reloc(s, s->code_ptr, R_LOONGARCH_BR_SD10K16, l, 0);
|
||||
tcg_out_opc_b(s, 0);
|
||||
}
|
||||
|
||||
static const struct {
|
||||
LoongArchInsn op;
|
||||
bool swap;
|
||||
|
@ -1921,12 +1927,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_opc_jirl(s, TCG_REG_ZERO, a0, 0);
|
||||
break;
|
||||
|
||||
case INDEX_op_br:
|
||||
tcg_out_reloc(s, s->code_ptr, R_LOONGARCH_BR_SD10K16, arg_label(a0),
|
||||
0);
|
||||
tcg_out_opc_b(s, 0);
|
||||
break;
|
||||
|
||||
case INDEX_op_ld8s_i32:
|
||||
case INDEX_op_ld8s_i64:
|
||||
tcg_out_ldst(s, OPC_LD_B, a0, a1, a2);
|
||||
|
|
|
@ -921,6 +921,11 @@ static const TCGOutOpBrcond outop_brcond = {
|
|||
.out_rr = tgen_brcond,
|
||||
};
|
||||
|
||||
void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tgen_brcond(s, TCG_TYPE_I32, TCG_COND_EQ, TCG_REG_ZERO, TCG_REG_ZERO, l);
|
||||
}
|
||||
|
||||
static int tcg_out_setcond2_int(TCGContext *s, TCGCond cond, TCGReg ret,
|
||||
TCGReg al, TCGReg ah, TCGReg bl, TCGReg bh)
|
||||
{
|
||||
|
@ -2281,11 +2286,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_nop(s);
|
||||
}
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
tgen_brcond(s, TCG_TYPE_I32, TCG_COND_EQ,
|
||||
TCG_REG_ZERO, TCG_REG_ZERO, arg_label(a0));
|
||||
break;
|
||||
|
||||
case INDEX_op_ld8u_i32:
|
||||
case INDEX_op_ld8u_i64:
|
||||
i1 = OPC_LBU;
|
||||
|
|
|
@ -1990,6 +1990,18 @@ static const TCGOutOpSetcond outop_negsetcond = {
|
|||
.out_rri = tgen_negsetcondi,
|
||||
};
|
||||
|
||||
void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
uint32_t insn = B;
|
||||
|
||||
if (l->has_value) {
|
||||
insn |= reloc_pc24_val(tcg_splitwx_to_rx(s->code_ptr), l->u.value_ptr);
|
||||
} else {
|
||||
tcg_out_reloc(s, s->code_ptr, R_PPC_REL24, l, 0);
|
||||
}
|
||||
tcg_out32(s, insn);
|
||||
}
|
||||
|
||||
static void tcg_out_bc(TCGContext *s, TCGCond cond, int bd)
|
||||
{
|
||||
tcg_out32(s, tcg_to_bc[cond] | bd);
|
||||
|
@ -3669,20 +3681,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out32(s, ADDI | TAI(TCG_REG_R3, 0, 0));
|
||||
tcg_out32(s, BCCTR | BO_ALWAYS);
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
{
|
||||
TCGLabel *l = arg_label(args[0]);
|
||||
uint32_t insn = B;
|
||||
|
||||
if (l->has_value) {
|
||||
insn |= reloc_pc24_val(tcg_splitwx_to_rx(s->code_ptr),
|
||||
l->u.value_ptr);
|
||||
} else {
|
||||
tcg_out_reloc(s, s->code_ptr, R_PPC_REL24, l, 0);
|
||||
}
|
||||
tcg_out32(s, insn);
|
||||
}
|
||||
break;
|
||||
case INDEX_op_ld8u_i32:
|
||||
case INDEX_op_ld8u_i64:
|
||||
tcg_out_mem_long(s, LBZ, LBZX, args[0], args[1], args[2]);
|
||||
|
|
|
@ -1107,6 +1107,12 @@ static void tcg_out_dupi_vec(TCGContext *s, TCGType type, unsigned vece,
|
|||
tcg_out_dup_vec(s, type, vece, dst, TCG_REG_TMP0);
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_reloc(s, s->code_ptr, R_RISCV_JAL, l, 0);
|
||||
tcg_out_opc_jump(s, OPC_JAL, TCG_REG_ZERO, 0);
|
||||
}
|
||||
|
||||
static const struct {
|
||||
RISCVInsn op;
|
||||
bool swap;
|
||||
|
@ -2533,11 +2539,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_opc_imm(s, OPC_JALR, TCG_REG_ZERO, a0, 0);
|
||||
break;
|
||||
|
||||
case INDEX_op_br:
|
||||
tcg_out_reloc(s, s->code_ptr, R_RISCV_JAL, arg_label(a0), 0);
|
||||
tcg_out_opc_jump(s, OPC_JAL, TCG_REG_ZERO, 0);
|
||||
break;
|
||||
|
||||
case INDEX_op_ld8u_i32:
|
||||
case INDEX_op_ld8u_i64:
|
||||
tcg_out_ldst(s, OPC_LBU, a0, a1, a2);
|
||||
|
|
|
@ -1689,6 +1689,11 @@ static void tgen_branch(TCGContext *s, int cc, TCGLabel *l)
|
|||
}
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tgen_branch(s, S390_CC_ALWAYS, l);
|
||||
}
|
||||
|
||||
static void tgen_compare_branch(TCGContext *s, S390Opcode opc, int cc,
|
||||
TCGReg r1, TCGReg r2, TCGLabel *l)
|
||||
{
|
||||
|
@ -3075,10 +3080,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_st(s, TCG_TYPE_I32, args[0], args[1], args[2]);
|
||||
break;
|
||||
|
||||
case INDEX_op_br:
|
||||
tgen_branch(s, S390_CC_ALWAYS, arg_label(args[0]));
|
||||
break;
|
||||
|
||||
case INDEX_op_qemu_ld_i32:
|
||||
tcg_out_qemu_ld(s, args[0], args[1], args[2], TCG_TYPE_I32);
|
||||
break;
|
||||
|
|
|
@ -641,6 +641,12 @@ static void tcg_out_bpcc(TCGContext *s, int scond, int flags, TCGLabel *l)
|
|||
tcg_out_bpcc0(s, scond, flags, off19);
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_bpcc(s, COND_A, BPCC_PT, l);
|
||||
tcg_out_nop(s);
|
||||
}
|
||||
|
||||
static void tcg_out_cmp(TCGContext *s, TCGCond cond,
|
||||
TCGReg c1, int32_t c2, int c2const)
|
||||
{
|
||||
|
@ -1966,10 +1972,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_arithi(s, TCG_REG_G0, a0, 0, JMPL);
|
||||
tcg_out_mov_delay(s, TCG_REG_TB, a0);
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
tcg_out_bpcc(s, COND_A, BPCC_PT, arg_label(a0));
|
||||
tcg_out_nop(s);
|
||||
break;
|
||||
|
||||
#define OP_32_64(x) \
|
||||
glue(glue(case INDEX_op_, x), _i32): \
|
||||
|
|
|
@ -134,6 +134,7 @@ static bool tcg_out_xchg(TCGContext *s, TCGType type, TCGReg r1, TCGReg r2);
|
|||
static void tcg_out_exit_tb(TCGContext *s, uintptr_t arg);
|
||||
static void tcg_out_goto_tb(TCGContext *s, int which);
|
||||
static void tcg_out_mb(TCGContext *s, unsigned bar);
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l);
|
||||
static void tcg_out_set_carry(TCGContext *s);
|
||||
static void tcg_out_set_borrow(TCGContext *s);
|
||||
static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||
|
@ -6900,6 +6901,9 @@ int tcg_gen_code(TCGContext *s, TranslationBlock *tb, uint64_t pc_start)
|
|||
case INDEX_op_goto_tb:
|
||||
tcg_out_goto_tb(s, op->args[0]);
|
||||
break;
|
||||
case INDEX_op_br:
|
||||
tcg_out_br(s, arg_label(op->args[0]));
|
||||
break;
|
||||
case INDEX_op_mb:
|
||||
tcg_out_mb(s, op->args[0]);
|
||||
break;
|
||||
|
|
|
@ -1136,6 +1136,11 @@ static void tcg_out_mb(TCGContext *s, unsigned a0)
|
|||
tcg_out_op_v(s, INDEX_op_mb);
|
||||
}
|
||||
|
||||
static void tcg_out_br(TCGContext *s, TCGLabel *l)
|
||||
{
|
||||
tcg_out_op_l(s, INDEX_op_br, l);
|
||||
}
|
||||
|
||||
static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||
const TCGArg args[TCG_MAX_OP_ARGS],
|
||||
const int const_args[TCG_MAX_OP_ARGS])
|
||||
|
@ -1145,10 +1150,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_op_r(s, opc, args[0]);
|
||||
break;
|
||||
|
||||
case INDEX_op_br:
|
||||
tcg_out_op_l(s, opc, arg_label(args[0]));
|
||||
break;
|
||||
|
||||
CASE_32_64(ld8u)
|
||||
CASE_32_64(ld8s)
|
||||
CASE_32_64(ld16u)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue