void genbc1fl_out(void) { #ifdef INTERPRET_BC1FL_OUT gencallinterp((unsigned int)BC1FL_OUT, 1); #else if (((dst->addr & 0xFFF) == 0xFFC && (dst->addr < 0x80000000 || dst->addr >= 0xC0000000))||no_compiled_jump) { gencallinterp((unsigned int)BC1FL_OUT, 1); return; } gencheck_cop1_unusable(); genbc1f_test(); free_all_registers(); gentestl_out(); #endif }
void genbc1f_idle(void) { #ifdef INTERPRET_BC1F_IDLE gencallinterp((unsigned int)BC1F_IDLE, 1); #else if (((dst->addr & 0xFFF) == 0xFFC && (dst->addr < 0x80000000 || dst->addr >= 0xC0000000))||no_compiled_jump) { gencallinterp((unsigned int)BC1F_IDLE, 1); return; } gencheck_cop1_unusable(); genbc1f_test(); gentest_idle(); genbc1f(); #endif }
void genbc1f_out() { #ifdef INTERPRET_BC1F_OUT gencallinterp((u32)BC1F_OUT, 1); #else if (((dst->addr & 0xFFF) == 0xFFC && (dst->addr < 0x80000000 || dst->addr >= 0xC0000000))||no_compiled_jump) { gencallinterp((u32)BC1F_OUT, 1); return; } gencheck_cop1_unusable(); genbc1f_test(); gendelayslot(); gentest_out(); #endif }
void genbc1f_idle(usf_state_t * state) { #ifdef INTERPRET_BC1F_IDLE gencallinterp(state, (unsigned long long)state->current_instruction_table.BC1F_IDLE, 1); #else if (((state->dst->addr & 0xFFF) == 0xFFC && (state->dst->addr < 0x80000000 || state->dst->addr >= 0xC0000000))||state->no_compiled_jump) { gencallinterp(state, (unsigned long long)state->current_instruction_table.BC1F_IDLE, 1); return; } gencheck_cop1_unusable(state); genbc1f_test(state); gentest_idle(state); genbc1f(state); #endif }
void genbc1f(void) { #ifdef INTERPRET_BC1F gencallinterp((native_type)cached_interpreter_table.BC1F, 1); #else if (((dst->addr & 0xFFF) == 0xFFC && (dst->addr < 0x80000000 || dst->addr >= 0xC0000000))||no_compiled_jump) { gencallinterp((native_type)cached_interpreter_table.BC1F, 1); return; } gencheck_cop1_unusable(); genbc1f_test(); gendelayslot(); gentest(); #endif }
void genbc1f_idle(void) { #ifdef INTERPRET_BC1F_IDLE gencallinterp((unsigned int)cached_interpreter_table.BC1F_IDLE, 1); #else if (((g_dev.r4300.recomp.dst->addr & 0xFFF) == 0xFFC && (g_dev.r4300.recomp.dst->addr < 0x80000000 || g_dev.r4300.recomp.dst->addr >= 0xC0000000))||g_dev.r4300.recomp.no_compiled_jump) { gencallinterp((unsigned int)cached_interpreter_table.BC1F_IDLE, 1); return; } gencheck_cop1_unusable(); genbc1f_test(); gentest_idle(); genbc1f(); #endif }
void genbc1f_out(usf_state_t * state) { #if defined(COUNT_INSTR) inc_m32rel(state, &state->instr_count[100]); #endif #ifdef INTERPRET_BC1F_OUT gencallinterp(state, (unsigned long long)state->current_instruction_table.BC1F_OUT, 1); #else if (((state->dst->addr & 0xFFF) == 0xFFC && (state->dst->addr < 0x80000000 || state->dst->addr >= 0xC0000000))||state->no_compiled_jump) { gencallinterp(state, (unsigned long long)state->current_instruction_table.BC1F_OUT, 1); return; } gencheck_cop1_unusable(state); genbc1f_test(state); gendelayslot(state); gentest_out(state); #endif }