Re: AIX PPC JIT warning

2004-11-16 Thread Leopold Toetsch
Adam Thomason [EMAIL PROTECTED] wrote: I just cvs up'ed and upgraded to perl 5.8.5, and now parrot's make testj matches make test (some unimplemented PMC method errors in both... is this expected?). I don't know, which errors you got ;) Anyway, as of now JIT/PPC on OS X is passing all tests.

Re: AIX PPC JIT warning

2004-11-12 Thread Adam Thomason
On Wed, 10 Nov 2004 08:34:26 +0100, Leopold Toetsch [EMAIL PROTECTED] wrote: Adam Thomason [EMAIL PROTECTED] wrote: On Mon, 8 Nov 2004 11:38:11 +0100, Leopold Toetsch [EMAIL PROTECTED] wrote: Adam Thomason [EMAIL PROTECTED] wrote: Now to figure out why the JIT code segfaults...

Re: AIX PPC JIT warning

2004-11-10 Thread Leopold Toetsch
Adam Thomason [EMAIL PROTECTED] wrote: On Mon, 8 Nov 2004 11:38:11 +0100, Leopold Toetsch [EMAIL PROTECTED] wrote: Adam Thomason [EMAIL PROTECTED] wrote: Now to figure out why the JIT code segfaults... When does it segfault: always? during begin or end of JIT code? Broken ABI WRT r2

Re: AIX PPC JIT warning

2004-11-09 Thread Adam Thomason
On Mon, 8 Nov 2004 11:38:11 +0100, Leopold Toetsch [EMAIL PROTECTED] wrote: Adam Thomason [EMAIL PROTECTED] wrote: It appears that (3) may work after all. ICU 3.0 will build static 32-bit libraries which seem to work with parrot. As Jeff suspected, the missing

Re: AIX PPC JIT warning

2004-11-08 Thread Adam Thomason
On Fri, 29 Oct 2004 15:03:40 -0700, Adam Thomason [EMAIL PROTECTED] wrote: Worry not, it's already broken. I've been unable to test the AIX/PPC JIT since ICU went in. The configuration for ICU (at least as of 2.6) supports only a 64-bit build, while aix/asm.s is 32-bit only (the linker

Re: AIX PPC JIT warning

2004-11-08 Thread Leopold Toetsch
Adam Thomason [EMAIL PROTECTED] wrote: It appears that (3) may work after all. ICU 3.0 will build static 32-bit libraries which seem to work with parrot. As Jeff suspected, the missing Parrot_ppc_jit_restore_nonvolatile_registers caused trouble, but adding it to aix/asm.s was simple. Patch

AIX PPC JIT warning

2004-10-29 Thread Jeff Clites
Recently config/gen/platform/darwin/asm.s was added, containing Parrot_ppc_jit_restore_nonvolatile_registers(). Corresponding code also needs to be added to config/gen/platform/aix/asm.s -- Parrot should fail to link on AIX currently, without this. I didn't try to update the AIX asm.s myself,

Re: AIX PPC JIT warning

2004-10-29 Thread Adam Thomason
On Fri, 29 Oct 2004 01:05:18 -0700, Jeff Clites [EMAIL PROTECTED] wrote: Recently config/gen/platform/darwin/asm.s was added, containing Parrot_ppc_jit_restore_nonvolatile_registers(). Corresponding code also needs to be added to config/gen/platform/aix/asm.s -- Parrot should fail to link on