diff options
author | Father Chrysostomos <sprout@cpan.org> | 2018-01-21 21:55:00 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2018-02-18 16:25:42 -0800 |
commit | 1f1dcfb516e063c29a4b9823ad97b1fc58ffc930 (patch) | |
tree | 7f3616e6e28e78d9e1549eeca675453b6cbfedf7 /mg_raw.h | |
parent | 6de18f4499a45f0d6876f2aca180b8a9f06e9240 (diff) | |
download | perl-1f1dcfb516e063c29a4b9823ad97b1fc58ffc930.tar.gz |
‘Nonelems’ for pushing sparse array on the stack
To avoid having to create deferred elements every time a sparse array
is pushed on to the stack, store a magic scalar in the array itself,
which av_exists and refto recognise as not existing.
This means there is only a one-time cost for putting such arrays on
the stack.
It also means that deferred elements that live long enough don’t
start pointing to the wrong array entry if the array gets shifted (or
unshifted/spliced) in the mean time. Instead, the scalar is already
in the array, so it cannot lose its place. This fix only applies
when the array as a whole is pushed on to the stack, but it could be
extended in future commits to apply to other places where we currently
use deferred elements.
Diffstat (limited to 'mg_raw.h')
-rw-r--r-- | mg_raw.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -78,6 +78,8 @@ "/* utf8 'w' Cached UTF-8 information */" }, { 'x', "want_vtbl_substr | PERL_MAGIC_VALUE_MAGIC", "/* substr 'x' substr() lvalue */" }, + { 'Y', "want_vtbl_nonelem | PERL_MAGIC_VALUE_MAGIC", + "/* nonelem 'Y' Array element that does not exist */" }, { 'y', "want_vtbl_defelem | PERL_MAGIC_VALUE_MAGIC", "/* defelem 'y' Shadow \"foreach\" iterator variable / smart parameter vivification */" }, { '\\', "want_vtbl_lvref", |