Bug 3796 - New JIT compiler for PowerPC
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: Macintosh Linux
: P3 normal
Assignee: Przemysław Iskra
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2008-10-10 13:50 EDT by Przemysław Iskra
Modified: 2008-11-10 07:33:34 EST
0 users

See Also:


Attachments
New PowerPC JIT compiler (292.18 KB, patch)
2008-10-10 13:53 EDT, Przemysław Iskra
Makefile patch (804 bytes, patch)
2008-10-10 13:54 EDT, Przemysław Iskra
New PowerPC JIT compiler, v2 (292.13 KB, patch)
2008-10-10 18:57 EDT, Przemysław Iskra
New PowerPC JIT compiler, v3 (297.24 KB, patch)
2008-10-12 08:42 EDT, Przemysław Iskra
New PowerPC JIT compiler, v4 (308.35 KB, patch)
2008-10-15 17:31 EDT, Przemysław Iskra
New PowerPC JIT compiler, v5 (117.05 KB, patch)
2008-10-18 13:17 EDT, Przemysław Iskra
New PowerPC JIT compiler, v6 (117.78 KB, patch)
2008-10-23 18:31 EDT, Przemysław Iskra
Makefile patch, v2 (1.64 KB, patch)
2008-10-24 09:22 EDT, Przemysław Iskra
New PowerPC JIT compiler, v7 (94.50 KB, patch)
2008-11-01 22:20 EDT, Przemysław Iskra
New PowerPC JIT compiler, v8 (94.51 KB, patch)
2008-11-02 17:06 EST, Przemysław Iskra
New PowerPC JIT compiler, v9 (95.15 KB, patch)
2008-11-09 16:32 EST, Przemysław Iskra

Description Przemysław Iskra 2008-10-10 13:50:48 EDT
I've written a new PowerPC JIT compiler. I works well on Linux on G4, needs extensive testing on all the other configurations (OSX+G3/G4/G5, linux+G3/G5). It probably produces a little slower code than the original one, but has prepared well defined framework which will allow to add more optimizations. And everything without making any assumptions about C compiler, so it should work on any operating system compatible with System V.

If possible I would prefer to discuss it on ioquake3 mailing list.
Comment 1 Przemysław Iskra 2008-10-10 13:53:00 EDT
Created attachment 1885 [details]
New PowerPC JIT compiler
Comment 2 Przemysław Iskra 2008-10-10 13:54:15 EDT
Created attachment 1886 [details]
Makefile patch

patch for Makefile on SVN trunk
Comment 3 Przemysław Iskra 2008-10-10 18:57:19 EDT
Created attachment 1887 [details]
New PowerPC JIT compiler, v2

use mmap + mprotect: works on linux @ G5 (32bit userspace)
Comment 4 Ryan C. Gordon 2008-10-11 18:22:38 EDT
Not to be a pain, but I don't think we should be mingling GPL3 stuff in here, unless we're going to move the whole codebase to GPL3.

It's just a mess to have to say "ioq3 is GPL2, unless you use THIS ONE PLATFORM, and just in case, you might want to delete that file anyhow so there's no doubt."

This is the diff of that GPL3 file between now and when they moved from GPL2...

http://sourceware.org/cgi-bin/cvsweb.cgi/src/opcodes/ppc-opc.c.diff?r1=1.96&r2=1.110&cvsroot=src

I don't have the ability to compile this right now to test...how dependent are we on the newer changes in that file?

--ryan.


Comment 5 Przemysław Iskra 2008-10-11 18:37:27 EDT
After finishing vm_powerpc.c (some more optimizations, check OSX) I was planning to strip instruction list to minimum (leaving only the used instructions). I can do it based on the older ppc-opc.c without any problem.
Comment 6 Ryan C. Gordon 2008-10-11 22:01:18 EDT
Cool...I'll try this on a 64-bit G5 when I get a chance.   :)

--ryan.


Comment 7 Przemysław Iskra 2008-10-12 08:42:54 EDT
Created attachment 1888 [details]
New PowerPC JIT compiler, v3

added some optimizations, most important one: OP_CONST+OP_CALL fusion
Comment 8 Przemysław Iskra 2008-10-14 05:46:31 EDT
(In reply to comment #6)
> Cool...I'll try this on a 64-bit G5 when I get a chance.   :)

Trying won't help much, ppc64 has completely different ELF ABI and parts of compiler will have to be rewritten. Some changes are simple to implement (like link register placement), but other things I don't understand yet (special function preamble). I want the code ABI conforming so it won't break each time something in GCC changes, like with the original vm_ppc.c happened.

If anyone could give me (temporal) access to ppc64 machine, with 64-bit userspace, it would be great.
Comment 9 Przemysław Iskra 2008-10-15 17:31:25 EDT
Created attachment 1890 [details]
New PowerPC JIT compiler, v4

More speed optimizations: uses registers instead of opstack. vm_powerpc.c cleaned up. vm_powerpc_asm.c unchanged. There will be no more speed improvements, only fixes and, hopefully, ppc64 support.
Comment 10 Przemysław Iskra 2008-10-18 13:17:09 EDT
Created attachment 1892 [details]
New PowerPC JIT compiler, v5

vm_powerpc.c: Includes ppc64 support ! (only dedicated server tested on linux @ XServe G5). Changed stack behavior on OSX, as it is not System V conforming.
vm_powerpc_asm_c: Now it is based on revision 1.96 of ppc-opc.c - it is GPL v2. Stripped opcode list to minimum.
Comment 11 Przemysław Iskra 2008-10-23 18:31:23 EDT
Created attachment 1900 [details]
New PowerPC JIT compiler, v6

vm_powerpc.c: Fixed for OS X, works, and works damn well (tested on Panther @ G4). OP_BLOCK_COPY now uses double words on ppc64.
Comment 12 Przemysław Iskra 2008-10-24 09:22:48 EDT
Created attachment 1902 [details]
Makefile patch, v2

includes ppc64 changes
Comment 13 Przemysław Iskra 2008-11-01 22:20:22 EDT
Created attachment 1913 [details]
New PowerPC JIT compiler, v7

vm_powerpc_asm.c: stripped almost all the unused code (there are some #defines left, but this does not increase binary size)
vm_powerpc.c: added/fixed some comments, lots of cosmetics, few speedups, but no functional changes

PING !
Comment 14 Ludwig Nussel 2008-11-02 13:31:22 EST
any ACKs/NACKs on the patch?
Comment 15 Przemysław Iskra 2008-11-02 14:54:20 EST
There's a thread on the lists, but only one person was kind enough to test it:

http://lists.ioquake.org/pipermail/ioquake3-ioquake.org/2008-October/003169.html

It seems like the patch won't be properly tested until it gets to the trunk. You may still leave vm_ppc.c temporarily so if the new one isn't working for someone, she should be able to switch to the old compiler without any problem.

I tried to ask few developers on IRC, but all of them have different reasons not to test it (-ENOTIME, borked HD, something else).
Comment 16 Tim Angus 2008-11-02 16:37:28 EST
Looks good to me. Analize is spelled incorrectly.
Comment 17 Przemysław Iskra 2008-11-02 17:06:33 EST
Created attachment 1914 [details]
New PowerPC JIT compiler, v8

Fixed "Analyze" typo. Added missing "static". 

I'm sure there are more typos, I just can't see them right now.
Comment 18 Przemysław Iskra 2008-11-09 11:32:08 EST
PING ! Just wanted to remind about the patch.
Maybe someone will finally find the courage to commit it :-P

Current status of the patch:
- includes all the optimizations found in vm_ppc.c and some more
- prepared for both 32 and 64 bit PowerPCs
- supports ELF (Linux) and OSX ABIs, other ABIs (AIX ?) may be added easily if needed
- while playing, game spends between 13% and 22% of time inside generated code, with interpreter it is over 60%
- fast compilation: under 0.4 seconds for qagame on 1.3GHz G4

Tested and working on:
- OS X 10.3 (Panther) @ iBook G4, gcc 3.3 [ioq3, tremulous]
- Linux PLD @ iBook G4, gcc 4.3.2 [ioq3 + various mods, tremulous]
- Linux debian 32bit @ XServe G5, gcc 4.2 [ioq3ded, tremded]
- Linux debian 64bit @ XServe G5, gcc 4.2 [ioq3ded]
Comment 19 Przemysław Iskra 2008-11-09 16:32:12 EST
Created attachment 1918 [details]
New PowerPC JIT compiler, v9

fix: realloc vm->instructionPointers on ppc64
minor: rename VM_Malloc, VM_Free to PPC_Malloc, PPC_Free; safer constant optimization handling
Comment 20 Ludwig Nussel 2008-11-10 04:49:32 EST
applied finally :)
Comment 21 Przemysław Iskra 2008-11-10 07:33:34 EST
cool, thanks !