RE: [perl #43269] [BUG] setline is tied to PIR source

2008-01-03 Thread Allam Reddy, Thomas
M To: Bob Rogers Cc: [EMAIL PROTECTED]; perl6-internals@perl.org Subject: Re: [perl #43269] [BUG] setline is tied to PIR source On Thu, Jan 03, 2008 at 09:40:23PM -0500, Bob Rogers wrote: >From: "Patrick R. Michaud via RT" <[EMAIL PROTECTED]> >Date: Wed, 02 Jan 2008 2

Re: [perl #43269] [BUG] setline is tied to PIR source

2008-01-03 Thread Patrick R. Michaud
On Thu, Jan 03, 2008 at 09:40:23PM -0500, Bob Rogers wrote: >From: "Patrick R. Michaud via RT" <[EMAIL PROTECTED]> >Date: Wed, 02 Jan 2008 22:29:35 -0800 > >On Wed Jun 20 16:23:40 2007, pmichaud wrote: >> On Thu, Jun 21, 2007 at 12:08:33AM +0100, Jonathan Worthington wrote: >>

[perl #43269] [BUG] setline is tied to PIR source

2008-01-03 Thread Bob Rogers
From: "Patrick R. Michaud via RT" <[EMAIL PROTECTED]> Date: Wed, 02 Jan 2008 22:29:35 -0800 On Wed Jun 20 16:23:40 2007, pmichaud wrote: > On Thu, Jun 21, 2007 at 12:08:33AM +0100, Jonathan Worthington wrote: > > > > Currently HLL debug info stuff is spec'd, but not implemented.

[perl #43269] [BUG] setline is tied to PIR source

2008-01-02 Thread Patrick R. Michaud via RT
On Wed Jun 20 16:23:40 2007, pmichaud wrote: > On Thu, Jun 21, 2007 at 12:08:33AM +0100, Jonathan Worthington wrote: > > Patrick R.Michaud (via RT) wrote: > > >The 'setline' opcode doesn't do what I expect it to do, which > > >is to associa

Re: [perl #43269] [BUG] setline is tied to PIR source

2007-06-20 Thread Patrick R. Michaud
On Thu, Jun 21, 2007 at 12:08:33AM +0100, Jonathan Worthington wrote: > Patrick R.Michaud (via RT) wrote: > >The 'setline' opcode doesn't do what I expect it to do, which > >is to associate runtime errors with lines in HLL source. > > Currently HLL debug info

Re: [perl #43269] [BUG] setline is tied to PIR source

2007-06-20 Thread Jonathan Worthington
Patrick R.Michaud (via RT) wrote: The 'setline' opcode doesn't do what I expect it to do, which is to associate runtime errors with lines in HLL source. Currently HLL debug info stuff is spec'd, but not implemented. Well, OK, the storage of it in bytecode is spec'd,

[perl #43269] [BUG] setline is tied to PIR source

2007-06-20 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #43269] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=43269 > The 'setline' opcode doesn't do what I expect it to do, whi

Re: IMCC Bug? comments after setline

2003-12-03 Thread Leopold Toetsch
David Chan <[EMAIL PROTECTED]> wrote: > Hi, > IMCC appears to choke on comments after "setline", especially if they > contain digits. Thanks for reporting that - and sorry for the late answer. I've fixed the lexer. > David leo -- Leopold Toetsch <[EMA

IMCC Bug? comments after setline

2003-11-19 Thread David Chan
Hi, IMCC appears to choke on comments after "setline", especially if they contain digits. Is the lexer expecting /setline +[0-9]+\s*$/ ? Should this be fixed? It appears to break pirate, which puts comments on every line.

Re: setline?

2003-09-25 Thread Leopold Toetsch
Michal Wallace <[EMAIL PROTECTED]> wrote: > Sorry, I've been following this list > with one eye tied behind my back... > What happened to setline? Should I > emit something else instead? Both C and C are parsed and swallowed in the lexer. The data will finally end in a

Re: setline?

2003-09-25 Thread Dan Sugalski
At 7:48 PM -0400 9/25/03, Michal Wallace wrote: Sorry, I've been following this list with one eye tied behind my back... What happened to setline? Should I emit something else instead? It's never really been the right thing to do, but we've not got the alternative, line metadata

setline?

2003-09-25 Thread Michal Wallace
Sorry, I've been following this list with one eye tied behind my back... What happened to setline? Should I emit something else instead? Sincerely, Michal J Wallace Sabren Enterprises, Inc. - contact: [EMAIL PROTECTED] hosting: http://www.cornerhos

Re: setline

2001-12-20 Thread Dan Sugalski
ob offset => line number >mapping. Are .pyc the same? Nope. Lots of SETLINE opcodes Dan --"it's like this"--- Dan Sugalski even samurai [EMAIL PROTECTED]

Re: setline

2001-12-20 Thread Leon Brocard
Dan Sugalski sent the following bits through the ether: > We should come up with an alternative for the bytecode files that > has the line number info out of band. This is what Java bytecode does. It has an oob offset => line number mapping. Are .pyc the same? Leon -- Leon Brocard.

Re: setline

2001-12-19 Thread Dan Sugalski
At 12:36 AM 12/20/2001 +, Simon Cozens wrote: >On Wed, Dec 19, 2001 at 11:38:39PM +, Alex Gough wrote: > > We're clearly doing this wrong, is it really worth calling > > setline every time we *run* the line in question > >We call setline whenever the code gener

Re: setline

2001-12-19 Thread Simon Cozens
On Wed, Dec 19, 2001 at 11:38:39PM +, Alex Gough wrote: > We're clearly doing this wrong, is it really worth calling > setline every time we *run* the line in question We call setline whenever the code generated by the compiler tells us to. If it's so dumb that it calls setli

setline

2001-12-19 Thread Alex Gough
We're clearly doing this wrong, is it really worth calling setline every time we *run* the line in question, surely this is better supported through some sort of bytecode position -> line number mapping which is created at compile time, essentially a part of the bytecode format, rather