* Split out HEK size calculation into hek_size(). Add the shared HE overhead.
* Handle shared hash key scalars correctly.
* GvNAME() is shared from 5.10 onwards.
+ * Count HvNAME(), the HV "aux" struct, and the mro_meta struct.
0.76 2011-05-11 nicholas
* Just fix the version number in the line below.
}
}
}
+#ifdef HvAUX
+ if (SvOOK(thing)) {
+ /* This direct access is arguably "naughty": */
+ struct mro_meta *meta = HvAUX(thing)->xhv_mro_meta;
+ st->total_size += sizeof(struct xpvhv_aux);
+ hek_size(aTHX_ st, HvNAME_HEK(thing), 1);
+ if (meta) {
+ st->total_size += sizeof(struct mro_meta);
+ sv_size(aTHX_ st, (SV *)meta->mro_nextmethod, TOTAL_SIZE_RECURSION);
+#if PERL_VERSION > 10 || (PERL_VERSION == 10 && PERL_SUBVERSION > 0)
+ sv_size(aTHX_ st, (SV *)meta->isa, TOTAL_SIZE_RECURSION);
+#endif
+#if PERL_VERSION > 10
+ sv_size(aTHX_ st, (SV *)meta->mro_linear_all, TOTAL_SIZE_RECURSION);
+ sv_size(aTHX_ st, meta->mro_linear_current, TOTAL_SIZE_RECURSION);
+#else
+ sv_size(aTHX_ st, (SV *)meta->mro_linear_dfs, TOTAL_SIZE_RECURSION);
+ sv_size(aTHX_ st, (SV *)meta->mro_linear_c3, TOTAL_SIZE_RECURSION);
+#endif
+ }
+ }
+#else
+ check_new_and_strlen(st, HvNAME_get(thing));
+#endif
TAG;break;
#!/usr/bin/perl -w
-use Test::More tests => 26;
+use Test::More tests => 30;
use strict;
use Devel::Size qw(size total_size);
is ($small, $big, 'The "shared" part of shared hash keys is spotted');
}
}
+
+{
+ use vars '%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG';
+ my $hash_size = total_size(\%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG);
+ cmp_ok($hash_size, '>', 0, 'Hash size is sane');
+ my $stash_size
+ = total_size(\%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG::);
+ cmp_ok($stash_size, '>',
+ $hash_size + length 'DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG',
+ 'Stash size is larger than hash size plus length of the name');
+}
+
+{
+ my %h = (Perl => 'Rules');
+ my $hash_size = total_size(\%h);
+ cmp_ok($hash_size, '>', 0, 'Hash size is sane');
+ my $a = keys %h;
+ if ($] < 5.010) {
+ is(total_size(\%h), $hash_size,
+ "Creating iteration state doesn't need to allocate storage");
+ # because all hashes carry the overhead of this storage from creation
+ } else {
+ cmp_ok(total_size(\%h), '>', $hash_size,
+ 'Creating iteration state allocates storage');
+ }
+}