use symbol for DisasContext->is_jmp

This patch replaces constant value assigned for (DisasContext
*)->is_jmp with DISAS_TB_JUMP.

Signed-off-by: Jun Koi <junkoi2004@gmail.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
Jun Koi 2010-07-24 00:17:00 +09:00 committed by Edgar E. Iglesias
parent 36388314fe
commit 5779406a24

View File

@ -2322,7 +2322,7 @@ static inline void gen_jcc(DisasContext *s, int b,
gen_set_label(l1); gen_set_label(l1);
gen_goto_tb(s, 1, val); gen_goto_tb(s, 1, val);
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} else { } else {
l1 = gen_new_label(); l1 = gen_new_label();
@ -2400,11 +2400,11 @@ static void gen_movl_seg_T0(DisasContext *s, int seg_reg, target_ulong cur_eip)
stop as a special handling must be done to disable hardware stop as a special handling must be done to disable hardware
interrupts for the next instruction */ interrupts for the next instruction */
if (seg_reg == R_SS || (s->code32 && seg_reg < R_FS)) if (seg_reg == R_SS || (s->code32 && seg_reg < R_FS))
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} else { } else {
gen_op_movl_seg_T0_vm(seg_reg); gen_op_movl_seg_T0_vm(seg_reg);
if (seg_reg == R_SS) if (seg_reg == R_SS)
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
} }
@ -2672,7 +2672,7 @@ static void gen_exception(DisasContext *s, int trapno, target_ulong cur_eip)
gen_op_set_cc_op(s->cc_op); gen_op_set_cc_op(s->cc_op);
gen_jmp_im(cur_eip); gen_jmp_im(cur_eip);
gen_helper_raise_exception(tcg_const_i32(trapno)); gen_helper_raise_exception(tcg_const_i32(trapno));
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
/* an interrupt is different from an exception because of the /* an interrupt is different from an exception because of the
@ -2685,7 +2685,7 @@ static void gen_interrupt(DisasContext *s, int intno,
gen_jmp_im(cur_eip); gen_jmp_im(cur_eip);
gen_helper_raise_interrupt(tcg_const_i32(intno), gen_helper_raise_interrupt(tcg_const_i32(intno),
tcg_const_i32(next_eip - cur_eip)); tcg_const_i32(next_eip - cur_eip));
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
static void gen_debug(DisasContext *s, target_ulong cur_eip) static void gen_debug(DisasContext *s, target_ulong cur_eip)
@ -2694,7 +2694,7 @@ static void gen_debug(DisasContext *s, target_ulong cur_eip)
gen_op_set_cc_op(s->cc_op); gen_op_set_cc_op(s->cc_op);
gen_jmp_im(cur_eip); gen_jmp_im(cur_eip);
gen_helper_debug(); gen_helper_debug();
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
/* generate a generic end of block. Trace exception is also generated /* generate a generic end of block. Trace exception is also generated
@ -2716,7 +2716,7 @@ static void gen_eob(DisasContext *s)
} else { } else {
tcg_gen_exit_tb(0); tcg_gen_exit_tb(0);
} }
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
/* generate a jump to eip. No segment change must happen before as a /* generate a jump to eip. No segment change must happen before as a
@ -2729,7 +2729,7 @@ static void gen_jmp_tb(DisasContext *s, target_ulong eip, int tb_num)
s->cc_op = CC_OP_DYNAMIC; s->cc_op = CC_OP_DYNAMIC;
} }
gen_goto_tb(s, tb_num, eip); gen_goto_tb(s, tb_num, eip);
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} else { } else {
gen_jmp_im(eip); gen_jmp_im(eip);
gen_eob(s); gen_eob(s);
@ -6968,7 +6968,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start)
gen_op_set_cc_op(s->cc_op); gen_op_set_cc_op(s->cc_op);
gen_jmp_im(pc_start - s->cs_base); gen_jmp_im(pc_start - s->cs_base);
gen_helper_hlt(tcg_const_i32(s->pc - pc_start)); gen_helper_hlt(tcg_const_i32(s->pc - pc_start));
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
break; break;
case 0x100: case 0x100:
@ -7125,7 +7125,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start)
gen_helper_vmrun(tcg_const_i32(s->aflag), gen_helper_vmrun(tcg_const_i32(s->aflag),
tcg_const_i32(s->pc - pc_start)); tcg_const_i32(s->pc - pc_start));
tcg_gen_exit_tb(0); tcg_gen_exit_tb(0);
s->is_jmp = 3; s->is_jmp = DISAS_TB_JUMP;
} }
break; break;
case 1: /* VMMCALL */ case 1: /* VMMCALL */