in reply to Re^2: what definition of Istack_sp
in thread what definition of Istack_sp
However in XS code (rather than in the core), it's more complex. At one point PL_stack_sp was defined as a function call, which would shield the XS code from changes in the interpreter struct layout across differing perl versions - so XS modules wouldn't have be to recompiled for each new perl release. However, this slowed XS code down a lot, and there were other things which also broke binary compatibility, so that was ditched and we just changed the binary guarantee to apply only across minor releases.
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: what definition of Istack_sp
by xiaoyafeng (Deacon) on Jan 14, 2019 at 08:14 UTC | |
by dave_the_m (Monsignor) on Jan 14, 2019 at 10:54 UTC |