in reply to What perl operations will consume C stack space?
Second, calls into XS routines that then call back into Perl.
There are probably a few others (recursive sorts? recursive runloop switches?) but by and large part of the initial design of Perl 5 was to be as stackless as practical (in the C-stackless sense). So all of Perl's stacks are really on the heap, and nearly all of the standard opcodes leave the C stack in the same state.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: What perl operations will consume C stack space?
by BrowserUk (Patriarch) on Feb 27, 2006 at 04:01 UTC |