Re: [perl #52842] [CORE] Remove stack.ops and user_stack

2008-04-24 Thread Will Coleda
On Thu, Apr 24, 2008 at 2:10 AM, Patrick R. Michaud via RT <[EMAIL PROTECTED]> wrote: > As of r27155 the user_stack data structure has been removed from the core. > > After removing stack.ops, the constants STACK_ENTRY_INT, > STACK_ENTRY_FLOAT, STACK_ENTRY_STRING, and STACK_ENTRY_POINTER > aren'

Re: [perl #52842] [CORE] Remove stack.ops and user_stack

2008-04-24 Thread Andrew Whitworth
PDD09 lists 3 stacks which are cleaned by the collector, the system stack, the pmc register stack, and the general/user stack. Do all of these still exist? If not, this is a small update to make. --Andrew Whitworth On Thu, Apr 24, 2008 at 2:10 AM, Patrick R. Michaud via RT <[EMAIL PROTECTED]> wro

Re: [perl #52842] [CORE] Remove stack.ops and user_stack

2008-04-21 Thread Bob Rogers
From: "Patrick R. Michaud via RT" <[EMAIL PROTECTED]> Date: Mon, 21 Apr 2008 18:00:31 -0700 On Sat, Apr 12, 2008 at 08:26:34PM -0700, Bob Rogers wrote: >The ops in src/ops/stack.ops are holdovers from the bad old days of > limited registers. In modern times, it is more versatil

Re: [perl #52842] [CORE] Remove stack.ops and user_stack

2008-04-21 Thread Patrick R. Michaud
On Sat, Apr 12, 2008 at 08:26:34PM -0700, Bob Rogers wrote: >The ops in src/ops/stack.ops are holdovers from the bad old days of > limited registers. In modern times, it is more versatile (and probably > faster) to create an array and use it as an explicit stack via push and > pop operations.