mame/src/emu/cpu/powerpc
Aaron Giles ed6ad8b4f9 PowerPC dynamic recompiler: [Aaron Giles]
- rewrote PowerPC implementation as a dynamic recompiler on top
    of the universal recompiler engine
 - wrote a front-end to analyze PowerPC code paths and register usage
 - wrote a common shared module with C implementations of tricky
    CPU behaviors
 - added separate CPU types for the variants supported, instead of
    relying on a hidden model enum
 - rewrote the serial port emulation for the 4xx series to be more
    accurate and not rely on separate DMA handlers
 - rewrote the MMU handling to implement a software TLB that faults
    in pages and handles changed bits appropriately
 - implemented emulation of the PowerPC 603's software TLB, which
    allows the model 3 games to run without a hack to disable the MMU

Updated the PowerPC disassembler to share constants with the rest of
the core, and to more aggressively use simplified mnemonics, especially
for branches. [Aaron Giles]

Universal recompiler:
 - fixed frontend to handle opcode widths different from bus width
 - added several new opcodes:
    * (D)GETFLGS - copies the UML flags to a destination operand
    * FDRNDS - rounds a double precision value to single precision
 - renamed several opcodes:
    * SETC   -> CARRY
    * XTRACT -> ROLAND
    * INSERT -> ROLINS
 - consolidated the following opcodes:
    * LOAD?U -> LOAD
    * LOAD?S -> LOADS
    * STORE? -> STORE
    * READ?U -> READ
    * READ?M -> READM
    * WRITE? -> WRITE
    * WRITM? -> WRITEM
    * SEXT?  -> SEXT
    * FTOI?? -> FTOINT
    * FFRI?  -> FFRINT
    * FFRF?  -> FFRFLT
 - removed some opcodes:
    * FLAGS - can be done with GETFLGS/LOAD4/ROLINS
    * ZEXT - can be achieved with AND
    * READ?S - can be achieved with READ/SEXT
 - updated C, x86, and x64 back-ends to support these opcode changes
 - updated disassembler to support these opcode changes
 
MIPS3 dynamic recompiler:
 - updated to use new/changed opcode forms
 - changed context switch so that it only swaps a single pointer

Konami Hornet changes: [Aaron Giles]
 - updated to new PowerPC configurations
 - updated some memory handlers to be native 8-bit handlers
 - cleaned up JVS implementation to work with new serial code
 - added fast RAM for the work RAM to give a small speed boost

Konami GTI Club changes: [Aaron Giles]
 - updated to new PowerPC configurations
 - updated some memory handlers to be native 8-bit handlers

Konami Viper/ZR107 changes: [Aaron Giles]
 - updated to new PowerPC configurations

Sega Model 3 changes: [Aaron Giles]
 - updated to new PowerPC configurations
 - reimplemented/centralized interrupt handling
 - these games are broken for the moment

Fixed crasher due to some Konami games using 8 layers in
the K056832 implementation, even though it was only written
for 4. [Aaron Giles]

Added fisttp opcode to i386 disassembler. [Aaron Giles]
2008-06-05 08:34:13 +00:00
..
drc_ops.c From: Atari Ace [mailto:atari_ace@verizon.net] 2008-02-05 17:21:27 +00:00
drc_ops.h Changes for MAME 0.121u3. 2007-12-17 16:39:40 +00:00
ppc403.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppc602.c Rewrote some potentially compiler specific code: 2008-03-02 00:35:58 +00:00
ppc603.c Rewrote some potentially compiler specific code: 2008-03-02 00:35:58 +00:00
ppc_dasm.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppc_mem.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppc_ops.c From: Atari Ace [mailto:atari_ace@verizon.net] 2008-02-05 17:21:27 +00:00
ppc_ops.h Initial checkin of MAME 0.121. 2007-12-17 15:19:59 +00:00
ppc.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppc.h PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppccom.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppccom.h PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppcdrc.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppcfe.c PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00
ppcfe.h PowerPC dynamic recompiler: [Aaron Giles] 2008-06-05 08:34:13 +00:00