Skip to content

Commit

Permalink
target-mips: Change gen_intermediate_code_internal() argument to MIPSCPU
Browse files Browse the repository at this point in the history
Also use bool type while at it.

Prepares for moving singlestep_enabled field to CPUState.

Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Jul 9, 2013
1 parent 4a27421 commit 6429db3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions target-mips/translate.c
Expand Up @@ -15540,9 +15540,10 @@ static void decode_opc (CPUMIPSState *env, DisasContext *ctx, int *is_branch)
}

static inline void
gen_intermediate_code_internal (CPUMIPSState *env, TranslationBlock *tb,
int search_pc)
gen_intermediate_code_internal(MIPSCPU *cpu, TranslationBlock *tb,
bool search_pc)
{
CPUMIPSState *env = &cpu->env;
DisasContext ctx;
target_ulong pc_start;
uint16_t *gen_opc_end;
Expand Down Expand Up @@ -15698,12 +15699,12 @@ gen_intermediate_code_internal (CPUMIPSState *env, TranslationBlock *tb,

void gen_intermediate_code (CPUMIPSState *env, struct TranslationBlock *tb)
{
gen_intermediate_code_internal(env, tb, 0);
gen_intermediate_code_internal(mips_env_get_cpu(env), tb, false);
}

void gen_intermediate_code_pc (CPUMIPSState *env, struct TranslationBlock *tb)
{
gen_intermediate_code_internal(env, tb, 1);
gen_intermediate_code_internal(mips_env_get_cpu(env), tb, true);
}

static void fpu_dump_state(CPUMIPSState *env, FILE *f, fprintf_function fpu_fprintf,
Expand Down

0 comments on commit 6429db3

Please sign in to comment.