[perl #41230] [BUG] t/codingstd/perlcritic.t uses too many resources

2007-03-12 Thread Will Coleda via RT
Updated to run *all* the policies at once (thereby only processing each file via PPI once), but still break out the test reports by policy. Runtime for comparable tests now at 1m15s, down from 16m8s, ~13 times speedup. Memory usage stayed under 50M the whole time (using Perl::Critic 1.03) Str

Re: Patches for review

2007-03-12 Thread Sam Vilain
Will Coleda wrote: > In *general*, yes, tickets good, so we don't lose any patches, even > the minor ones. > > That said, email a list of subjects and I'll take a look. (most of > what I see from you on the list went to parrotbug and so already has > a ticket.) > Well, look at that, they

Re: Patches for review

2007-03-12 Thread Will Coleda
In *general*, yes, tickets good, so we don't lose any patches, even the minor ones. That said, email a list of subjects and I'll take a look. (most of what I see from you on the list went to parrotbug and so already has a ticket.) Regards. On Mar 12, 2007, at 10:30 PM, Sam Vilain wrote:

Patches for review

2007-03-12 Thread Sam Vilain
I've submitted a set of changes to the ML for review. Do you really want tickets for all of those changes? Some of them are quite minor. Sam.

stuck with tge transformation for pynie using PAST::VarList

2007-03-12 Thread Klaas-Jan Stol
Hi, I'm working on parameters for Pynie. (functions are working! see my latest patch, still pending) I have some trouble with the tree transformation for Pynie. If anybody knows how to solve this, help would greatly be appreciated. The problem seems to be with PAST::VarList. Now, in Pynie thi

Re: [perl #41788] [BUG] Real registers are limited to 2 digits

2007-03-12 Thread Jonathan Worthington
chromatic wrote: On Monday 12 March 2007 10:52, Nuno Carvalho via RT wrote: I've run the tests and didn't find any test failling because of this change. With this change we can have "P999..999", if a limit to the number of digits (or size) in the register name is defined i can change

Re: [perl #41788] [BUG] Real registers are limited to 2 digits

2007-03-12 Thread Leopold Toetsch
Am Montag, 12. März 2007 21:34 schrieb chromatic: > What does this do to the register allocator and to memory usage?  If I use > integer registers 10,000 and 100,000, will Parrot allocate a sparse data > structure? Of course not ;) PASM regs are "physical" registers. The register allocator alloca

Re: [perl #41788] [BUG] Real registers are limited to 2 digits

2007-03-12 Thread chromatic
On Monday 12 March 2007 10:52, Nuno Carvalho via RT wrote: > I've run the tests and didn't find any test failling because of this > change. With this change we can have "P999..999", if a limit to > the number of digits (or size) in the register name is defined i can > change the lexer to a

[perl #41788] [BUG] Real registers are limited to 2 digits

2007-03-12 Thread Nuno Carvalho via RT
Greetings, On Sun Mar 11 08:03:06 2007, kjs wrote: > Currently, S, N, I and P registers are limited to 2 digits; that is, you > can only use: > > [S|N|I|P]0 to [S|N|I|P]99. > > For instance, this fails: > > .sub main > P333 = new .Integer > P333 = 1 > .end > > Since Parrot does not have a

Re: [perl #41790] [PATCH] Change sub's get_string to return short name

2007-03-12 Thread Matt Diephouse
Jonathan Worthington <[EMAIL PROTECTED]> wrote: Will Coleda (via RT) wrote: > So, since we can we can already get the current namespace with: > > current_ns = interp['namespace'] > This isn't a full replacement of the functionality we'd "lose", since you may want to get the namespace of a sub ot

Parrot Bug Summary

2007-03-12 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Mar 12 14:00:01 2007 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

Re: [perl #41619] [PATCH] add add_attr, rem_attr, and rem_attr_str vtable methods

2007-03-12 Thread Alek Storm
I'm still working on my use case, but it appears the new MetaClass PMC (src/pmc/metaclass.pmc) could use this vtable method as well; currently it only has an add_attribute PMETHOD. On 3/4/07, Alek Storm <[EMAIL PROTECTED]> wrote: Hmm, no, these deal with normal object attributes. I believe you

[perl #41788] [BUG] Real registers are limited to 2 digits

2007-03-12 Thread via RT
# New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #41788] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=41788 > Currently, S, N, I and P registers are limited to 2 digits; that is, you can only use

[perl #41784] [parrotcode] Link to IMCC FAQ is broken

2007-03-12 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #41784] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=41784 > Hi, on http://www.parrotcode.org/faq/ in noticed that the link to 'IMCC FAQ' i

Re: [perl #41790] [PATCH] Change sub's get_string to return short name

2007-03-12 Thread Jonathan Worthington
Will Coleda (via RT) wrote: I have some work for Tcl pending commit that requires I know the name a .Sub was invoked with at runtime, so I need a way to get at the name at runtime. Currently, the following code (jisom++) .sub main :main 'foo'() .end .sub 'foo' print "We're