mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 03:25:33 +00:00
tcg: Remove lingering references to gen_opc_buf
Three in comments and one in code in the stub tcg_liveness_analysis. Backports commit 201577059331b8b3aef221ee2ed594deb99d6631 from qemu
This commit is contained in:
parent
8dbf46ca82
commit
c507f16702
|
@ -11380,8 +11380,7 @@ static bool insn_crosses_page(CPUARMState *env, DisasContext *s)
|
|||
return false;
|
||||
}
|
||||
|
||||
/* generate intermediate code in gen_opc_buf and gen_opparam_buf for
|
||||
basic block 'tb'. */
|
||||
/* generate intermediate code for basic block 'tb'. */
|
||||
void gen_intermediate_code(CPUARMState *env, TranslationBlock *tb)
|
||||
{
|
||||
ARMCPU *cpu = arm_env_get_cpu(env);
|
||||
|
|
|
@ -8577,8 +8577,7 @@ void tcg_x86_init(struct uc_struct *uc)
|
|||
}
|
||||
}
|
||||
|
||||
/* generate intermediate code in gen_opc_buf and gen_opparam_buf for
|
||||
basic block 'tb'. */
|
||||
/* generate intermediate code for basic block 'tb'. */
|
||||
void gen_intermediate_code(CPUX86State *env, TranslationBlock *tb)
|
||||
{
|
||||
X86CPU *cpu = x86_env_get_cpu(env);
|
||||
|
|
|
@ -1637,8 +1637,7 @@ static void tcg_liveness_analysis(TCGContext *s)
|
|||
/* dummy liveness analysis */
|
||||
static void tcg_liveness_analysis(TCGContext *s)
|
||||
{
|
||||
int nb_ops;
|
||||
nb_ops = s->gen_opc_ptr - s->gen_opc_buf;
|
||||
int nb_ops = s->gen_next_op_idx;
|
||||
|
||||
s->op_dead_args = tcg_malloc(s, nb_ops * sizeof(uint16_t));
|
||||
memset(s->op_dead_args, 0, nb_ops * sizeof(uint16_t));
|
||||
|
|
Loading…
Reference in a new issue