Skip to content

Commit

Permalink
target-lm32: Change gen_intermediate_code_internal() argument to LM32CPU
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 <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
  • Loading branch information
afaerber committed Jul 9, 2013
1 parent 467215c commit cd0db97
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions target-lm32/translate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,9 +1012,10 @@ static void check_breakpoint(CPULM32State *env, DisasContext *dc)

/* generate intermediate code for basic block 'tb'. */
static inline
void gen_intermediate_code_internal(CPULM32State *env,
TranslationBlock *tb, int search_pc)
void gen_intermediate_code_internal(LM32CPU *cpu,
TranslationBlock *tb, bool search_pc)
{
CPULM32State *env = &cpu->env;
struct DisasContext ctx, *dc = &ctx;
uint16_t *gen_opc_end;
uint32_t pc_start;
Expand Down Expand Up @@ -1134,12 +1135,12 @@ void gen_intermediate_code_internal(CPULM32State *env,

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

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

void lm32_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
Expand Down

0 comments on commit cd0db97

Please sign in to comment.