mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 22:01:06 +00:00
tcg: Introduce tcg_set_insn_start_param
The parameters for tcg_gen_insn_start are target_ulong, which may be split into two TCGArg parameters for storage in the opcode on 32-bit hosts. Fixes the ARM target and its direct use of tcg_set_insn_param, which would set the wrong argument in the 64-on-32 case. Backports commit 9743cd5736263e90d312b2c33bd739ffe1eae70d from qemu
This commit is contained in:
parent
8f26d8e556
commit
49476ebf5e
|
@ -117,7 +117,7 @@ static inline void disas_set_insn_syndrome(DisasContext *s, uint32_t syn)
|
|||
|
||||
/* We check and clear insn_start_idx to catch multiple updates. */
|
||||
assert(s->insn_start != NULL);
|
||||
tcg_set_insn_param(s->insn_start, 2, syn);
|
||||
tcg_set_insn_start_param(s->insn_start, 2, syn);
|
||||
s->insn_start = NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -1036,6 +1036,16 @@ static inline void tcg_set_insn_param(TCGOp *op, int arg, TCGArg v)
|
|||
op->args[arg] = v;
|
||||
}
|
||||
|
||||
static inline void tcg_set_insn_start_param(TCGOp *op, int arg, target_ulong v)
|
||||
{
|
||||
#if TARGET_LONG_BITS <= TCG_TARGET_REG_BITS
|
||||
tcg_set_insn_param(op, arg, v);
|
||||
#else
|
||||
tcg_set_insn_param(op, arg * 2, v);
|
||||
tcg_set_insn_param(op, arg * 2 + 1, v >> 32);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* The last op that was emitted. */
|
||||
static inline TCGOp *tcg_last_op(TCGContext *tcg_ctx)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue