Re: [perl #37578] [TODO] PIR - simple register allocation

2009-02-06 Thread Will Coleda
On Fri, Feb 6, 2009 at 8:32 AM, Andrew Whitworth via RT wrote: > On Thu Feb 05 18:11:58 2009, pmichaud wrote: >> I'm okay with closing the ticket, assuming that :unique_reg does >> indeed cause the register allocation algorithm to be simple. >> (IIRC, as recently as a few months ago this wasn't th

Re: [perl #55586] [BUG] Parrot no longer uses HLL_map types?

2009-02-06 Thread Will Coleda
On Fri, Feb 6, 2009 at 8:21 AM, kjstol wrote: > On Fri, Feb 6, 2009 at 1:12 PM, James Keenan via RT < > parrotbug-follo...@parrotcode.org> wrote: > >> So here's the current state of what Coke originally posted: >> >> $ cat tclsh.pir >> .HLL 'Tcl' >> .loadlib 'tcl_group' >> >> .sub main :main >> .p

Re: [perl #55586] [BUG] Parrot no longer uses HLL_map types?

2009-02-06 Thread kjstol
On Fri, Feb 6, 2009 at 1:12 PM, James Keenan via RT < parrotbug-follo...@parrotcode.org> wrote: > So here's the current state of what Coke originally posted: > > $ cat tclsh.pir > .HLL 'Tcl' > .loadlib 'tcl_group' > > .sub main :main > .param pmc argv > foo(argv) > .end > > .sub foo > .param pmc a

Re: [perl #58034] [TODO] save config_args for make reconfig

2009-02-06 Thread Reini Urban
2009/2/6 Reini Urban : > 2009/2/6 James Keenan via RT : >> If so, then I wonder why you are using 'make clean' instead of 'make >> realclean'. We've always said that 'make clean' undoes the effect of >> 'make', whereas 'make realclean' undoes the effect of both 'perl >> Configure.pl' and 'make'.

Re: [perl #58034] [TODO] save config_args for make reconfig

2009-02-06 Thread Reini Urban
2009/2/6 James Keenan via RT : > On Thu Feb 05 01:38:19 2009, rurban wrote: >> On Tue Jan 13 17:19:39 2009, allison wrote: >> > Ticket rejected, no on automatic reconfiguration. Consult with jkeenan >> > on storing configuration args. >> >> Attached patch gets the subject right, make reconfig works

Re: [perl #55586] [BUG] Parrot no longer uses HLL_map types?

2009-02-06 Thread kjstol
.HLL has been changed into a one-operand directive:write .HLL 'Tcl'. the second operand indicated the (I think) shared lib containing the language's PMCs, if any. Use '.loadlib' for that. So: .HLL 'Tcl' .loadlib 'tcl_group' is equivalent to the old, deprecated and removed: .HLL 'Tcl', 'tcl_group'