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:
Richard Henderson 2018-02-19 01:42:49 -05:00 committed by Lioncash
parent 8dbf46ca82
commit c507f16702
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
3 changed files with 3 additions and 6 deletions

View file

@ -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);

View file

@ -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);

View file

@ -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));