[perl #24692] Re: NJZPUXCJ, and the little

2003-12-18 Thread Tanya
# New Ticket Created by "Tanya" # Please include the string: [perl #24692] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=24692 > blackboard utah definition yalta corkscrew theodosian jura trail corinthian ed controlled

Re: More object stuff

2003-12-18 Thread Harry Jackson
Dan Sugalski wrote: It's util/ncidef2pasm.pl, actually. build_nativecall builds the stub routines for the interpreter if a JIT isn't available. The definitions of the characters are the same, but ncidef2pasm's a bit better documented. (There's embedded POD) Invocation is: perl util/ncidef2pas

Re: How to raise an exception inside a PMC?

2003-12-18 Thread Leopold Toetsch
Juergen Boemmels <[EMAIL PROTECTED]> wrote: > Hi, > I'm just wondering how I should raise an exception inside a vtable > function. I found the function real_exception, but I don't know what > to put into the *dest argument. If the vtable method doesn't have a 'void* next' opcode_t ptr, then you p

Re: [perl #24682] [BUG] parrot compile fails on MacOS 10.3.1 - possibly dynaloading patch?

2003-12-18 Thread Allison Randal
Leo wrote: > > Very likely that SIGFPE isn't defined. > > Does F have an entry for SIGFPE? (line 14) .constant SIGFPE8 > Is PARROT_HAS_HEADER_SIGNAL defined? (F: line 46) define PARROT_HAS_HEADER_SIGNAL 1 Allison

Re: pdd03 and method calls

2003-12-18 Thread Melvin Smith
At 10:42 PM 12/17/2003 +0100, Leopold Toetsch wrote: While playing with calling threaded subs, I came along a thing which I think might be suboptimal: pdd03 states that the method PMC should go into P2. This doesn't really play with Perl5 <-> Perl6 interoperbility IMHO. Perl5 methods are plain s

Re: pdd03 and method calls

2003-12-18 Thread Juergen Boemmels
Dan Sugalski <[EMAIL PROTECTED]> writes: > PDD 03 states that the *object* goes in P2. This works out just fine > with perl 5 style method calls, where the argument list doesn't > distinguish the object other than by position. What happens is that > when a perl 5 sub is called, @_ is a combination

Re: pdd03 and method calls

2003-12-18 Thread Luke Palmer
Dan Sugalski writes: > At 10:42 PM +0100 12/17/03, Leopold Toetsch wrote: > >While playing with calling threaded subs, I came along a thing which > >I think might be suboptimal: > >pdd03 states that the method PMC should go into P2. This doesn't > >really play with Perl5 <-> Perl6 interoperbility

Re: pdd03 and method calls

2003-12-18 Thread Juergen Boemmels
Leopold Toetsch <[EMAIL PROTECTED]> writes: > While playing with calling threaded subs, I came along a thing which I > think might be suboptimal: > > pdd03 states that the method PMC should go into P2. This doesn't > really play with Perl5 <-> Perl6 interoperbility IMHO. Perl5 methods > are plain

How to raise an exception inside a PMC?

2003-12-18 Thread Juergen Boemmels
Hi, I'm just wondering how I should raise an exception inside a vtable function. I found the function real_exception, but I don't know what to put into the *dest argument. bye boe -- Juergen Boemmels[EMAIL PROTECTED] Fachbereich Physik Tel: ++49-(0)63

Re: pdd03 and method calls

2003-12-18 Thread Dan Sugalski
At 10:42 PM +0100 12/17/03, Leopold Toetsch wrote: While playing with calling threaded subs, I came along a thing which I think might be suboptimal: pdd03 states that the method PMC should go into P2. This doesn't really play with Perl5 <-> Perl6 interoperbility IMHO. Perl5 methods are plain sub

Re: remarks WRT clone

2003-12-18 Thread Dan Sugalski
At 10:59 PM +0100 12/17/03, Leopold Toetsch wrote: In former days and before YAPC::EU I changed the original clone vtable, which was IIRC: PMC* clone() # return new clone of pmc to the now existing form, which gets an uninitialized destination PMC. This change was at that time necessary becau