Bug 2465 - powerpc bytecode compiler broken
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: 1.33 SVN
Hardware: Macintosh Linux
: P2 major
Assignee: Tim Angus
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2005-10-30 13:10 EST by Mattias Nissler
Modified: 2009-05-05 14:20:47 EDT
4 users (show)

See Also:


Attachments
fix PPC bytecode compiler and enable (6.24 KB, patch)
2005-10-30 13:13 EST, Mattias Nissler
Fix and enable ppc JIT compiler for Linux/ppc. (6.14 KB, patch)
2006-03-27 17:13 EST, Mattias Nissler

Description Mattias Nissler 2005-10-30 13:10:10 EST
Current SVN doesn't have the bytecode compiler for Linux/PPC.
Comment 1 Mattias Nissler 2005-10-30 13:13:38 EST
Created attachment 806 [details]
fix PPC bytecode compiler and enable
Comment 2 Tim Angus 2006-03-05 05:42:20 EST
So uh, what's this about then?
Comment 3 Mattias Nissler 2006-03-15 04:50:25 EST
(In reply to comment #2)
> So uh, what's this about then?
> 

This is about enabling the bytecode compiler on PPC. And you do want that because those PPC machines aren't the fastest and compiling bytecode into machinecode should be a lot faster than interpreting the bytecode.

Without the patch, the ppc bytecode compiler just crashes (if you enable it, it is disabled per default). The fixes I have done made it usable for me. However, I did this last October, so I'm not sure whether the patch is ok with current SVN.

I will check whether the patch is ok with current SVN and come back to you.
Comment 4 Mattias Nissler 2006-03-27 17:13:06 EST
Created attachment 857 [details]
Fix and enable ppc JIT compiler for Linux/ppc.
Comment 5 Mattias Nissler 2006-03-27 17:15:09 EST
Hey, just tested the vm_ppc_new JIT compiler on Linux/ppc. It works really well for me. Would somebody please apply the patch?
Comment 6 Tony J. White 2006-04-13 01:15:09 EDT
(In reply to comment #5)
> Hey, just tested the vm_ppc_new JIT compiler on Linux/ppc. It works really well
> for me. Would somebody please apply the patch?
> 

This patch will not build on OSX ppc.  It generates parse errors giving the last line of the file as the line number.  I guess some preproccessing magic may be required.

The vm_ppc_new.c in SVN at changeset 697 seems to work great on OSX ppc.


Comment 7 Mattias Nissler 2006-04-13 18:43:51 EDT
Ah, well. I think this might be the inline assembly. I had to change the syntax a little bit to overcome parse errors on Linux. This is likely due to Apple using their own customized gcc version :-(

I will have a look at it again when I find time for that.
Comment 8 Tim Angus 2006-08-13 13:16:36 EDT
I'm guessing this patch (and bug) is bogus now? tjw?
Comment 9 Ryan C. Gordon 2007-05-21 11:21:43 EDT
Setting a QA contact on all ioquake3 bugs, even resolved ones. Sorry if you get a flood of email from this, it should only happen once. Apologies for the incovenience.

--ryan.

Comment 10 Tim Angus 2007-08-22 17:48:56 EDT
I suggest...

Index: Makefile
===================================================================
--- Makefile    (revision 1126)
+++ Makefile    (working copy)
@@ -230,7 +230,7 @@
   else
   ifeq ($(ARCH),ppc)
     BASE_CFLAGS += -maltivec
-    HAVE_VM_COMPILED=false
+    HAVE_VM_COMPILED = true
   endif
   endif
   endif

...is applied by someone with Linux PPC and tested. One way or another next time I happen across this bug I'm closing it.
Comment 11 Przemysław Iskra 2008-10-10 13:57:00 EDT
Whether this one is working for you, please, take a look at #3796
Comment 12 Monk 2009-03-23 14:11:01 EDT
This should probably be closed?  Fixed in bug 3796 http://bugzilla.icculus.org/show_bug.cgi?id=3796 ?
Comment 13 Ludwig Nussel 2009-05-05 14:20:47 EDT
closing as fixed due to new ppc compiler