RE: How do I do parametered-roles on member objects?

2004-04-30 Thread Austin Hastings
> From: Aaron Sherman [mailto:[EMAIL PROTECTED] > > On Fri, 2004-04-30 at 23:12, Austin Hastings wrote: > > > > From: Aaron Sherman [mailto:[EMAIL PROTECTED] > > > > I think you want a combination of re-dispatch and delegation: > [...example code...] > > > That should do what you want. > > > > Well

RE: How do I do parametered roles?

2004-04-30 Thread Austin Hastings
> From: Luke Palmer [mailto:[EMAIL PROTECTED] > > Austin Hastings writes: > > Suppose that I have, for example: > > > > class Session { > > has @:messages; > > > > method clear_messages() {...} > > method add_message($msg) {...} > > method have_messages() {...} > > method g

RE: How do I do parametered-roles on member objects?

2004-04-30 Thread Aaron Sherman
On Fri, 2004-04-30 at 23:12, Austin Hastings wrote: > > From: Aaron Sherman [mailto:[EMAIL PROTECTED] > > I think you want a combination of re-dispatch and delegation: [...example code...] > > That should do what you want. > > Well, not really: > > 1- It required a lot of text for little gain.

Re: How do I do parametered roles?

2004-04-30 Thread Luke Palmer
Austin Hastings writes: > Suppose that I have, for example: > > class Session { > has @:messages; > > method clear_messages() {...} > method add_message($msg) {...} > method have_messages() {...} > method get_messages() returns Array {... font color="black" ...} > } > > A

RE: How do I do parametered-roles on member objects?

2004-04-30 Thread Austin Hastings
(Note more precise topic.) > -Original Message- > From: Aaron Sherman [mailto:[EMAIL PROTECTED] > > On Fri, 2004-04-30 at 17:58, Austin Hastings wrote: > > > class Session > > { > > does ListOfMessages > > ( > >attribute_base => 'messages', > >metho

Re: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 7:07 PM -0700 4/30/04, Jeff Clites wrote: On Apr 30, 2004, at 10:22 AM, Dan Sugalski wrote: At 2:57 AM +1000 5/1/04, Andre Pang wrote: Of course Parrot should have a function to reinterpret something of a string type as raw binary data and vice versa, but don't mix binary data with strings: th

Re: [Q2] (Re: The strings design document)

2004-04-30 Thread Jeff Clites
On Apr 30, 2004, at 9:02 AM, Larry Wall wrote: On Fri, Apr 30, 2004 at 08:38:18AM -0700, Jeff Clites wrote: : On Apr 28, 2004, at 5:01 AM, Dan Sugalski wrote: : : >At 3:17 AM -0700 4/28/04, Jeff Clites wrote: : >>On Apr 23, 2004, at 2:43 PM, Dan Sugalski wrote: : >> : >>>For example, consider the f

Re: Bit ops on strings

2004-04-30 Thread Jeff Clites
On Apr 30, 2004, at 10:22 AM, Dan Sugalski wrote: At 2:57 AM +1000 5/1/04, Andre Pang wrote: Of course Parrot should have a function to reinterpret something of a string type as raw binary data and vice versa, but don't mix binary data with strings: they are completely different types, and raw b

Re: How do I do parametered roles?

2004-04-30 Thread Aaron Sherman
On Fri, 2004-04-30 at 17:58, Austin Hastings wrote: > class Session > { > does ListOfMessages > ( >attribute_base => 'messages', >method_base=> 'messages', >display_color => 'black' > ); > > does ListOfMessages > ( >

RE: How do I do parametered roles?

2004-04-30 Thread Austin Hastings
> Can I just do: > > role ListOfMessages($attribute_base, $method_base, $display_color) {...} > > or what? PS: Sorry: I know that for types and what-not I could do role ListOfMessages[args] but I'm wondering about parameters in names. That is, has @:messages; versus has @:errors;

How do I do parametered roles?

2004-04-30 Thread Austin Hastings
Suppose that I have, for example: class Session { has @:messages; method clear_messages() {...} method add_message($msg) {...} method have_messages() {...} method get_messages() returns Array {... font color="black" ...} } And suppose I add to it: class Session { h

Re: Bit ops on strings

2004-04-30 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > If you want, you could think of the S-register strings as mini-PMCs. > The encoding and charset stuff (we'll ignore language semantics for > the moment) are essentially small vtables that hang off the string, I think its the cleanest way of implementing a

RE: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 4:15 PM -0400 4/30/04, Bryan C. Warnock wrote: On Fri, 2004-04-30 at 15:34, Dan Sugalski wrote: If you want, you could think of the S-register strings as mini-PMCs. The encoding and charset stuff (we'll ignore language semantics for the moment) are essentially small vtables that hang off the

Re: Outstanding parrot issues?

2004-04-30 Thread Leopold Toetsch
Nicholas Clark <[EMAIL PROTECTED]> wrote: > If I understand this correctly, then this is far more restrictive than the > perl5 embedding interface. This is *one* way to start things up. You can start the app with Parrot_run_native. You can set the stack top. You can register each PMC with dod_reg

Re: Outstanding parrot issues?

2004-04-30 Thread Leopold Toetsch
Nicholas Clark <[EMAIL PROTECTED]> wrote: > On Fri, Apr 30, 2004 at 06:25:50PM +0200, Leopold Toetsch wrote: >> register each PMC with C. > But I suspect that there will be embedders of parrot who want to do this - > register only 1 or 2 PMCs Th

RE: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 2:58 PM -0400 4/30/04, Bryan C. Warnock wrote: On Fri, 2004-04-30 at 13:53, Dan Sugalski wrote: Parrot, at the very low levels, makes no distinction between strings and buffers--as far as it's concerned they're the same thing, and either can hang off an S register. (Ultimately, when *I* talk

IO layers ( Re: Strings Manifesto)

2004-04-30 Thread Jeff Clites
On Apr 30, 2004, at 9:35 AM, Leopold Toetsch wrote: Jeff Clites <[EMAIL PROTECTED]> wrote: Yes, my intention there was for read-as-strings, you'd push a string-ification layer onto the stack. For byte-wise IO, you wouldn't. Ok. I/O maintainers, please jump in. And my thoughts in this regard, to be

RE: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 12:18 PM -0400 4/30/04, Butler, Gerald wrote: A string is what Dan described in his various postings on strings. Nuff said. Gerald Butler responds: Yes, I know a "String" is what Dan described. He described a thingy made up of 32-bit Values where each value represented a "Code-Point". Now,

Re: A12 Versioning

2004-04-30 Thread Larry Wall
On Thu, Apr 29, 2004 at 01:36:39PM +0200, Aldo Calpini wrote: : On Mon, 2004-04-26 at 16:20, Richard Proctor wrote: : > Issues: : > : > 1) Why does this only use Version and Author? Suppose there are versions : > for different oses or that use other particular libraries that are wanted : > or not

RE: Bit ops on strings

2004-04-30 Thread Butler, Gerald
-Original Message- From: Aaron Sherman [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 11:58 AM To: Butler, Gerald Cc: Perl6 Internals List Subject: RE: Bit ops on strings On Fri, 2004-04-30 at 09:47, Butler, Gerald wrote: > If I may interject for a moment: Let me start by sayin

Re: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 2:57 AM +1000 5/1/04, Andre Pang wrote: Of course Parrot should have a function to reinterpret something of a string type as raw binary data and vice versa, but don't mix binary data with strings: they are completely different types, and raw binary data should never be able to be put into a s

Re: A12: a doubt about .meta, .dispatcher and final methods

2004-04-30 Thread Larry Wall
On Thu, Apr 29, 2004 at 01:56:30PM +0200, Aldo Calpini wrote: : On Fri, 2004-04-23 at 17:24, Larry Wall wrote: : > [...] : > : > On the sixth hand, by that argument, since .dispatcher is aiming at : > a Class, it should be an uppercase C<>. :-) : : why not wash all these hands altogether? : :

Re: A12: on inheriting wrappers

2004-04-30 Thread Larry Wall
On Fri, Apr 30, 2004 at 06:00:27PM +0200, Aldo Calpini wrote: : role Logging { : POST { : foreach ( ::_.meta.getmethods() ) -> $method { : $method.wrap( { : log($somewhere, "calling $method"); : call; :

Re: A12: on inheriting wrappers

2004-04-30 Thread Larry Wall
On Fri, Apr 30, 2004 at 11:14:55AM +0200, Aldo Calpini wrote: : class Animal { : our @.zoo; : &new.wrap( { : my @results = call(); : push(@.zoo, @results[0]); : return @results; : } ); : } That would almost certainly fail with an

Re: Outstanding parrot issues?

2004-04-30 Thread Nicholas Clark
On Fri, Apr 30, 2004 at 06:25:50PM +0200, Leopold Toetsch wrote: > Nicholas Clark <[EMAIL PROTECTED]> wrote: > > This is true. And yes you need to set a stack top if you're expecting the > > stack walking to find things you own. But I'm thinking about the case where > > the embedding app registe

Re: Bit ops on strings

2004-04-30 Thread Andre Pang
On 30/04/2004, at 11:47 PM, Butler, Gerald wrote: 1. String - low-level, abstract, base class (or in Perl6 terms role -- I think) which represents a "logically" contiguous series of Parrot Int 2. BinaryString - inherits from String, represents a "logically" contiguous series of "byt

RE: Bit ops on strings

2004-04-30 Thread Aaron Sherman
On Fri, 2004-04-30 at 12:18, Butler, Gerald wrote: > Now, we > have people talking about doing "LSL/LSR" on "Strings". That is 100% > inconsistent with that definition of a "String". Not at all, and keep in mind that I didn't propose this out of the blue. "bands", "bxors" and "bors" are existing

Re: A12: on inheriting wrappers

2004-04-30 Thread Abhijit A. Mahabal
> > role Logging { > > POST { > > foreach ( ::_.meta.getmethods() ) -> $method { > > $method.wrap( { > > log($somewhere, "calling $method"); > > call; > > log($somewhere, "called $method"); > >

Re: Outstanding parrot issues?

2004-04-30 Thread Nicholas Clark
On Fri, Apr 30, 2004 at 06:25:50PM +0200, Leopold Toetsch wrote: > Well, Parrot does DOD/GC. It'll not start refcounting ... But I really > don't think, that this is an issue. You just need to start your app like > this: > > main() {} > void *stack_top; > return real_main(stack_top); /

Re: [perl #29261] [PATCH Wrap Out Parameters in PMCs]

2004-04-30 Thread chromatic
On Fri, 2004-04-30 at 05:48, Dan Sugalski wrote: > If it alters the way things look to bytecode, just make sure to > update the docs and patch up the existing wrapping libraries. I'll take a look at Leo's new docs and patch everything with an offending signature in src/call_list.txt. Anyone who

Re: Strings Manifesto

2004-04-30 Thread Leopold Toetsch
Jeff Clites <[EMAIL PROTECTED]> wrote: > Yes, my intention there was for read-as-strings, you'd push a > string-ification layer onto the stack. For byte-wise IO, you wouldn't. Ok. I/O maintainers, please jump in. leo

Re: Outstanding parrot issues?

2004-04-30 Thread Leopold Toetsch
Nicholas Clark <[EMAIL PROTECTED]> wrote: > On Fri, Apr 30, 2004 at 01:54:58PM +0200, Leopold Toetsch wrote: > And instead the perl regression tests that use SIGHUP fail. > (There are also tests on SIGUSR1, but not SIGUSR2, it seems) Argh. I grepped through all perl 5.8.0 tests and didn't find SI

Re: A12: on inheriting wrappers

2004-04-30 Thread Abhijit A. Mahabal
On Fri, 30 Apr 2004, Aldo Calpini wrote: > so I wanted to explore the possible interoperability of wrappers and > classes. another example I can think of: > role Logging { > POST { > foreach ( ::_.meta.getmethods() ) -> $method { > $method.wrap( { >

Re: Strings Manifesto

2004-04-30 Thread Larry Wall
On Fri, Apr 30, 2004 at 08:59:55AM -0700, Jeff Clites wrote: : >I can't imagine that : >we use a different data type, this would totally mess with Perl : >compatibility. : : Not necessarily (or, that wasn't my intention). For Ponie, we can do : this: Anded or ored? : 1) Just always implicitly a

Re: A12: on inheriting wrappers

2004-04-30 Thread Abhijit A. Mahabal
On Fri, 30 Apr 2004, Aldo Calpini wrote: > let's suppose I want to build a class that keeps track of the objects it > creates. > > let's suppose that I want this class to be the base for a variety of > classes. > > let's suppose that I decide, rather than fiddling with the default > constructor, t

Re: Outstanding parrot issues?

2004-04-30 Thread Nicholas Clark
On Fri, Apr 30, 2004 at 01:54:58PM +0200, Leopold Toetsch wrote: > Nicholas Clark <[EMAIL PROTECTED]> wrote: > > > 1: Right now, would it be possible for parrot only to install its signal > >handlers when it starts the runloop? > >(given that ponie isn't using the runloop) > > Currently P

Re: [perl #29261] [PATCH Wrap Out Parameters in PMCs]

2004-04-30 Thread Leopold Toetsch
Chromatic <[EMAIL PROTECTED]> wrote: > Following up on the idea Leo and I discussed this morning, here's a > patch that expects integer out parameters to be wrapped in some sort of > INTVALy PMCs. Thanks, applied + changed '2' and '4' too + JIT/i386. leo

Re: [perl #29261] [PATCH Wrap Out Parameters in PMCs]

2004-04-30 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > If it alters the way things look to bytecode, just make sure to > update the docs and patch up the existing wrapping libraries. Docs are adapted. Needed code changes: old for signature "i3i": I5 = arg1 I6 = arg2 new new P5, .PerlInt P5 = arg1

Re: A12: on inheriting wrappers

2004-04-30 Thread Aldo Calpini
On Fri, 2004-04-30 at 16:59, Stéphane Payrard wrote: > Perl6 seems already to have plenty of mechanisms like delegation > to dynamically change the behavior of a class. So, probably, > wrappers is a mechanism more adapted to extend method behavior at > run-time by entities that don't have access to

Re: [Q2] (Re: The strings design document)

2004-04-30 Thread Larry Wall
On Fri, Apr 30, 2004 at 08:38:18AM -0700, Jeff Clites wrote: : On Apr 28, 2004, at 5:01 AM, Dan Sugalski wrote: : : >At 3:17 AM -0700 4/28/04, Jeff Clites wrote: : >>On Apr 23, 2004, at 2:43 PM, Dan Sugalski wrote: : >> : >>>For example, consider the following: : >>> : >>> use Unicode; : >>> ope

Re: Strings Manifesto

2004-04-30 Thread Jeff Clites
On Apr 28, 2004, at 11:25 PM, Leopold Toetsch wrote: Jeff Clites <[EMAIL PROTECTED]> wrote: On Apr 28, 2004, at 4:57 AM, Bryan C. Warnock wrote: Does (that which the masses normally refer to as) binary data fall inside or outside the scope of a string? Some languages make this very clear by provi

RE: Bit ops on strings

2004-04-30 Thread Aaron Sherman
On Fri, 2004-04-30 at 09:47, Butler, Gerald wrote: > If I may interject for a moment: Let me start by saying that I have not drunk the Unicode cool-aid. I'm not at all certain that the overhead required to do all of what Parrot wants to do is warranted, BUT that's beside the point. Parrot is doin

Re: [Q2] (Re: The strings design document)

2004-04-30 Thread Jeff Clites
On Apr 28, 2004, at 5:01 AM, Dan Sugalski wrote: At 3:17 AM -0700 4/28/04, Jeff Clites wrote: On Apr 23, 2004, at 2:43 PM, Dan Sugalski wrote: For example, consider the following: use Unicode; open FOO, "foo.txt", :charset(latin-3); open BAR, "bar.txt", :charset(big5); $filehandle = 0; wh

[CVS ci] some experiments with mmd

2004-04-30 Thread Leopold Toetsch
Besides fixing a bug in the PMC compiler, this changes bxor_p_p_p to use MMD. Nothing fancy yet, just to see, what's needed in the PMC compiler. BTW registering the default for [.PerlInt, 0] segfaults, so this isn't done yet. (perlint.pmc:class_init) Dan, can you please have a look at the segfa

Re: One more thing...

2004-04-30 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > 1) Mark the overload subs as special and change their calling conventions Different calling conventions are not really pleasant for the compiler(s). But doable. > 2) Wrap the overload subs in some bytecode that Does The Right > Thing--takes a continuatio

Re: Bit ops on strings

2004-04-30 Thread Aaron Sherman
On Fri, 2004-04-30 at 10:42, Dan Sugalski wrote: > Bitstring operations ought only be valid on binary data, though, > unless someone can give me a good reason why we ought to allow > bitshifting on Unicode. (And then give me a reasoned argument *how*, > too) 100% agree. If you want to play gam

Re: A12: on inheriting wrappers

2004-04-30 Thread Stéphane Payrard
On Fri, Apr 30, 2004 at 11:14:55AM +0200, Aldo Calpini wrote: > let's suppose I want to build a class that keeps track of the objects it > creates. > > let's suppose that I want this class to be the base for a variety of > classes. > > let's suppose that I decide, rather than fiddling with the

RE: Bit ops on strings

2004-04-30 Thread Butler, Gerald
If I may interject for a moment: -Original Message- From: Bryan C. Warnock [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 9:08 AM To: Dan Sugalski Cc: Perl6 Internals List Subject: Re: Bit ops on strings On Thu, 2004-04-29 at 13:04, Dan Sugalski wrote: > I think left and right sh

Re: Bit ops on strings

2004-04-30 Thread Dan Sugalski
At 9:07 AM -0400 4/30/04, Bryan C. Warnock wrote: On Thu, 2004-04-29 at 13:04, Dan Sugalski wrote: I think left and right shift of strings should work the same way that shifts on ints works--that is, it doesn't grow, bits just fall off the end. You can decide whether to sign-extend or 0-extend,

Re: [perl #29261] [PATCH Wrap Out Parameters in PMCs]

2004-04-30 Thread Dan Sugalski
At 7:44 AM +0200 4/30/04, Leopold Toetsch wrote: Chromatic <[EMAIL PROTECTED]> wrote: Following up on the idea Leo and I discussed this morning, here's a patch that expects integer out parameters to be wrapped in some sort of INTVALy PMCs. This solves my problem rather nicely. Good. As soon as

Re: One more thing...

2004-04-30 Thread Dan Sugalski
At 11:35 AM +0200 4/30/04, Leopold Toetsch wrote: Dan Sugalski <[EMAIL PROTECTED]> wrote: If we go MMD all the way, we can skip the bytecode->C->bytecode transition for MMD functions that are written in parrot bytecode, and instead dispatch to them like any other sub. Not really. Or not w/o sign

Re: MMD and/or vtable inconsistencies

2004-04-30 Thread Dan Sugalski
At 10:39 AM +0200 4/30/04, Leopold Toetsch wrote: - There is only an is_equal vtable but an MMD_STREQ define and default function - {eq,ne}_{str,num} opcodes are using VTABLE_cmp, which is fine but could be inefficient especially for strings - cmp/cmp_num is handled by the same MMD slot Yeah, we

Re: MMD table setup semantics

2004-04-30 Thread Dan Sugalski
At 9:37 AM -0400 4/29/04, William Coleda wrote: Leopold Toetsch wrote: - TclInt - TclFloat - TclObject - TclString This is a small subset of PMCs enumerating *current* scalars. I can't imagine that e.g. tcl is happy, when a tcl scalar falls back to a morphing variant of a Perl scalar. OTOH just doi

Re: Bit ops on strings

2004-04-30 Thread Bryan C. Warnock
On Thu, 2004-04-29 at 13:04, Dan Sugalski wrote: > I think left and right shift of strings should work the same way that > shifts on ints works--that is, it doesn't grow, bits just fall off > the end. You can decide whether to sign-extend or 0-extend, either > one's OK. Have we[1] finished work

Re: Outstanding parrot issues?

2004-04-30 Thread Leopold Toetsch
Nicholas Clark <[EMAIL PROTECTED]> wrote: > 1: Right now, would it be possible for parrot only to install its signal >handlers when it starts the runloop? >(given that ponie isn't using the runloop) Currently Parrot installs just one handler (SIGHUP) for testing only. See src/events.c. So

Re: Test result on win32 with 2 failures

2004-04-30 Thread Leopold Toetsch
Ron Blaschke <[EMAIL PROTECTED]> wrote: >> Here's a first tentative test result on win32, with VC 7.1 and >> nmake, ICU 2.8 (win32 binary build). Is any of this unexpected? >> Failed Test Stat Wstat Total Fail Failed List of Failed >> --

Re: [perl #29257] Build libnci.so by default

2004-04-30 Thread Leopold Toetsch
Bernhard Schmalhofer <[EMAIL PROTECTED]> wrote: > 'libnci.so' is used for testing the native call interface. However I noticed > that the tests in t/pmc/nci.t were skipped, because 'libnci.so' wasn't built > by default. The attached patch adds that library to the target 'all'. Good. Do we have cu

Re: One more thing...

2004-04-30 Thread Leopold Toetsch
Leopold Toetsch <[EMAIL PROTECTED]> wrote: > ... Operator overloading has to > have some cost :) $ ./bench -b=over#[1] Numbers are relative to the first one. (lower is better) p-j-Oc perl-th perlpython ruby overload100%151%131%- - Not too bad,

Re: One more thing...

2004-04-30 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > If we go MMD all the way, we can skip the bytecode->C->bytecode > transition for MMD functions that are written in parrot bytecode, and > instead dispatch to them like any other sub. Not really. Or not w/o significant overhead for MMD functions implemented

Re: Test::More SKIP block

2004-04-30 Thread Michael G Schwern
On Thu, Apr 29, 2004 at 02:01:12PM +0200, H.Merijn Brand wrote: > or can I change the plan halfway Not if you declared the number of tests, the T::H format requires that the plan be written before tests are run, but you could just use 'no_plan'. Then you can just exit() whenever and that's that.

Re: [ANNOUNCE] Devel::Cover 0.41

2004-04-30 Thread Paul Johnson
On Thu, Apr 29, 2004 at 08:05:35PM +0200, Tels wrote: > On Friday 30 April 2004 00:40, Gabor Szabo wrote: > > Where would we be without your work ? > > > > Out in the desert to fall prey to any bug ? > > At least we can run and get some cover. (!) > > Thank you ! > > Exactly! Especially the abi

[perl #29257] Build libnci.so by default

2004-04-30 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #29257] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=29257 > Hi, 'libnci.so' is used for testing the native call interface. However I not

Re: MMD table setup semantics

2004-04-30 Thread William Coleda
Leopold Toetsch wrote: - TclInt - TclFloat - TclObject - TclString This is a small subset of PMCs enumerating *current* scalars. I can't imagine that e.g. tcl is happy, when a tcl scalar falls back to a morphing variant of a Perl scalar. OTOH just doing the math operations would be fine. So what'

Re: Test result on win32 with 2 failures

2004-04-30 Thread Ron Blaschke
> Here's a first tentative test result on win32, with VC 7.1 and > nmake, ICU 2.8 (win32 binary build). Is any of this unexpected? > Failed Test Stat Wstat Total Fail Failed List of Failed > --- > t\pmc\perlnum.t1

A12: on inheriting wrappers

2004-04-30 Thread Aldo Calpini
let's suppose I want to build a class that keeps track of the objects it creates. let's suppose that I want this class to be the base for a variety of classes. let's suppose that I decide, rather than fiddling with the default constructor, to wrap it up. something like: class Animal {

Re: [ANNOUNCE] Devel::Cover 0.41

2004-04-30 Thread Tels
-BEGIN PGP SIGNED MESSAGE- Moin, On Friday 30 April 2004 00:40, Gabor Szabo wrote: > Where would we be without your work ? > > Out in the desert to fall prey to any bug ? > At least we can run and get some cover. > > > Thank you ! Exactly! Especially the ability to look at http://pjcj.s

Re: Cygwin build failing for some time

2004-04-30 Thread PerlDiscuss - Perl Newsgroups and mailing lists
I checked out the development copy of ICU from CVS and am now able to get parrot to statically link to ICU. It however coredumps everytime parrot is invoked. My guess is either parrot's internals are too focused on the 2.6.1 of ICU or I haven't really had as much success as I thought with ICU. I

MMD and/or vtable inconsistencies

2004-04-30 Thread Leopold Toetsch
- There is only an is_equal vtable but an MMD_STREQ define and default function - {eq,ne}_{str,num} opcodes are using VTABLE_cmp, which is fine but could be inefficient especially for strings - cmp/cmp_num is handled by the same MMD slot leo