ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp
(Generate patch)

Comparing SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp (file contents):
Revision 1.20 by gbeauche, 2003-12-03T10:52:49Z vs.
Revision 1.27 by gbeauche, 2004-02-15T17:17:36Z

# Line 1 | Line 1
1   /*
2   *  sheepshaver_glue.cpp - Glue Kheperix CPU to SheepShaver CPU engine interface
3   *
4 < *  SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig
4 > *  SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 31 | Line 31
31   #include "cpu/ppc/ppc-cpu.hpp"
32   #include "cpu/ppc/ppc-operations.hpp"
33   #include "cpu/ppc/ppc-instructions.hpp"
34 + #include "thunks.h"
35  
36   // Used for NativeOp trampolines
37   #include "video.h"
# Line 72 | Line 73 | static void enter_mon(void)
73   #endif
74   }
75  
76 + // From main_*.cpp
77 + extern uintptr SignalStackBase();
78 +
79 + // From rsrc_patches.cpp
80 + extern "C" void check_load_invoc(uint32 type, int16 id, uint32 h);
81 +
82 + // PowerPC EmulOp to exit from emulation looop
83 + const uint32 POWERPC_EXEC_RETURN = POWERPC_EMUL_OP | 1;
84 +
85   // Enable multicore (main/interrupts) cpu emulation?
86   #define MULTICORE_CPU (ASYNC_IRQ ? 1 : 0)
87  
# Line 120 | Line 130 | public:
130          // Constructor
131          sheepshaver_cpu();
132  
133 <        // Condition Register accessors
133 >        // CR & XER accessors
134          uint32 get_cr() const           { return cr().get(); }
135          void set_cr(uint32 v)           { cr().set(v); }
136 +        uint32 get_xer() const          { return xer().get(); }
137 +        void set_xer(uint32 v)          { xer().set(v); }
138 +
139 +        // Execute EMUL_OP routine
140 +        void execute_emul_op(uint32 emul_op);
141  
142          // Execute 68k routine
143          void execute_68k(uint32 entry, M68kRegisters *r);
# Line 133 | Line 148 | public:
148          // Execute MacOS/PPC code
149          uint32 execute_macos_code(uint32 tvect, int nargs, uint32 const *args);
150  
151 +        // Compile one instruction
152 +        virtual bool compile1(codegen_context_t & cg_context);
153 +
154          // Resource manager thunk
155          void get_resource(uint32 old_get_resource);
156  
# Line 163 | Line 181 | sheepshaver_cpu::sheepshaver_cpu()
181  
182   void sheepshaver_cpu::init_decoder()
183   {
166 #ifndef PPC_NO_STATIC_II_INDEX_TABLE
167        static bool initialized = false;
168        if (initialized)
169                return;
170        initialized = true;
171 #endif
172
184          static const instr_info_t sheep_ii_table[] = {
185                  { "sheep",
186                    (execute_pmf)&sheepshaver_cpu::execute_sheep,
# Line 202 | Line 213 | typedef bit_field< 20, 20 > FN_field;
213   typedef bit_field< 21, 25 > NATIVE_OP_field;
214   typedef bit_field< 26, 31 > EMUL_OP_field;
215  
216 + // Execute EMUL_OP routine
217 + void sheepshaver_cpu::execute_emul_op(uint32 emul_op)
218 + {
219 +        M68kRegisters r68;
220 +        WriteMacInt32(XLM_68K_R25, gpr(25));
221 +        WriteMacInt32(XLM_RUN_MODE, MODE_EMUL_OP);
222 +        for (int i = 0; i < 8; i++)
223 +                r68.d[i] = gpr(8 + i);
224 +        for (int i = 0; i < 7; i++)
225 +                r68.a[i] = gpr(16 + i);
226 +        r68.a[7] = gpr(1);
227 +        uint32 saved_cr = get_cr() & CR_field<2>::mask();
228 +        uint32 saved_xer = get_xer();
229 +        EmulOp(&r68, gpr(24), emul_op);
230 +        set_cr(saved_cr);
231 +        set_xer(saved_xer);
232 +        for (int i = 0; i < 8; i++)
233 +                gpr(8 + i) = r68.d[i];
234 +        for (int i = 0; i < 7; i++)
235 +                gpr(16 + i) = r68.a[i];
236 +        gpr(1) = r68.a[7];
237 +        WriteMacInt32(XLM_RUN_MODE, MODE_68K);
238 + }
239 +
240   // Execute SheepShaver instruction
241   void sheepshaver_cpu::execute_sheep(uint32 opcode)
242   {
# Line 225 | Line 260 | void sheepshaver_cpu::execute_sheep(uint
260                          pc() += 4;
261                  break;
262  
263 <        default: {      // EMUL_OP
264 <                M68kRegisters r68;
230 <                WriteMacInt32(XLM_68K_R25, gpr(25));
231 <                WriteMacInt32(XLM_RUN_MODE, MODE_EMUL_OP);
232 <                for (int i = 0; i < 8; i++)
233 <                        r68.d[i] = gpr(8 + i);
234 <                for (int i = 0; i < 7; i++)
235 <                        r68.a[i] = gpr(16 + i);
236 <                r68.a[7] = gpr(1);
237 <                EmulOp(&r68, gpr(24), EMUL_OP_field::extract(opcode) - 3);
238 <                for (int i = 0; i < 8; i++)
239 <                        gpr(8 + i) = r68.d[i];
240 <                for (int i = 0; i < 7; i++)
241 <                        gpr(16 + i) = r68.a[i];
242 <                gpr(1) = r68.a[7];
243 <                WriteMacInt32(XLM_RUN_MODE, MODE_68K);
263 >        default:        // EMUL_OP
264 >                execute_emul_op(EMUL_OP_field::extract(opcode) - 3);
265                  pc() += 4;
266                  break;
267          }
268 + }
269 +
270 + // Compile one instruction
271 + bool sheepshaver_cpu::compile1(codegen_context_t & cg_context)
272 + {
273 + #if PPC_ENABLE_JIT
274 +        const instr_info_t *ii = cg_context.instr_info;
275 +        if (ii->mnemo != PPC_I(SHEEP))
276 +                return false;
277 +
278 +        bool compiled = false;
279 +        powerpc_dyngen & dg = cg_context.codegen;
280 +        uint32 opcode = cg_context.opcode;
281 +
282 +        switch (opcode & 0x3f) {
283 +        case 0:         // EMUL_RETURN
284 +                dg.gen_invoke(QuitEmulator);
285 +                compiled = true;
286 +                break;
287 +
288 +        case 1:         // EXEC_RETURN
289 +                dg.gen_spcflags_set(SPCFLAG_CPU_EXEC_RETURN);
290 +                compiled = true;
291 +                break;
292 +
293 +        case 2: {       // EXEC_NATIVE
294 +                uint32 selector = NATIVE_OP_field::extract(opcode);
295 +                switch (selector) {
296 +                case NATIVE_PATCH_NAME_REGISTRY:
297 +                        dg.gen_invoke(DoPatchNameRegistry);
298 +                        compiled = true;
299 +                        break;
300 +                case NATIVE_VIDEO_INSTALL_ACCEL:
301 +                        dg.gen_invoke(VideoInstallAccel);
302 +                        compiled = true;
303 +                        break;
304 +                case NATIVE_VIDEO_VBL:
305 +                        dg.gen_invoke(VideoVBL);
306 +                        compiled = true;
307 +                        break;
308 +                case NATIVE_GET_RESOURCE:
309 +                case NATIVE_GET_1_RESOURCE:
310 +                case NATIVE_GET_IND_RESOURCE:
311 +                case NATIVE_GET_1_IND_RESOURCE:
312 +                case NATIVE_R_GET_RESOURCE: {
313 +                        static const uint32 get_resource_ptr[] = {
314 +                                XLM_GET_RESOURCE,
315 +                                XLM_GET_1_RESOURCE,
316 +                                XLM_GET_IND_RESOURCE,
317 +                                XLM_GET_1_IND_RESOURCE,
318 +                                XLM_R_GET_RESOURCE
319 +                        };
320 +                        uint32 old_get_resource = ReadMacInt32(get_resource_ptr[selector - NATIVE_GET_RESOURCE]);
321 +                        typedef void (*func_t)(dyngen_cpu_base, uint32);
322 +                        func_t func = (func_t)nv_mem_fun(&sheepshaver_cpu::get_resource).ptr();
323 +                        dg.gen_invoke_CPU_im(func, old_get_resource);
324 +                        compiled = true;
325 +                        break;
326 +                }
327 +                case NATIVE_DISABLE_INTERRUPT:
328 +                        dg.gen_invoke(DisableInterrupt);
329 +                        compiled = true;
330 +                        break;
331 +                case NATIVE_ENABLE_INTERRUPT:
332 +                        dg.gen_invoke(EnableInterrupt);
333 +                        compiled = true;
334 +                        break;
335 +                case NATIVE_CHECK_LOAD_INVOC:
336 +                        dg.gen_load_T0_GPR(3);
337 +                        dg.gen_load_T1_GPR(4);
338 +                        dg.gen_se_16_32_T1();
339 +                        dg.gen_load_T2_GPR(5);
340 +                        dg.gen_invoke_T0_T1_T2((void (*)(uint32, uint32, uint32))check_load_invoc);
341 +                        compiled = true;
342 +                        break;
343 +                }
344 +                if (FN_field::test(opcode)) {
345 +                        if (compiled) {
346 +                                dg.gen_load_A0_LR();
347 +                                dg.gen_set_PC_A0();
348 +                        }
349 +                        cg_context.done_compile = true;
350 +                }
351 +                else
352 +                        cg_context.done_compile = false;
353 +                break;
354 +        }
355 +
356 +        default: {      // EMUL_OP
357 +                typedef void (*func_t)(dyngen_cpu_base, uint32);
358 +                func_t func = (func_t)nv_mem_fun(&sheepshaver_cpu::execute_emul_op).ptr();
359 +                dg.gen_invoke_CPU_im(func, EMUL_OP_field::extract(opcode) - 3);
360 +                cg_context.done_compile = false;
361 +                compiled = true;
362 +                break;
363 +        }
364          }
365 +        return compiled;
366 + #endif
367 +        return false;
368   }
369  
370   // Handle MacOS interrupt
# Line 264 | Line 384 | void sheepshaver_cpu::interrupt(uint32 e
384   #endif
385  
386          // Initialize stack pointer to SheepShaver alternate stack base
387 <        gpr(1) = SheepStack1Base - 64;
387 >        gpr(1) = SignalStackBase() - 64;
388  
389          // Build trampoline to return from interrupt
390 <        uint32 trampoline[] = { htonl(POWERPC_EMUL_OP | 1) };
390 >        SheepVar32 trampoline = POWERPC_EXEC_RETURN;
391  
392          // Prepare registers for nanokernel interrupt routine
393          kernel_data->v[0x004 >> 2] = htonl(gpr(1));
# Line 286 | Line 406 | void sheepshaver_cpu::interrupt(uint32 e
406          gpr(1)  = KernelDataAddr;
407          gpr(7)  = ntohl(kernel_data->v[0x660 >> 2]);
408          gpr(8)  = 0;
409 <        gpr(10) = (uint32)trampoline;
410 <        gpr(12) = (uint32)trampoline;
409 >        gpr(10) = trampoline.addr();
410 >        gpr(12) = trampoline.addr();
411          gpr(13) = get_cr();
412  
413          // rlwimi. r7,r7,8,0,0
# Line 424 | Line 544 | uint32 sheepshaver_cpu::execute_macos_co
544          uint32 saved_ctr= ctr();
545  
546          // Build trampoline with EXEC_RETURN
547 <        uint32 trampoline[] = { htonl(POWERPC_EMUL_OP | 1) };
548 <        lr() = (uint32)trampoline;
547 >        SheepVar32 trampoline = POWERPC_EXEC_RETURN;
548 >        lr() = trampoline.addr();
549  
550          gpr(1) -= 64;                                                           // Create stack frame
551          uint32 proc = ReadMacInt32(tvect);                      // Get routine address
# Line 469 | Line 589 | inline void sheepshaver_cpu::execute_ppc
589          // Save branch registers
590          uint32 saved_lr = lr();
591  
592 <        const uint32 trampoline[] = { htonl(POWERPC_EMUL_OP | 1) };
593 <        lr() = (uint32)trampoline;
592 >        SheepVar32 trampoline = POWERPC_EXEC_RETURN;
593 >        WriteMacInt32(trampoline.addr(), POWERPC_EXEC_RETURN);
594 >        lr() = trampoline.addr();
595  
596          execute(entry);
597  
# Line 479 | Line 600 | inline void sheepshaver_cpu::execute_ppc
600   }
601  
602   // Resource Manager thunk
482 extern "C" void check_load_invoc(uint32 type, int16 id, uint32 h);
483
603   inline void sheepshaver_cpu::get_resource(uint32 old_get_resource)
604   {
605          uint32 type = gpr(3);
# Line 615 | Line 734 | void init_emul_ppc(void)
734          // Initialize main CPU emulator
735          main_cpu = new sheepshaver_cpu();
736          main_cpu->set_register(powerpc_registers::GPR(3), any_register((uint32)ROM_BASE + 0x30d000));
737 +        main_cpu->set_register(powerpc_registers::GPR(4), any_register(KernelDataAddr + 0x1000));
738          WriteMacInt32(XLM_RUN_MODE, MODE_68K);
739  
740   #if MULTICORE_CPU
# Line 679 | Line 799 | void exit_emul_ppc(void)
799   void emul_ppc(uint32 entry)
800   {
801          current_cpu = main_cpu;
802 < #if DEBUG
802 > #if 0
803          current_cpu->start_log();
804   #endif
805          // start emulation loop and enable code translation or caching
# Line 778 | Line 898 | void sheepshaver_cpu::handle_interrupt(v
898                                  if (InterruptFlags & INTFLAG_VIA) {
899                                          ClearInterruptFlag(INTFLAG_VIA);
900                                          ADBInterrupt();
901 <                                        ExecutePPC(VideoVBL);
901 >                                        ExecuteNative(NATIVE_VIDEO_VBL);
902                                  }
903                          }
904   #endif
# Line 788 | Line 908 | void sheepshaver_cpu::handle_interrupt(v
908          }
909   }
910  
791 /*
792 *  Execute NATIVE_OP opcode (called by PowerPC emulator)
793 */
794
795 #define POWERPC_NATIVE_OP_INIT(LR, OP) \
796                tswap32(POWERPC_EMUL_OP | ((LR) << 11) | (((uint32)OP) << 6) | 2)
797
798 // FIXME: Make sure 32-bit relocations are used
799 const uint32 NativeOpTable[NATIVE_OP_MAX] = {
800        POWERPC_NATIVE_OP_INIT(1, NATIVE_PATCH_NAME_REGISTRY),
801        POWERPC_NATIVE_OP_INIT(1, NATIVE_VIDEO_INSTALL_ACCEL),
802        POWERPC_NATIVE_OP_INIT(1, NATIVE_VIDEO_VBL),
803        POWERPC_NATIVE_OP_INIT(1, NATIVE_VIDEO_DO_DRIVER_IO),
804        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_IRQ),
805        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_INIT),
806        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_TERM),
807        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_OPEN),
808        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_CLOSE),
809        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_WPUT),
810        POWERPC_NATIVE_OP_INIT(1, NATIVE_ETHER_RSRV),
811        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_NOTHING),
812        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_OPEN),
813        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_PRIME_IN),
814        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_PRIME_OUT),
815        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_CONTROL),
816        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_STATUS),
817        POWERPC_NATIVE_OP_INIT(1, NATIVE_SERIAL_CLOSE),
818        POWERPC_NATIVE_OP_INIT(1, NATIVE_GET_RESOURCE),
819        POWERPC_NATIVE_OP_INIT(1, NATIVE_GET_1_RESOURCE),
820        POWERPC_NATIVE_OP_INIT(1, NATIVE_GET_IND_RESOURCE),
821        POWERPC_NATIVE_OP_INIT(1, NATIVE_GET_1_IND_RESOURCE),
822        POWERPC_NATIVE_OP_INIT(1, NATIVE_R_GET_RESOURCE),
823        POWERPC_NATIVE_OP_INIT(0, NATIVE_DISABLE_INTERRUPT),
824        POWERPC_NATIVE_OP_INIT(0, NATIVE_ENABLE_INTERRUPT),
825        POWERPC_NATIVE_OP_INIT(1, NATIVE_MAKE_EXECUTABLE),
826 };
827
911   static void get_resource(void);
912   static void get_1_resource(void);
913   static void get_ind_resource(void);
# Line 927 | Line 1010 | static void NativeOp(int selector)
1010          case NATIVE_MAKE_EXECUTABLE:
1011                  MakeExecutable(0, (void *)GPR(4), GPR(5));
1012                  break;
1013 +        case NATIVE_CHECK_LOAD_INVOC:
1014 +                check_load_invoc(GPR(3), GPR(4), GPR(5));
1015 +                break;
1016          default:
1017                  printf("FATAL: NATIVE_OP called with bogus selector %d\n", selector);
1018                  QuitEmulator();
# Line 939 | Line 1025 | static void NativeOp(int selector)
1025   }
1026  
1027   /*
942 *  Execute native subroutine (LR must contain return address)
943 */
944
945 void ExecuteNative(int selector)
946 {
947        uint32 tvect[2];
948        tvect[0] = tswap32(POWERPC_NATIVE_OP_FUNC(selector));
949        tvect[1] = 0; // Fake TVECT
950        RoutineDescriptor desc = BUILD_PPC_ROUTINE_DESCRIPTOR(0, tvect);
951        M68kRegisters r;
952        Execute68k((uint32)&desc, &r);
953 }
954
955 /*
1028   *  Execute 68k subroutine (must be ended with EXEC_RETURN)
1029   *  This must only be called by the emul_thread when in EMUL_OP mode
1030   *  r->a[7] is unused, the routine runs on the caller's stack
# Line 970 | Line 1042 | void Execute68k(uint32 pc, M68kRegisters
1042  
1043   void Execute68kTrap(uint16 trap, M68kRegisters *r)
1044   {
1045 <        uint16 proc[2];
1046 <        proc[0] = htons(trap);
1047 <        proc[1] = htons(M68K_RTS);
1048 <        Execute68k((uint32)proc, r);
1045 >        SheepVar proc_var(4);
1046 >        uint32 proc = proc_var.addr();
1047 >        WriteMacInt16(proc, trap);
1048 >        WriteMacInt16(proc + 2, M68K_RTS);
1049 >        Execute68k(proc, r);
1050   }
1051  
1052   /*

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines