mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-05 11:39:54 +00:00
suppressed JUMP_TB (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1594 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
d5d11eac6c
commit
c53be33474
@ -365,15 +365,6 @@ dummy_label ## n: ;\
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* XXX: will be suppressed */
|
|
||||||
#define JUMP_TB(opname, tbparam, n, eip)\
|
|
||||||
do {\
|
|
||||||
GOTO_TB(opname, tbparam, n);\
|
|
||||||
T0 = (long)(tbparam) + (n);\
|
|
||||||
EIP = (int32_t)eip;\
|
|
||||||
EXIT_TB();\
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4];
|
extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4];
|
||||||
extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4];
|
extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4];
|
||||||
extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];
|
extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];
|
||||||
|
@ -346,14 +346,14 @@ void OPPROTO op_test_le(void)
|
|||||||
FORCE_RET();
|
FORCE_RET();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OPPROTO op_jmp0(void)
|
void OPPROTO op_goto_tb0(void)
|
||||||
{
|
{
|
||||||
JUMP_TB(op_jmp0, PARAM1, 0, PARAM2);
|
GOTO_TB(op_goto_tb0, PARAM1, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void OPPROTO op_jmp1(void)
|
void OPPROTO op_goto_tb1(void)
|
||||||
{
|
{
|
||||||
JUMP_TB(op_jmp1, PARAM1, 1, PARAM2);
|
GOTO_TB(op_goto_tb1, PARAM1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void OPPROTO op_exit_tb(void)
|
void OPPROTO op_exit_tb(void)
|
||||||
|
@ -43,6 +43,12 @@ typedef struct DisasContext {
|
|||||||
|
|
||||||
#define DISAS_JUMP_NEXT 4
|
#define DISAS_JUMP_NEXT 4
|
||||||
|
|
||||||
|
#ifdef USE_DIRECT_JUMP
|
||||||
|
#define TBPARAM(x)
|
||||||
|
#else
|
||||||
|
#define TBPARAM(x) (long)(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* XXX: move that elsewhere */
|
/* XXX: move that elsewhere */
|
||||||
static uint16_t *gen_opc_ptr;
|
static uint16_t *gen_opc_ptr;
|
||||||
static uint32_t *gen_opparam_ptr;
|
static uint32_t *gen_opparam_ptr;
|
||||||
@ -897,6 +903,18 @@ static int disas_vfp_insn(CPUState * env, DisasContext *s, uint32_t insn)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void gen_jmp_tb(long tb, int n, uint32_t dest)
|
||||||
|
{
|
||||||
|
if (n == 0)
|
||||||
|
gen_op_goto_tb0(TBPARAM(tb));
|
||||||
|
else
|
||||||
|
gen_op_goto_tb1(TBPARAM(tb));
|
||||||
|
gen_op_movl_T0_im(dest);
|
||||||
|
gen_op_movl_r15_T0();
|
||||||
|
gen_op_movl_T0_im(tb + n);
|
||||||
|
gen_op_exit_tb();
|
||||||
|
}
|
||||||
|
|
||||||
static inline void gen_jmp (DisasContext *s, uint32_t dest)
|
static inline void gen_jmp (DisasContext *s, uint32_t dest)
|
||||||
{
|
{
|
||||||
if (__builtin_expect(s->singlestep_enabled, 0)) {
|
if (__builtin_expect(s->singlestep_enabled, 0)) {
|
||||||
@ -906,7 +924,8 @@ static inline void gen_jmp (DisasContext *s, uint32_t dest)
|
|||||||
gen_op_movl_T0_im(dest);
|
gen_op_movl_T0_im(dest);
|
||||||
gen_bx(s);
|
gen_bx(s);
|
||||||
} else {
|
} else {
|
||||||
gen_op_jmp0((long)s->tb, dest);
|
long tb = (long)s->tb;
|
||||||
|
gen_jmp_tb(tb, 0, dest);
|
||||||
s->is_jmp = DISAS_TB_JUMP;
|
s->is_jmp = DISAS_TB_JUMP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2118,7 +2137,7 @@ static inline int gen_intermediate_code_internal(CPUState *env,
|
|||||||
} else {
|
} else {
|
||||||
switch(dc->is_jmp) {
|
switch(dc->is_jmp) {
|
||||||
case DISAS_NEXT:
|
case DISAS_NEXT:
|
||||||
gen_op_jmp1((long)dc->tb, (long)dc->pc);
|
gen_jmp_tb((long)dc->tb, 1, dc->pc);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
case DISAS_JUMP:
|
case DISAS_JUMP:
|
||||||
@ -2133,7 +2152,7 @@ static inline int gen_intermediate_code_internal(CPUState *env,
|
|||||||
}
|
}
|
||||||
if (dc->condjmp) {
|
if (dc->condjmp) {
|
||||||
gen_set_label(dc->condlabel);
|
gen_set_label(dc->condlabel);
|
||||||
gen_op_jmp1((long)dc->tb, (long)dc->pc);
|
gen_jmp_tb((long)dc->tb, 1, dc->pc);
|
||||||
dc->condjmp = 0;
|
dc->condjmp = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -487,7 +487,16 @@ OP_COND(ltz, (int32_t)T0 < 0);
|
|||||||
|
|
||||||
/* Branchs */
|
/* Branchs */
|
||||||
//#undef USE_DIRECT_JUMP
|
//#undef USE_DIRECT_JUMP
|
||||||
#define EIP env->PC
|
|
||||||
|
void OPPROTO op_goto_tb0(void)
|
||||||
|
{
|
||||||
|
GOTO_TB(op_goto_tb0, PARAM1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void OPPROTO op_goto_tb1(void)
|
||||||
|
{
|
||||||
|
GOTO_TB(op_goto_tb1, PARAM1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
/* Branch to register */
|
/* Branch to register */
|
||||||
void op_save_breg_target (void)
|
void op_save_breg_target (void)
|
||||||
@ -506,13 +515,6 @@ void op_breg (void)
|
|||||||
RETURN();
|
RETURN();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unconditional branch */
|
|
||||||
void op_branch (void)
|
|
||||||
{
|
|
||||||
JUMP_TB(branch, PARAM1, 0, PARAM2);
|
|
||||||
RETURN();
|
|
||||||
}
|
|
||||||
|
|
||||||
void op_save_btarget (void)
|
void op_save_btarget (void)
|
||||||
{
|
{
|
||||||
env->btarget = PARAM1;
|
env->btarget = PARAM1;
|
||||||
@ -538,24 +540,10 @@ void op_restore_bcond (void)
|
|||||||
RETURN();
|
RETURN();
|
||||||
}
|
}
|
||||||
|
|
||||||
void op_bcond (void)
|
void op_jnz_T2 (void)
|
||||||
{
|
{
|
||||||
if (T2) {
|
if (T2)
|
||||||
JUMP_TB(bcond, PARAM1, 0, PARAM2);
|
GOTO_LABEL_PARAM(1);
|
||||||
} else {
|
|
||||||
JUMP_TB(bcond, PARAM1, 1, PARAM3);
|
|
||||||
}
|
|
||||||
RETURN();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Likely branch (used to skip the delay slot) */
|
|
||||||
void op_blikely (void)
|
|
||||||
{
|
|
||||||
/* If the test is false, skip the delay slot */
|
|
||||||
if (T2 == 0) {
|
|
||||||
env->hflags = PARAM3;
|
|
||||||
JUMP_TB(blikely, PARAM1, 1, PARAM2);
|
|
||||||
}
|
|
||||||
RETURN();
|
RETURN();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,12 @@
|
|||||||
#define MIPS_DEBUG_DISAS
|
#define MIPS_DEBUG_DISAS
|
||||||
//#define MIPS_SINGLE_STEP
|
//#define MIPS_SINGLE_STEP
|
||||||
|
|
||||||
|
#ifdef USE_DIRECT_JUMP
|
||||||
|
#define TBPARAM(x)
|
||||||
|
#else
|
||||||
|
#define TBPARAM(x) (long)(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
#define DEF(s, n, copy_size) INDEX_op_ ## s,
|
#define DEF(s, n, copy_size) INDEX_op_ ## s,
|
||||||
#include "opc.h"
|
#include "opc.h"
|
||||||
@ -922,6 +928,17 @@ static void gen_trap (DisasContext *ctx, uint16_t opc,
|
|||||||
ctx->bstate = BS_STOP;
|
ctx->bstate = BS_STOP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void gen_jmp_tb(long tb, int n, uint32_t dest)
|
||||||
|
{
|
||||||
|
if (n == 0)
|
||||||
|
gen_op_goto_tb0(TBPARAM(tb));
|
||||||
|
else
|
||||||
|
gen_op_goto_tb1(TBPARAM(tb));
|
||||||
|
gen_op_save_pc(dest);
|
||||||
|
gen_op_set_T0(tb + n);
|
||||||
|
gen_op_exit_tb();
|
||||||
|
}
|
||||||
|
|
||||||
/* Branches (before delay slot) */
|
/* Branches (before delay slot) */
|
||||||
static void gen_compute_branch (DisasContext *ctx, uint16_t opc,
|
static void gen_compute_branch (DisasContext *ctx, uint16_t opc,
|
||||||
int rs, int rt, int32_t offset)
|
int rs, int rt, int32_t offset)
|
||||||
@ -1018,7 +1035,7 @@ static void gen_compute_branch (DisasContext *ctx, uint16_t opc,
|
|||||||
case OPC_BLTZL: /* 0 < 0 likely */
|
case OPC_BLTZL: /* 0 < 0 likely */
|
||||||
/* Skip the instruction in the delay slot */
|
/* Skip the instruction in the delay slot */
|
||||||
MIPS_DEBUG("bnever and skip");
|
MIPS_DEBUG("bnever and skip");
|
||||||
gen_op_branch((long)ctx->tb, ctx->pc + 4);
|
gen_jmp_tb((long)ctx->tb, 0, ctx->pc + 4);
|
||||||
return;
|
return;
|
||||||
case OPC_J:
|
case OPC_J:
|
||||||
ctx->hflags |= MIPS_HFLAG_DS | MIPS_HFLAG_B;
|
ctx->hflags |= MIPS_HFLAG_DS | MIPS_HFLAG_B;
|
||||||
@ -1255,6 +1272,15 @@ static void gen_arith64 (DisasContext *ctx, uint16_t opc)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static void gen_blikely(DisasContext *ctx)
|
||||||
|
{
|
||||||
|
int l1;
|
||||||
|
l1 = gen_new_label();
|
||||||
|
gen_op_jnz_T2(l1);
|
||||||
|
gen_op_save_state(ctx->hflags & ~(MIPS_HFLAG_BMASK | MIPS_HFLAG_DS));
|
||||||
|
gen_jmp_tb((long)ctx->tb, 1, ctx->pc + 4);
|
||||||
|
}
|
||||||
|
|
||||||
static void decode_opc (DisasContext *ctx)
|
static void decode_opc (DisasContext *ctx)
|
||||||
{
|
{
|
||||||
int32_t offset;
|
int32_t offset;
|
||||||
@ -1266,8 +1292,7 @@ static void decode_opc (DisasContext *ctx)
|
|||||||
(ctx->hflags & MIPS_HFLAG_BL)) {
|
(ctx->hflags & MIPS_HFLAG_BL)) {
|
||||||
/* Handle blikely not taken case */
|
/* Handle blikely not taken case */
|
||||||
MIPS_DEBUG("blikely condition (%08x)", ctx->pc + 4);
|
MIPS_DEBUG("blikely condition (%08x)", ctx->pc + 4);
|
||||||
gen_op_blikely((long)ctx->tb, ctx->pc + 4,
|
gen_blikely(ctx);
|
||||||
ctx->hflags & ~(MIPS_HFLAG_BMASK | MIPS_HFLAG_DS));
|
|
||||||
}
|
}
|
||||||
op = ctx->opcode >> 26;
|
op = ctx->opcode >> 26;
|
||||||
rs = ((ctx->opcode >> 21) & 0x1F);
|
rs = ((ctx->opcode >> 21) & 0x1F);
|
||||||
@ -1477,17 +1502,24 @@ static void decode_opc (DisasContext *ctx)
|
|||||||
case MIPS_HFLAG_B:
|
case MIPS_HFLAG_B:
|
||||||
/* unconditional branch */
|
/* unconditional branch */
|
||||||
MIPS_DEBUG("unconditional branch");
|
MIPS_DEBUG("unconditional branch");
|
||||||
gen_op_branch((long)ctx->tb, ctx->btarget);
|
gen_jmp_tb((long)ctx->tb, 0, ctx->btarget);
|
||||||
break;
|
break;
|
||||||
case MIPS_HFLAG_BL:
|
case MIPS_HFLAG_BL:
|
||||||
/* blikely taken case */
|
/* blikely taken case */
|
||||||
MIPS_DEBUG("blikely branch taken");
|
MIPS_DEBUG("blikely branch taken");
|
||||||
gen_op_branch((long)ctx->tb, ctx->btarget);
|
gen_jmp_tb((long)ctx->tb, 0, ctx->btarget);
|
||||||
break;
|
break;
|
||||||
case MIPS_HFLAG_BC:
|
case MIPS_HFLAG_BC:
|
||||||
/* Conditional branch */
|
/* Conditional branch */
|
||||||
MIPS_DEBUG("conditional branch");
|
MIPS_DEBUG("conditional branch");
|
||||||
gen_op_bcond((long)ctx->tb, ctx->btarget, ctx->pc + 4);
|
{
|
||||||
|
int l1;
|
||||||
|
l1 = gen_new_label();
|
||||||
|
gen_op_jnz_T2(l1);
|
||||||
|
gen_jmp_tb((long)ctx->tb, 0, ctx->btarget);
|
||||||
|
gen_set_label(l1);
|
||||||
|
gen_jmp_tb((long)ctx->tb, 1, ctx->pc + 4);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case MIPS_HFLAG_BR:
|
case MIPS_HFLAG_BR:
|
||||||
/* unconditional branch to register */
|
/* unconditional branch to register */
|
||||||
@ -1513,6 +1545,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
|
|||||||
gen_opc_ptr = gen_opc_buf;
|
gen_opc_ptr = gen_opc_buf;
|
||||||
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
|
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
|
||||||
gen_opparam_ptr = gen_opparam_buf;
|
gen_opparam_ptr = gen_opparam_buf;
|
||||||
|
nb_gen_labels = 0;
|
||||||
ctx.pc = pc_start;
|
ctx.pc = pc_start;
|
||||||
ctx.tb = tb;
|
ctx.tb = tb;
|
||||||
ctx.bstate = BS_NONE;
|
ctx.bstate = BS_NONE;
|
||||||
@ -1570,7 +1603,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
|
|||||||
}
|
}
|
||||||
if (ctx.bstate != BS_BRANCH && ctx.bstate != BS_EXCP) {
|
if (ctx.bstate != BS_BRANCH && ctx.bstate != BS_EXCP) {
|
||||||
save_cpu_state(ctxp, 0);
|
save_cpu_state(ctxp, 0);
|
||||||
gen_op_branch((long)ctx.tb, ctx.pc);
|
gen_jmp_tb((long)ctx.tb, 0, ctx.pc);
|
||||||
}
|
}
|
||||||
gen_op_reset_T0();
|
gen_op_reset_T0();
|
||||||
/* Generate the return instruction */
|
/* Generate the return instruction */
|
||||||
|
@ -451,9 +451,14 @@ PPC_OP(setlr)
|
|||||||
regs->lr = PARAM1;
|
regs->lr = PARAM1;
|
||||||
}
|
}
|
||||||
|
|
||||||
PPC_OP(b)
|
PPC_OP(goto_tb0)
|
||||||
{
|
{
|
||||||
JUMP_TB(b1, PARAM1, 0, PARAM2);
|
GOTO_TB(op_goto_tb0, PARAM1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
PPC_OP(goto_tb1)
|
||||||
|
{
|
||||||
|
GOTO_TB(op_goto_tb1, PARAM1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
PPC_OP(b_T1)
|
PPC_OP(b_T1)
|
||||||
@ -461,13 +466,10 @@ PPC_OP(b_T1)
|
|||||||
regs->nip = T1 & ~3;
|
regs->nip = T1 & ~3;
|
||||||
}
|
}
|
||||||
|
|
||||||
PPC_OP(btest)
|
PPC_OP(jz_T0)
|
||||||
{
|
{
|
||||||
if (T0) {
|
if (!T0)
|
||||||
JUMP_TB(btest, PARAM1, 0, PARAM2);
|
GOTO_LABEL_PARAM(1);
|
||||||
} else {
|
|
||||||
JUMP_TB(btest, PARAM1, 1, PARAM3);
|
|
||||||
}
|
|
||||||
RETURN();
|
RETURN();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,12 @@
|
|||||||
//#define DO_SINGLE_STEP
|
//#define DO_SINGLE_STEP
|
||||||
//#define PPC_DEBUG_DISAS
|
//#define PPC_DEBUG_DISAS
|
||||||
|
|
||||||
|
#ifdef USE_DIRECT_JUMP
|
||||||
|
#define TBPARAM(x)
|
||||||
|
#else
|
||||||
|
#define TBPARAM(x) (long)(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
#define DEF(s, n, copy_size) INDEX_op_ ## s,
|
#define DEF(s, n, copy_size) INDEX_op_ ## s,
|
||||||
#include "opc.h"
|
#include "opc.h"
|
||||||
@ -1721,6 +1727,18 @@ GEN_HANDLER(stfiwx, 0x1F, 0x17, 0x1E, 0x00000001, PPC_FLOAT)
|
|||||||
|
|
||||||
/*** Branch ***/
|
/*** Branch ***/
|
||||||
|
|
||||||
|
static inline void gen_jmp_tb(long tb, int n, uint32_t dest)
|
||||||
|
{
|
||||||
|
if (n == 0)
|
||||||
|
gen_op_goto_tb0(TBPARAM(tb));
|
||||||
|
else
|
||||||
|
gen_op_goto_tb1(TBPARAM(tb));
|
||||||
|
gen_op_set_T1(dest);
|
||||||
|
gen_op_b_T1();
|
||||||
|
gen_op_set_T0(tb + n);
|
||||||
|
gen_op_exit_tb();
|
||||||
|
}
|
||||||
|
|
||||||
/* b ba bl bla */
|
/* b ba bl bla */
|
||||||
GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
|
GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
|
||||||
{
|
{
|
||||||
@ -1736,7 +1754,7 @@ GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
|
|||||||
if (LK(ctx->opcode)) {
|
if (LK(ctx->opcode)) {
|
||||||
gen_op_setlr(ctx->nip);
|
gen_op_setlr(ctx->nip);
|
||||||
}
|
}
|
||||||
gen_op_b((long)ctx->tb, target);
|
gen_jmp_tb((long)ctx->tb, 0, target);
|
||||||
ctx->exception = EXCP_BRANCH;
|
ctx->exception = EXCP_BRANCH;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1787,7 +1805,7 @@ static inline void gen_bcond(DisasContext *ctx, int type)
|
|||||||
case 4:
|
case 4:
|
||||||
case 6:
|
case 6:
|
||||||
if (type == BCOND_IM) {
|
if (type == BCOND_IM) {
|
||||||
gen_op_b((long)ctx->tb, target);
|
gen_jmp_tb((long)ctx->tb, 0, target);
|
||||||
} else {
|
} else {
|
||||||
gen_op_b_T1();
|
gen_op_b_T1();
|
||||||
}
|
}
|
||||||
@ -1827,7 +1845,11 @@ static inline void gen_bcond(DisasContext *ctx, int type)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (type == BCOND_IM) {
|
if (type == BCOND_IM) {
|
||||||
gen_op_btest((long)ctx->tb, target, ctx->nip);
|
int l1 = gen_new_label();
|
||||||
|
gen_op_jz_T0(l1);
|
||||||
|
gen_jmp_tb((long)ctx->tb, 0, target);
|
||||||
|
gen_set_label(l1);
|
||||||
|
gen_jmp_tb((long)ctx->tb, 1, ctx->nip);
|
||||||
} else {
|
} else {
|
||||||
gen_op_btest_T1(ctx->nip);
|
gen_op_btest_T1(ctx->nip);
|
||||||
}
|
}
|
||||||
@ -2459,6 +2481,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
|
|||||||
gen_opc_ptr = gen_opc_buf;
|
gen_opc_ptr = gen_opc_buf;
|
||||||
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
|
gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
|
||||||
gen_opparam_ptr = gen_opparam_buf;
|
gen_opparam_ptr = gen_opparam_buf;
|
||||||
|
nb_gen_labels = 0;
|
||||||
ctx.nip = pc_start;
|
ctx.nip = pc_start;
|
||||||
ctx.tb = tb;
|
ctx.tb = tb;
|
||||||
ctx.exception = EXCP_NONE;
|
ctx.exception = EXCP_NONE;
|
||||||
@ -2575,7 +2598,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (ctx.exception == EXCP_NONE) {
|
if (ctx.exception == EXCP_NONE) {
|
||||||
gen_op_b((unsigned long)ctx.tb, ctx.nip);
|
gen_jmp_tb((long)ctx.tb, 0, ctx.nip);
|
||||||
} else if (ctx.exception != EXCP_BRANCH) {
|
} else if (ctx.exception != EXCP_BRANCH) {
|
||||||
gen_op_set_T0(0);
|
gen_op_set_T0(0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user