Re: [perl #26201] [PATCH] add inc/dec(_i) ops to the Sun/Sparc JIT core

2004-02-09 Thread Leopold Toetsch
Stephane Peiry <[EMAIL PROTECTED]> wrote: > This patch implements the inc_i and dec_i ops (cf. math.ops), for the > Sun/Sparc JIT core. Thanks, applied. leo

[perl #26201] [PATCH] add inc/dec(_i) ops to the Sun/Sparc JIT core

2004-02-09 Thread via RT
# New Ticket Created by Stephane Peiry # Please include the string: [perl #26201] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=26201 > This patch implements the inc_i and dec_i ops (cf. math.ops), for the Sun/Sparc J

Re: [COMMIT] inc/dec/add ops and new PMC methods

2002-05-20 Thread Tim Bunce
On Sun, May 19, 2002 at 06:01:56PM +0100, Nicholas Clark wrote: > > Seriously though - is it possible to automate testing how many ops don't > have tests? That way we could have a test that looked for untested ops, and > failed if any weren't tested. > I guess it couldn't easily be very sophistic

Re: [COMMIT] inc/dec/add ops and new PMC methods

2002-05-19 Thread Melvin Smith
>Net result is Good. > >[If it wasn't clear, thanks for this, thanks for all the other good work >you've >done on parrot] Thank you. >Seriously though - is it possible to automate testing how many ops don't >have tests? That way we could have a test that looked for untested ops, and >failed if

Re: [COMMIT] inc/dec/add ops and new PMC methods

2002-05-19 Thread Nicholas Clark
On Sun, May 19, 2002 at 01:39:30AM -0400, Melvin Smith wrote: > Filled in some missing holes: > -Implement PMC inc/dec functions and add ops to engine. > 'inc P0, 5' is faster than 'set P0, P1, 5' which uses a vtable. > -Corrected 'inc Nx, Ny' to 'i

[COMMIT] inc/dec/add ops and new PMC methods

2002-05-18 Thread Melvin Smith
Filled in some missing holes: -Implement PMC inc/dec functions and add ops to engine. 'inc P0, 5' is faster than 'set P0, P1, 5' which uses a vtable. -Corrected 'inc Nx, Ny' to 'inc Nx, Iy' as per the PDD -Added missing 'add Nx, Ny, Iz' op Upda

inc/dec

2002-05-18 Thread Melvin Smith
I think the inc/dec op (NUM, NUM) should be (NUM, INT) While I'm adding the PMC support for inc/dec I'll fix that, unless I'm wrong. INC/DEC by a NUM is not in the PDD. -Melvin