42 |
|
|
43 |
|
#include <stdio.h> |
44 |
|
#include <stdlib.h> |
45 |
+ |
#ifdef HAVE_MALLOC_H |
46 |
+ |
#include <malloc.h> |
47 |
+ |
#endif |
48 |
+ |
|
49 |
+ |
#ifdef USE_SDL_VIDEO |
50 |
+ |
#include <SDL_events.h> |
51 |
+ |
#endif |
52 |
|
|
53 |
|
#if ENABLE_MON |
54 |
|
#include "mon.h" |
59 |
|
#include "debug.h" |
60 |
|
|
61 |
|
// Emulation time statistics |
62 |
< |
#define EMUL_TIME_STATS 1 |
62 |
> |
#ifndef EMUL_TIME_STATS |
63 |
> |
#define EMUL_TIME_STATS 0 |
64 |
> |
#endif |
65 |
|
|
66 |
|
#if EMUL_TIME_STATS |
67 |
|
static clock_t emul_start_time; |
68 |
< |
static uint32 interrupt_count = 0; |
68 |
> |
static uint32 interrupt_count = 0, ppc_interrupt_count = 0; |
69 |
|
static clock_t interrupt_time = 0; |
70 |
|
static uint32 exec68k_count = 0; |
71 |
|
static clock_t exec68k_time = 0; |
93 |
|
// PowerPC EmulOp to exit from emulation looop |
94 |
|
const uint32 POWERPC_EXEC_RETURN = POWERPC_EMUL_OP | 1; |
95 |
|
|
87 |
– |
// Enable multicore (main/interrupts) cpu emulation? |
88 |
– |
#define MULTICORE_CPU (ASYNC_IRQ ? 1 : 0) |
89 |
– |
|
96 |
|
// Enable interrupt routine safety checks? |
97 |
|
#define SAFE_INTERRUPT_PPC 1 |
98 |
|
|
108 |
|
// Interrupts in native mode? |
109 |
|
#define INTERRUPTS_IN_NATIVE_MODE 1 |
110 |
|
|
105 |
– |
// Enable native EMUL_OPs to be run without a mode switch |
106 |
– |
#define ENABLE_NATIVE_EMUL_OP 1 |
107 |
– |
|
111 |
|
// Pointer to Kernel Data |
112 |
< |
static KernelData * const kernel_data = (KernelData *)KERNEL_DATA_BASE; |
112 |
> |
static KernelData * kernel_data; |
113 |
|
|
114 |
|
// SIGSEGV handler |
115 |
< |
static sigsegv_return_t sigsegv_handler(sigsegv_address_t, sigsegv_address_t); |
115 |
> |
sigsegv_return_t sigsegv_handler(sigsegv_address_t, sigsegv_address_t); |
116 |
|
|
117 |
|
#if PPC_ENABLE_JIT && PPC_REENTRANT_JIT |
118 |
|
// Special trampolines for EmulOp and NativeOp |
142 |
|
void init_decoder(); |
143 |
|
void execute_sheep(uint32 opcode); |
144 |
|
|
142 |
– |
// Filter out EMUL_OP routines that only call native code |
143 |
– |
bool filter_execute_emul_op(uint32 emul_op); |
144 |
– |
|
145 |
– |
// "Native" EMUL_OP routines |
146 |
– |
void execute_emul_op_microseconds(); |
147 |
– |
void execute_emul_op_idle_time_1(); |
148 |
– |
void execute_emul_op_idle_time_2(); |
149 |
– |
|
145 |
|
// CPU context to preserve on interrupt |
146 |
|
class interrupt_context { |
147 |
|
uint32 gpr[32]; |
183 |
|
// Execute MacOS/PPC code |
184 |
|
uint32 execute_macos_code(uint32 tvect, int nargs, uint32 const *args); |
185 |
|
|
186 |
+ |
#if PPC_ENABLE_JIT |
187 |
|
// Compile one instruction |
188 |
|
virtual int compile1(codegen_context_t & cg_context); |
189 |
< |
|
189 |
> |
#endif |
190 |
|
// Resource manager thunk |
191 |
|
void get_resource(uint32 old_get_resource); |
192 |
|
|
196 |
|
|
197 |
|
// Make sure the SIGSEGV handler can access CPU registers |
198 |
|
friend sigsegv_return_t sigsegv_handler(sigsegv_address_t, sigsegv_address_t); |
199 |
+ |
|
200 |
+ |
// Memory allocator returning areas aligned on 16-byte boundaries |
201 |
+ |
void *operator new(size_t size); |
202 |
+ |
void operator delete(void *p); |
203 |
|
}; |
204 |
|
|
205 |
|
// Memory allocator returning areas aligned on 16-byte boundaries |
206 |
< |
void *operator new(size_t size) |
206 |
> |
void *sheepshaver_cpu::operator new(size_t size) |
207 |
|
{ |
208 |
|
void *p; |
209 |
|
|
222 |
|
return p; |
223 |
|
} |
224 |
|
|
225 |
< |
void operator delete(void *p) |
225 |
> |
void sheepshaver_cpu::operator delete(void *p) |
226 |
|
{ |
227 |
|
#if defined(HAVE_MEMALIGN) || defined(HAVE_VALLOC) |
228 |
|
#if defined(__GLIBC__) |
271 |
|
typedef bit_field< 20, 25 > NATIVE_OP_field; |
272 |
|
typedef bit_field< 26, 31 > EMUL_OP_field; |
273 |
|
|
274 |
– |
// "Native" EMUL_OP routines |
275 |
– |
#define GPR_A(REG) gpr(16 + (REG)) |
276 |
– |
#define GPR_D(REG) gpr( 8 + (REG)) |
277 |
– |
|
278 |
– |
void sheepshaver_cpu::execute_emul_op_microseconds() |
279 |
– |
{ |
280 |
– |
Microseconds(GPR_A(0), GPR_D(0)); |
281 |
– |
} |
282 |
– |
|
283 |
– |
void sheepshaver_cpu::execute_emul_op_idle_time_1() |
284 |
– |
{ |
285 |
– |
// Sleep if no events pending |
286 |
– |
if (ReadMacInt32(0x14c) == 0) |
287 |
– |
Delay_usec(16667); |
288 |
– |
GPR_A(0) = ReadMacInt32(0x2b6); |
289 |
– |
} |
290 |
– |
|
291 |
– |
void sheepshaver_cpu::execute_emul_op_idle_time_2() |
292 |
– |
{ |
293 |
– |
// Sleep if no events pending |
294 |
– |
if (ReadMacInt32(0x14c) == 0) |
295 |
– |
Delay_usec(16667); |
296 |
– |
GPR_D(0) = (uint32)-2; |
297 |
– |
} |
298 |
– |
|
299 |
– |
// Filter out EMUL_OP routines that only call native code |
300 |
– |
bool sheepshaver_cpu::filter_execute_emul_op(uint32 emul_op) |
301 |
– |
{ |
302 |
– |
switch (emul_op) { |
303 |
– |
case OP_MICROSECONDS: |
304 |
– |
execute_emul_op_microseconds(); |
305 |
– |
return true; |
306 |
– |
case OP_IDLE_TIME: |
307 |
– |
execute_emul_op_idle_time_1(); |
308 |
– |
return true; |
309 |
– |
case OP_IDLE_TIME_2: |
310 |
– |
execute_emul_op_idle_time_2(); |
311 |
– |
return true; |
312 |
– |
} |
313 |
– |
return false; |
314 |
– |
} |
315 |
– |
|
274 |
|
// Execute EMUL_OP routine |
275 |
|
void sheepshaver_cpu::execute_emul_op(uint32 emul_op) |
276 |
|
{ |
319 |
– |
#if ENABLE_NATIVE_EMUL_OP |
320 |
– |
// First, filter out EMUL_OPs that can be executed without a mode switch |
321 |
– |
if (filter_execute_emul_op(emul_op)) |
322 |
– |
return; |
323 |
– |
#endif |
324 |
– |
|
277 |
|
M68kRegisters r68; |
278 |
|
WriteMacInt32(XLM_68K_R25, gpr(25)); |
279 |
|
WriteMacInt32(XLM_RUN_MODE, MODE_EMUL_OP); |
326 |
|
} |
327 |
|
|
328 |
|
// Compile one instruction |
329 |
+ |
#if PPC_ENABLE_JIT |
330 |
|
int sheepshaver_cpu::compile1(codegen_context_t & cg_context) |
331 |
|
{ |
379 |
– |
#if PPC_ENABLE_JIT |
332 |
|
const instr_info_t *ii = cg_context.instr_info; |
333 |
|
if (ii->mnemo != PPC_I(SHEEP)) |
334 |
|
return COMPILE_FAILURE; |
399 |
|
status = COMPILE_CODE_OK; |
400 |
|
break; |
401 |
|
#endif |
450 |
– |
case NATIVE_DISABLE_INTERRUPT: |
451 |
– |
dg.gen_invoke(DisableInterrupt); |
452 |
– |
status = COMPILE_CODE_OK; |
453 |
– |
break; |
454 |
– |
case NATIVE_ENABLE_INTERRUPT: |
455 |
– |
dg.gen_invoke(EnableInterrupt); |
456 |
– |
status = COMPILE_CODE_OK; |
457 |
– |
break; |
402 |
|
case NATIVE_BITBLT: |
403 |
|
dg.gen_load_T0_GPR(3); |
404 |
|
dg.gen_invoke_T0((void (*)(uint32))NQD_bitblt); |
416 |
|
break; |
417 |
|
} |
418 |
|
// Could we fully translate this NativeOp? |
419 |
< |
if (FN_field::test(opcode)) { |
420 |
< |
if (status != COMPILE_FAILURE) { |
419 |
> |
if (status == COMPILE_CODE_OK) { |
420 |
> |
if (!FN_field::test(opcode)) |
421 |
> |
cg_context.done_compile = false; |
422 |
> |
else { |
423 |
|
dg.gen_load_A0_LR(); |
424 |
|
dg.gen_set_PC_A0(); |
425 |
+ |
cg_context.done_compile = true; |
426 |
|
} |
480 |
– |
cg_context.done_compile = true; |
481 |
– |
break; |
482 |
– |
} |
483 |
– |
else if (status != COMPILE_FAILURE) { |
484 |
– |
cg_context.done_compile = false; |
427 |
|
break; |
428 |
|
} |
429 |
|
#if PPC_REENTRANT_JIT |
430 |
|
// Try to execute NativeOp trampoline |
431 |
< |
dg.gen_set_PC_im(cg_context.pc + 4); |
431 |
> |
if (!FN_field::test(opcode)) |
432 |
> |
dg.gen_set_PC_im(cg_context.pc + 4); |
433 |
> |
else { |
434 |
> |
dg.gen_load_A0_LR(); |
435 |
> |
dg.gen_set_PC_A0(); |
436 |
> |
} |
437 |
|
dg.gen_mov_32_T0_im(selector); |
438 |
|
dg.gen_jmp(native_op_trampoline); |
439 |
|
cg_context.done_compile = true; |
441 |
|
break; |
442 |
|
#endif |
443 |
|
// Invoke NativeOp handler |
444 |
< |
typedef void (*func_t)(dyngen_cpu_base, uint32); |
445 |
< |
func_t func = (func_t)nv_mem_fun(&sheepshaver_cpu::execute_native_op).ptr(); |
446 |
< |
dg.gen_invoke_CPU_im(func, selector); |
447 |
< |
cg_context.done_compile = false; |
448 |
< |
status = COMPILE_CODE_OK; |
444 |
> |
if (!FN_field::test(opcode)) { |
445 |
> |
typedef void (*func_t)(dyngen_cpu_base, uint32); |
446 |
> |
func_t func = (func_t)nv_mem_fun(&sheepshaver_cpu::execute_native_op).ptr(); |
447 |
> |
dg.gen_invoke_CPU_im(func, selector); |
448 |
> |
cg_context.done_compile = false; |
449 |
> |
status = COMPILE_CODE_OK; |
450 |
> |
} |
451 |
> |
// Otherwise, let it generate a call to execute_sheep() which |
452 |
> |
// will cause necessary updates to the program counter |
453 |
|
break; |
454 |
|
} |
455 |
|
|
456 |
|
default: { // EMUL_OP |
457 |
|
uint32 emul_op = EMUL_OP_field::extract(opcode) - 3; |
507 |
– |
#if ENABLE_NATIVE_EMUL_OP |
508 |
– |
typedef void (*emul_op_func_t)(dyngen_cpu_base); |
509 |
– |
emul_op_func_t emul_op_func = 0; |
510 |
– |
switch (emul_op) { |
511 |
– |
case OP_MICROSECONDS: |
512 |
– |
emul_op_func = (emul_op_func_t)nv_mem_fun(&sheepshaver_cpu::execute_emul_op_microseconds).ptr(); |
513 |
– |
break; |
514 |
– |
case OP_IDLE_TIME: |
515 |
– |
emul_op_func = (emul_op_func_t)nv_mem_fun(&sheepshaver_cpu::execute_emul_op_idle_time_1).ptr(); |
516 |
– |
break; |
517 |
– |
case OP_IDLE_TIME_2: |
518 |
– |
emul_op_func = (emul_op_func_t)nv_mem_fun(&sheepshaver_cpu::execute_emul_op_idle_time_2).ptr(); |
519 |
– |
break; |
520 |
– |
} |
521 |
– |
if (emul_op_func) { |
522 |
– |
dg.gen_invoke_CPU(emul_op_func); |
523 |
– |
cg_context.done_compile = false; |
524 |
– |
status = COMPILE_CODE_OK; |
525 |
– |
break; |
526 |
– |
} |
527 |
– |
#endif |
458 |
|
#if PPC_REENTRANT_JIT |
459 |
|
// Try to execute EmulOp trampoline |
460 |
|
dg.gen_set_PC_im(cg_context.pc + 4); |
474 |
|
} |
475 |
|
} |
476 |
|
return status; |
547 |
– |
#endif |
548 |
– |
return COMPILE_FAILURE; |
477 |
|
} |
478 |
+ |
#endif |
479 |
|
|
480 |
|
// CPU context to preserve on interrupt |
481 |
|
sheepshaver_cpu::interrupt_context::interrupt_context(sheepshaver_cpu *_cpu, const char *_where) |
521 |
|
void sheepshaver_cpu::interrupt(uint32 entry) |
522 |
|
{ |
523 |
|
#if EMUL_TIME_STATS |
524 |
< |
interrupt_count++; |
524 |
> |
ppc_interrupt_count++; |
525 |
|
const clock_t interrupt_start = clock(); |
526 |
|
#endif |
527 |
|
|
532 |
|
depth++; |
533 |
|
#endif |
534 |
|
|
606 |
– |
#if !MULTICORE_CPU |
535 |
|
// Save program counters and branch registers |
536 |
|
uint32 saved_pc = pc(); |
537 |
|
uint32 saved_lr = lr(); |
538 |
|
uint32 saved_ctr= ctr(); |
539 |
|
uint32 saved_sp = gpr(1); |
612 |
– |
#endif |
540 |
|
|
541 |
|
// Initialize stack pointer to SheepShaver alternate stack base |
542 |
|
gpr(1) = SignalStackBase() - 64; |
576 |
|
// Enter nanokernel |
577 |
|
execute(entry); |
578 |
|
|
652 |
– |
#if !MULTICORE_CPU |
579 |
|
// Restore program counters and branch registers |
580 |
|
pc() = saved_pc; |
581 |
|
lr() = saved_lr; |
582 |
|
ctr()= saved_ctr; |
583 |
|
gpr(1) = saved_sp; |
658 |
– |
#endif |
584 |
|
|
585 |
|
#if EMUL_TIME_STATS |
586 |
|
interrupt_time += (clock() - interrupt_start); |
782 |
|
* SheepShaver CPU engine interface |
783 |
|
**/ |
784 |
|
|
785 |
< |
static sheepshaver_cpu *main_cpu = NULL; // CPU emulator to handle usual control flow |
786 |
< |
static sheepshaver_cpu *interrupt_cpu = NULL; // CPU emulator to handle interrupts |
862 |
< |
static sheepshaver_cpu *current_cpu = NULL; // Current CPU emulator context |
785 |
> |
// PowerPC CPU emulator |
786 |
> |
static sheepshaver_cpu *ppc_cpu = NULL; |
787 |
|
|
788 |
|
void FlushCodeCache(uintptr start, uintptr end) |
789 |
|
{ |
790 |
|
D(bug("FlushCodeCache(%08x, %08x)\n", start, end)); |
791 |
< |
main_cpu->invalidate_cache_range(start, end); |
868 |
< |
#if MULTICORE_CPU |
869 |
< |
interrupt_cpu->invalidate_cache_range(start, end); |
870 |
< |
#endif |
871 |
< |
} |
872 |
< |
|
873 |
< |
static inline void cpu_push(sheepshaver_cpu *new_cpu) |
874 |
< |
{ |
875 |
< |
#if MULTICORE_CPU |
876 |
< |
current_cpu = new_cpu; |
877 |
< |
#endif |
878 |
< |
} |
879 |
< |
|
880 |
< |
static inline void cpu_pop() |
881 |
< |
{ |
882 |
< |
#if MULTICORE_CPU |
883 |
< |
current_cpu = main_cpu; |
884 |
< |
#endif |
791 |
> |
ppc_cpu->invalidate_cache_range(start, end); |
792 |
|
} |
793 |
|
|
794 |
|
// Dump PPC registers |
795 |
|
static void dump_registers(void) |
796 |
|
{ |
797 |
< |
current_cpu->dump_registers(); |
797 |
> |
ppc_cpu->dump_registers(); |
798 |
|
} |
799 |
|
|
800 |
|
// Dump log |
801 |
|
static void dump_log(void) |
802 |
|
{ |
803 |
< |
current_cpu->dump_log(); |
803 |
> |
ppc_cpu->dump_log(); |
804 |
|
} |
805 |
|
|
806 |
|
/* |
807 |
|
* Initialize CPU emulation |
808 |
|
*/ |
809 |
|
|
810 |
< |
static sigsegv_return_t sigsegv_handler(sigsegv_address_t fault_address, sigsegv_address_t fault_instruction) |
810 |
> |
sigsegv_return_t sigsegv_handler(sigsegv_address_t fault_address, sigsegv_address_t fault_instruction) |
811 |
|
{ |
812 |
|
#if ENABLE_VOSF |
813 |
|
// Handle screen fault |
819 |
|
const uintptr addr = (uintptr)fault_address; |
820 |
|
#if HAVE_SIGSEGV_SKIP_INSTRUCTION |
821 |
|
// Ignore writes to ROM |
822 |
< |
if ((addr - ROM_BASE) < ROM_SIZE) |
822 |
> |
if ((addr - (uintptr)ROMBaseHost) < ROM_SIZE) |
823 |
|
return SIGSEGV_RETURN_SKIP_INSTRUCTION; |
824 |
|
|
825 |
|
// Get program counter of target CPU |
826 |
< |
sheepshaver_cpu * const cpu = current_cpu; |
826 |
> |
sheepshaver_cpu * const cpu = ppc_cpu; |
827 |
|
const uint32 pc = cpu->pc(); |
828 |
|
|
829 |
|
// Fault in Mac ROM or RAM? |
830 |
< |
bool mac_fault = (pc >= ROM_BASE) && (pc < (ROM_BASE + ROM_AREA_SIZE)) || (pc >= RAMBase) && (pc < (RAMBase + RAMSize)); |
830 |
> |
bool mac_fault = (pc >= ROM_BASE) && (pc < (ROM_BASE + ROM_AREA_SIZE)) || (pc >= RAMBase) && (pc < (RAMBase + RAMSize)) || (pc >= DR_CACHE_BASE && pc < (DR_CACHE_BASE + DR_CACHE_SIZE)); |
831 |
|
if (mac_fault) { |
832 |
|
|
833 |
|
// "VM settings" during MacOS 8 installation |
847 |
|
return SIGSEGV_RETURN_SKIP_INSTRUCTION; |
848 |
|
else if (pc == ROM_BASE + 0x4a10a0 && (cpu->gpr(20) == 0xf3012002 || cpu->gpr(20) == 0xf3012000)) |
849 |
|
return SIGSEGV_RETURN_SKIP_INSTRUCTION; |
850 |
+ |
|
851 |
+ |
// MacOS 8.6 serial drivers on startup (with DR Cache and OldWorld ROM) |
852 |
+ |
else if ((pc - DR_CACHE_BASE) < DR_CACHE_SIZE && (cpu->gpr(16) == 0xf3012002 || cpu->gpr(16) == 0xf3012000)) |
853 |
+ |
return SIGSEGV_RETURN_SKIP_INSTRUCTION; |
854 |
+ |
else if ((pc - DR_CACHE_BASE) < DR_CACHE_SIZE && (cpu->gpr(20) == 0xf3012002 || cpu->gpr(20) == 0xf3012000)) |
855 |
+ |
return SIGSEGV_RETURN_SKIP_INSTRUCTION; |
856 |
|
|
857 |
|
// Ignore writes to the zero page |
858 |
|
else if ((uint32)(addr - SheepMem::ZeroPage()) < (uint32)SheepMem::PageSize()) |
869 |
|
printf("SIGSEGV\n"); |
870 |
|
printf(" pc %p\n", fault_instruction); |
871 |
|
printf(" ea %p\n", fault_address); |
959 |
– |
printf(" cpu %s\n", current_cpu == main_cpu ? "main" : "interrupts"); |
872 |
|
dump_registers(); |
873 |
< |
current_cpu->dump_log(); |
873 |
> |
ppc_cpu->dump_log(); |
874 |
|
enter_mon(); |
875 |
|
QuitEmulator(); |
876 |
|
|
879 |
|
|
880 |
|
void init_emul_ppc(void) |
881 |
|
{ |
882 |
+ |
// Get pointer to KernelData in host address space |
883 |
+ |
kernel_data = (KernelData *)Mac2HostAddr(KERNEL_DATA_BASE); |
884 |
+ |
|
885 |
|
// Initialize main CPU emulator |
886 |
< |
main_cpu = new sheepshaver_cpu(); |
887 |
< |
main_cpu->set_register(powerpc_registers::GPR(3), any_register((uint32)ROM_BASE + 0x30d000)); |
888 |
< |
main_cpu->set_register(powerpc_registers::GPR(4), any_register(KernelDataAddr + 0x1000)); |
886 |
> |
ppc_cpu = new sheepshaver_cpu(); |
887 |
> |
ppc_cpu->set_register(powerpc_registers::GPR(3), any_register((uint32)ROM_BASE + 0x30d000)); |
888 |
> |
ppc_cpu->set_register(powerpc_registers::GPR(4), any_register(KernelDataAddr + 0x1000)); |
889 |
|
WriteMacInt32(XLM_RUN_MODE, MODE_68K); |
890 |
|
|
976 |
– |
#if MULTICORE_CPU |
977 |
– |
// Initialize alternate CPU emulator to handle interrupts |
978 |
– |
interrupt_cpu = new sheepshaver_cpu(); |
979 |
– |
#endif |
980 |
– |
|
981 |
– |
// Install the handler for SIGSEGV |
982 |
– |
sigsegv_install_handler(sigsegv_handler); |
983 |
– |
|
891 |
|
#if ENABLE_MON |
892 |
|
// Install "regs" command in cxmon |
893 |
|
mon_add_command("regs", dump_registers, "regs Dump PowerPC registers\n"); |
913 |
|
printf("Total emulation time : %.1f sec\n", double(emul_time) / double(CLOCKS_PER_SEC)); |
914 |
|
printf("Total interrupt count: %d (%2.1f Hz)\n", interrupt_count, |
915 |
|
(double(interrupt_count) * CLOCKS_PER_SEC) / double(emul_time)); |
916 |
+ |
printf("Total ppc interrupt count: %d (%2.1f %%)\n", ppc_interrupt_count, |
917 |
+ |
(double(ppc_interrupt_count) * 100.0) / double(interrupt_count)); |
918 |
|
|
919 |
|
#define PRINT_STATS(LABEL, VAR_PREFIX) do { \ |
920 |
|
printf("Total " LABEL " count : %d\n", VAR_PREFIX##_count); \ |
931 |
|
printf("\n"); |
932 |
|
#endif |
933 |
|
|
934 |
< |
delete main_cpu; |
1026 |
< |
#if MULTICORE_CPU |
1027 |
< |
delete interrupt_cpu; |
1028 |
< |
#endif |
934 |
> |
delete ppc_cpu; |
935 |
|
} |
936 |
|
|
937 |
|
#if PPC_ENABLE_JIT && PPC_REENTRANT_JIT |
966 |
|
|
967 |
|
void emul_ppc(uint32 entry) |
968 |
|
{ |
1063 |
– |
current_cpu = main_cpu; |
969 |
|
#if 0 |
970 |
< |
current_cpu->start_log(); |
970 |
> |
ppc_cpu->start_log(); |
971 |
|
#endif |
972 |
|
// start emulation loop and enable code translation or caching |
973 |
< |
current_cpu->execute(entry); |
973 |
> |
ppc_cpu->execute(entry); |
974 |
|
} |
975 |
|
|
976 |
|
/* |
977 |
|
* Handle PowerPC interrupt |
978 |
|
*/ |
979 |
|
|
1075 |
– |
#if ASYNC_IRQ |
1076 |
– |
void HandleInterrupt(void) |
1077 |
– |
{ |
1078 |
– |
main_cpu->handle_interrupt(); |
1079 |
– |
} |
1080 |
– |
#else |
980 |
|
void TriggerInterrupt(void) |
981 |
|
{ |
982 |
|
#if 0 |
983 |
|
WriteMacInt32(0x16a, ReadMacInt32(0x16a) + 1); |
984 |
|
#else |
985 |
|
// Trigger interrupt to main cpu only |
986 |
< |
if (main_cpu) |
987 |
< |
main_cpu->trigger_interrupt(); |
986 |
> |
if (ppc_cpu) |
987 |
> |
ppc_cpu->trigger_interrupt(); |
988 |
|
#endif |
989 |
|
} |
1091 |
– |
#endif |
990 |
|
|
991 |
|
void sheepshaver_cpu::handle_interrupt(void) |
992 |
|
{ |
993 |
< |
// Do nothing if interrupts are disabled |
994 |
< |
if (*(int32 *)XLM_IRQ_NEST > 0) |
995 |
< |
return; |
993 |
> |
#ifdef USE_SDL_VIDEO |
994 |
> |
// We must fill in the events queue in the same thread that did call SDL_SetVideoMode() |
995 |
> |
SDL_PumpEvents(); |
996 |
> |
#endif |
997 |
|
|
998 |
< |
// Do nothing if there is no interrupt pending |
999 |
< |
if (InterruptFlags == 0) |
998 |
> |
// Do nothing if interrupts are disabled |
999 |
> |
if (int32(ReadMacInt32(XLM_IRQ_NEST)) > 0) |
1000 |
|
return; |
1001 |
|
|
1002 |
|
// Current interrupt nest level |
1003 |
|
static int interrupt_depth = 0; |
1004 |
|
++interrupt_depth; |
1005 |
+ |
#if EMUL_TIME_STATS |
1006 |
+ |
interrupt_count++; |
1007 |
+ |
#endif |
1008 |
|
|
1009 |
|
// Disable MacOS stack sniffer |
1010 |
|
WriteMacInt32(0x110, 0); |
1013 |
|
switch (ReadMacInt32(XLM_RUN_MODE)) { |
1014 |
|
case MODE_68K: |
1015 |
|
// 68k emulator active, trigger 68k interrupt level 1 |
1114 |
– |
assert(current_cpu == main_cpu); |
1016 |
|
WriteMacInt16(tswap32(kernel_data->v[0x67c >> 2]), 1); |
1017 |
|
set_cr(get_cr() | tswap32(kernel_data->v[0x674 >> 2])); |
1018 |
|
break; |
1020 |
|
#if INTERRUPTS_IN_NATIVE_MODE |
1021 |
|
case MODE_NATIVE: |
1022 |
|
// 68k emulator inactive, in nanokernel? |
1122 |
– |
assert(current_cpu == main_cpu); |
1023 |
|
if (gpr(1) != KernelDataAddr && interrupt_depth == 1) { |
1024 |
|
interrupt_context ctx(this, "PowerPC mode"); |
1025 |
|
|
1031 |
|
|
1032 |
|
// Execute nanokernel interrupt routine (this will activate the 68k emulator) |
1033 |
|
DisableInterrupt(); |
1134 |
– |
cpu_push(interrupt_cpu); |
1034 |
|
if (ROMType == ROMTYPE_NEWWORLD) |
1035 |
< |
current_cpu->interrupt(ROM_BASE + 0x312b1c); |
1035 |
> |
ppc_cpu->interrupt(ROM_BASE + 0x312b1c); |
1036 |
|
else |
1037 |
< |
current_cpu->interrupt(ROM_BASE + 0x312a3c); |
1139 |
< |
cpu_pop(); |
1037 |
> |
ppc_cpu->interrupt(ROM_BASE + 0x312a3c); |
1038 |
|
} |
1039 |
|
break; |
1040 |
|
#endif |
1044 |
|
// 68k emulator active, within EMUL_OP routine, execute 68k interrupt routine directly when interrupt level is 0 |
1045 |
|
if ((ReadMacInt32(XLM_68K_R25) & 7) == 0) { |
1046 |
|
interrupt_context ctx(this, "68k mode"); |
1047 |
+ |
#if EMUL_TIME_STATS |
1048 |
+ |
const clock_t interrupt_start = clock(); |
1049 |
+ |
#endif |
1050 |
|
#if 1 |
1051 |
|
// Execute full 68k interrupt routine |
1052 |
|
M68kRegisters r; |
1053 |
|
uint32 old_r25 = ReadMacInt32(XLM_68K_R25); // Save interrupt level |
1054 |
|
WriteMacInt32(XLM_68K_R25, 0x21); // Execute with interrupt level 1 |
1055 |
< |
static const uint8 proc[] = { |
1055 |
> |
static const uint8 proc_template[] = { |
1056 |
|
0x3f, 0x3c, 0x00, 0x00, // move.w #$0000,-(sp) (fake format word) |
1057 |
|
0x48, 0x7a, 0x00, 0x0a, // pea @1(pc) (return address) |
1058 |
|
0x40, 0xe7, // move sr,-(sp) (saved SR) |
1060 |
|
0x4e, 0xd0, // jmp (a0) |
1061 |
|
M68K_RTS >> 8, M68K_RTS & 0xff // @1 |
1062 |
|
}; |
1063 |
< |
Execute68k((uint32)proc, &r); |
1063 |
> |
BUILD_SHEEPSHAVER_PROCEDURE(proc); |
1064 |
> |
Execute68k(proc, &r); |
1065 |
|
WriteMacInt32(XLM_68K_R25, old_r25); // Restore interrupt level |
1066 |
|
#else |
1067 |
|
// Only update cursor |
1073 |
|
} |
1074 |
|
} |
1075 |
|
#endif |
1076 |
+ |
#if EMUL_TIME_STATS |
1077 |
+ |
interrupt_time += (clock() - interrupt_start); |
1078 |
+ |
#endif |
1079 |
|
} |
1080 |
|
break; |
1081 |
|
#endif |
1110 |
|
VideoVBL(); |
1111 |
|
break; |
1112 |
|
case NATIVE_VIDEO_DO_DRIVER_IO: |
1113 |
< |
gpr(3) = (int32)(int16)VideoDoDriverIO((void *)gpr(3), (void *)gpr(4), |
1209 |
< |
(void *)gpr(5), gpr(6), gpr(7)); |
1113 |
> |
gpr(3) = (int32)(int16)VideoDoDriverIO(gpr(3), gpr(4), gpr(5), gpr(6), gpr(7)); |
1114 |
|
break; |
1211 |
– |
#ifdef WORDS_BIGENDIAN |
1115 |
|
case NATIVE_ETHER_IRQ: |
1116 |
|
EtherIRQ(); |
1117 |
|
break; |
1133 |
|
case NATIVE_ETHER_RSRV: |
1134 |
|
gpr(3) = ether_rsrv((queue_t *)gpr(3)); |
1135 |
|
break; |
1233 |
– |
#else |
1234 |
– |
case NATIVE_ETHER_INIT: |
1235 |
– |
// FIXME: needs more complicated thunks |
1236 |
– |
gpr(3) = false; |
1237 |
– |
break; |
1238 |
– |
#endif |
1136 |
|
case NATIVE_SYNC_HOOK: |
1137 |
|
gpr(3) = NQD_sync_hook(gpr(3)); |
1138 |
|
break; |
1187 |
|
get_resource_callbacks[selector - NATIVE_GET_RESOURCE](); |
1188 |
|
break; |
1189 |
|
} |
1293 |
– |
case NATIVE_DISABLE_INTERRUPT: |
1294 |
– |
DisableInterrupt(); |
1295 |
– |
break; |
1296 |
– |
case NATIVE_ENABLE_INTERRUPT: |
1297 |
– |
EnableInterrupt(); |
1298 |
– |
break; |
1190 |
|
case NATIVE_MAKE_EXECUTABLE: |
1191 |
< |
MakeExecutable(0, (void *)gpr(4), gpr(5)); |
1191 |
> |
MakeExecutable(0, gpr(4), gpr(5)); |
1192 |
|
break; |
1193 |
|
case NATIVE_CHECK_LOAD_INVOC: |
1194 |
|
check_load_invoc(gpr(3), gpr(4), gpr(5)); |
1212 |
|
|
1213 |
|
void Execute68k(uint32 pc, M68kRegisters *r) |
1214 |
|
{ |
1215 |
< |
current_cpu->execute_68k(pc, r); |
1215 |
> |
ppc_cpu->execute_68k(pc, r); |
1216 |
|
} |
1217 |
|
|
1218 |
|
/* |
1235 |
|
|
1236 |
|
uint32 call_macos(uint32 tvect) |
1237 |
|
{ |
1238 |
< |
return current_cpu->execute_macos_code(tvect, 0, NULL); |
1238 |
> |
return ppc_cpu->execute_macos_code(tvect, 0, NULL); |
1239 |
|
} |
1240 |
|
|
1241 |
|
uint32 call_macos1(uint32 tvect, uint32 arg1) |
1242 |
|
{ |
1243 |
|
const uint32 args[] = { arg1 }; |
1244 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1244 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1245 |
|
} |
1246 |
|
|
1247 |
|
uint32 call_macos2(uint32 tvect, uint32 arg1, uint32 arg2) |
1248 |
|
{ |
1249 |
|
const uint32 args[] = { arg1, arg2 }; |
1250 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1250 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1251 |
|
} |
1252 |
|
|
1253 |
|
uint32 call_macos3(uint32 tvect, uint32 arg1, uint32 arg2, uint32 arg3) |
1254 |
|
{ |
1255 |
|
const uint32 args[] = { arg1, arg2, arg3 }; |
1256 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1256 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1257 |
|
} |
1258 |
|
|
1259 |
|
uint32 call_macos4(uint32 tvect, uint32 arg1, uint32 arg2, uint32 arg3, uint32 arg4) |
1260 |
|
{ |
1261 |
|
const uint32 args[] = { arg1, arg2, arg3, arg4 }; |
1262 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1262 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1263 |
|
} |
1264 |
|
|
1265 |
|
uint32 call_macos5(uint32 tvect, uint32 arg1, uint32 arg2, uint32 arg3, uint32 arg4, uint32 arg5) |
1266 |
|
{ |
1267 |
|
const uint32 args[] = { arg1, arg2, arg3, arg4, arg5 }; |
1268 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1268 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1269 |
|
} |
1270 |
|
|
1271 |
|
uint32 call_macos6(uint32 tvect, uint32 arg1, uint32 arg2, uint32 arg3, uint32 arg4, uint32 arg5, uint32 arg6) |
1272 |
|
{ |
1273 |
|
const uint32 args[] = { arg1, arg2, arg3, arg4, arg5, arg6 }; |
1274 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1274 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1275 |
|
} |
1276 |
|
|
1277 |
|
uint32 call_macos7(uint32 tvect, uint32 arg1, uint32 arg2, uint32 arg3, uint32 arg4, uint32 arg5, uint32 arg6, uint32 arg7) |
1278 |
|
{ |
1279 |
|
const uint32 args[] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }; |
1280 |
< |
return current_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1280 |
> |
return ppc_cpu->execute_macos_code(tvect, sizeof(args)/sizeof(args[0]), args); |
1281 |
|
} |
1282 |
|
|
1283 |
|
/* |
1286 |
|
|
1287 |
|
void get_resource(void) |
1288 |
|
{ |
1289 |
< |
current_cpu->get_resource(ReadMacInt32(XLM_GET_RESOURCE)); |
1289 |
> |
ppc_cpu->get_resource(ReadMacInt32(XLM_GET_RESOURCE)); |
1290 |
|
} |
1291 |
|
|
1292 |
|
void get_1_resource(void) |
1293 |
|
{ |
1294 |
< |
current_cpu->get_resource(ReadMacInt32(XLM_GET_1_RESOURCE)); |
1294 |
> |
ppc_cpu->get_resource(ReadMacInt32(XLM_GET_1_RESOURCE)); |
1295 |
|
} |
1296 |
|
|
1297 |
|
void get_ind_resource(void) |
1298 |
|
{ |
1299 |
< |
current_cpu->get_resource(ReadMacInt32(XLM_GET_IND_RESOURCE)); |
1299 |
> |
ppc_cpu->get_resource(ReadMacInt32(XLM_GET_IND_RESOURCE)); |
1300 |
|
} |
1301 |
|
|
1302 |
|
void get_1_ind_resource(void) |
1303 |
|
{ |
1304 |
< |
current_cpu->get_resource(ReadMacInt32(XLM_GET_1_IND_RESOURCE)); |
1304 |
> |
ppc_cpu->get_resource(ReadMacInt32(XLM_GET_1_IND_RESOURCE)); |
1305 |
|
} |
1306 |
|
|
1307 |
|
void r_get_resource(void) |
1308 |
|
{ |
1309 |
< |
current_cpu->get_resource(ReadMacInt32(XLM_R_GET_RESOURCE)); |
1309 |
> |
ppc_cpu->get_resource(ReadMacInt32(XLM_R_GET_RESOURCE)); |
1310 |
|
} |