9 years agowrong test for magicalness
Zefram [Tue, 27 Aug 2013 14:57:35 +0000]
wrong test for magicalness

Devel::Size looks at the SvMAGIC pointer for any SV that's SVt_PVMG or above.
This is incorrect.  It is actually necessary (and sufficient) to check the
SvMAGICAL flag.  Attached patch fixes.

9 years agoBump $VERSION to 0.79_50
Nicholas Clark [Sat, 28 Feb 2015 13:45:13 +0000]
Bump $VERSION to 0.79_50

9 years agoThis is 0.79 - update META.yml, and META.json
Nicholas Clark [Sun, 12 May 2013 13:55:32 +0000]
This is 0.79 - update META.yml, and META.json

10 years agoBump $VERSION to 0.79
Nicholas Clark [Sun, 12 May 2013 13:53:32 +0000]
Bump $VERSION to 0.79

10 years agoThis is 0.78_52 - update META.yml, and META.json
Nicholas Clark [Fri, 10 May 2013 12:44:20 +0000]
This is 0.78_52 - update META.yml, and META.json

10 years agoCorrect the error in the fix for cop_stashpv on v5.17.1 and later.
Nicholas Clark [Fri, 10 May 2013 12:38:19 +0000]
Correct the error in the fix for cop_stashpv on v5.17.1 and later.

Remember to go back and test on the various blead versions *after* making the
fix for the problems found on the various stable versions.

10 years agoBump $VERSION to 0.78_52
Nicholas Clark [Fri, 10 May 2013 12:37:52 +0000]
Bump $VERSION to 0.78_52

10 years agoThis is 0.78_51 - update META.yml, and add META.json
Nicholas Clark [Fri, 10 May 2013 12:19:09 +0000]
This is 0.78_51 - update META.yml, and add META.json

10 years agoAs of v5.17.1, cop_stashpv no longer exists on threaded perls.
Nicholas Clark [Fri, 10 May 2013 12:06:56 +0000]
As of v5.17.1, cop_stashpv no longer exists on threaded perls.

Instead, the cop's stash is indirected via cop_stashoff and PL_stashpad.
(See blead commit d4d03940c58a0177)

10 years agoThe cop_stash pointer isn't reference counted, so don't add its size.
Nicholas Clark [Fri, 10 May 2013 11:54:15 +0000]
The cop_stash pointer isn't reference counted, so don't add its size.

See rt.perl.org #117941 for the obscure problems that this lack of reference
counting can cause.

10 years agoCorrect the year for the 0.78 release in the CHANGES file.
Nicholas Clark [Fri, 10 May 2013 11:48:57 +0000]
Correct the year for the 0.78 release in the CHANGES file.

10 years agoBump $VERSION to 0.78_51
Nicholas Clark [Fri, 10 May 2013 10:41:57 +0000]
Bump $VERSION to 0.78_51

10 years agoThis is 0.78_50 - update META.yml, and add META.json
Nicholas Clark [Fri, 10 May 2013 09:29:29 +0000]
This is 0.78_50 - update META.yml, and add META.json

10 years agoNote the release number, date and name in the CHANGES file.
Nicholas Clark [Fri, 10 May 2013 09:20:00 +0000]
Note the release number, date and name in the CHANGES file.

10 years agoAn alternative test that CvOUTSIDE is being followed.
Nicholas Clark [Fri, 10 May 2013 09:03:57 +0000]
An alternative test that CvOUTSIDE is being followed.

As of v5.17.2, CvOUTSIDE is NULL on cloned closures, unless they contain a
string eval. Hence the size of closures should differ, as long as Size.xs
is correctly following CvOUTSIDE.

(See blead commit a0d2bbd5c47035a4)

10 years agoUpdate Devel-Size for the new form of pad list.
Zefram [Fri, 10 May 2013 08:42:12 +0000]
Update Devel-Size for the new form of pad list.

10 years agoTest that we can measure that recursion increases the size of the PADLIST.
Nicholas Clark [Fri, 10 May 2013 08:38:43 +0000]
Test that we can measure that recursion increases the size of the PADLIST.

10 years agoStubbed subs no longer have CvOUTSIDE set.
Nicholas Clark [Fri, 10 May 2013 07:25:13 +0000]
Stubbed subs no longer have CvOUTSIDE set.

t/code.t was testing whether Devel::Size was following CvOUTSIDE by relying
on the implementation detail that CvOUTSIDE is set for a subroutine that is
explicitly stubbed, and not set for one that is implicitly stubbed at runtime.

v5.17.0 changed the compile-time behaviour so that no stubbed subroutine has
CvOUTSIDE set, which breaks the assumption of this test. Hence change the test
to verify the new behaviour. However, this leaves us currently with no test
for CvOUTSIDE.

(Based on a patch by Zefram. see RT #83903 and perl's commit 8be227ab5eaa23f2)

10 years agoDon't follow CvSTART() if CvROOT() is NULL.
Zefram [Fri, 10 May 2013 07:09:58 +0000]
Don't follow CvSTART() if CvROOT() is NULL.

For v5.17.2, blead switched to a slab allocator for OPs. During subroutine
compilation, the CV's slab is held in CvSTART(), to avoid extending every
PVCV by one more pointer. Once compilation is complete, the optree slab
pointer becomes accessible at an offset from CvROOT(), and CvSTART() is
set to point to the first OP. However, in some cases, PVCVs in the incomplete
state can become visible to Devel::Size, for example by following the
CvOUTSIDE() from BEGIN blocks. So we need to ignore CvSTART() if CvROOT() is
NULL. (Arguably we should always ignore CvSTART(), as the OP that it points to
should be accessible somewhere in the tree referenced by CvROOT(), but that
change can wait for a later date)

(see RT #83903 and perl's commit 8be227ab5eaa23f2)

11 years agoadd .gitignore
Tim Bunce [Wed, 15 Aug 2012 20:51:32 +0000]
add .gitignore

11 years agoSpelling fix to docs from gregor herrmann [CPAN #78766]
Tim Bunce [Wed, 15 Aug 2012 20:23:33 +0000]
Spelling fix to docs from gregor herrmann [CPAN #78766]

11 years agoBump $VERSION to 0.78_50
Nicholas Clark [Mon, 30 Jul 2012 15:26:56 +0000]
Bump $VERSION to 0.78_50

11 years agoThis is 0.78 - update META.yml and META.json
Nicholas Clark [Thu, 26 Jul 2012 14:39:13 +0000]
This is 0.78 - update META.yml and META.json

11 years agoBump $VERSION to 0.78
Nicholas Clark [Thu, 26 Jul 2012 12:26:04 +0000]
Bump $VERSION to 0.78

11 years agoThis is 0.77_51 - update META.yml and META.json
Nicholas Clark [Tue, 17 Jul 2012 14:47:37 +0000]
This is 0.77_51 - update META.yml and META.json

11 years agoCorrect the code for structured exception handling on MSVC.
bulk 88 [Sat, 2 Jun 2012 00:41:58 +0000]
Correct the code for structured exception handling on MSVC.

11 years agoBump $VERSION to 0.77_51
Nicholas Clark [Tue, 17 Jul 2012 14:31:29 +0000]
Bump $VERSION to 0.77_51

11 years agoThis is 0.77_50 - update META.yml, and add META.json
Nicholas Clark [Sat, 11 Feb 2012 16:10:29 +0000]
This is 0.77_50 - update META.yml, and add META.json

12 years agoSkip tests in t/magic.t that use formline on 5.8.1 and 5.8.2
Nicholas Clark [Fri, 10 Feb 2012 20:01:57 +0000]
Skip tests in t/magic.t that use formline on 5.8.1 and 5.8.2

Those versions have a buggy formline that can trigger an assertion failure.

12 years agoRefactor t/globs.t to avoid the side effects of a change to strict.pm
Nicholas Clark [Fri, 10 Feb 2012 19:48:25 +0000]
Refactor t/globs.t to avoid the side effects of a change to strict.pm

As of blead commit b50b20584a1bbc1a, Implement new 'use 5.xxx' plan,
use strict; will write to %^H. Move the eval that creates the subroutine
into a different scope, a new subroutine generate_glob(), so that its
outside pointer chain doesn't include gv_grew(). This avoids problems with
eval ops changing the side of the %^H copies at runtime.

12 years agoBump $VERSION to 0.77_50
Nicholas Clark [Mon, 16 May 2011 12:40:06 +0000]
Bump $VERSION to 0.77_50

12 years agoThis is 0.77 - update META.yml
Nicholas Clark [Mon, 16 May 2011 12:39:00 +0000]
This is 0.77 - update META.yml

12 years agoBump $VERSION to 0.77
Nicholas Clark [Thu, 12 May 2011 16:34:34 +0000]
Bump $VERSION to 0.77

12 years agoThis is 0.76_50 - update META.yml
Nicholas Clark [Thu, 12 May 2011 16:33:04 +0000]
This is 0.76_50 - update META.yml

12 years agoCount the size of the "effective names" of a hash.
Nicholas Clark [Thu, 12 May 2011 16:26:28 +0000]
Count the size of the "effective names" of a hash.

This code is somewhat cheeky, making direct structure accesses.

12 years agoCount HvNAME(), the HV "aux" struct, and the mro_meta struct.
Nicholas Clark [Thu, 12 May 2011 14:04:17 +0000]
Count HvNAME(), the HV "aux" struct, and the mro_meta struct.

12 years agoGvNAME() is shared from 5.10 onwards.
Nicholas Clark [Thu, 12 May 2011 11:28:38 +0000]
GvNAME() is shared from 5.10 onwards.

12 years agoUse GvFILE_HEK(), if present, in preference to GvFILE()
Nicholas Clark [Thu, 12 May 2011 10:57:13 +0000]
Use GvFILE_HEK(), if present, in preference to GvFILE()

12 years agoHandle shared hash key scalars correctly.
Nicholas Clark [Thu, 12 May 2011 10:39:10 +0000]
Handle shared hash key scalars correctly.

12 years agoSplit out HEK size calculation into hek_size().
Nicholas Clark [Thu, 12 May 2011 09:25:19 +0000]
Split out HEK size calculation into hek_size().

Add the shared HE overhead to the total size.

12 years agoAdd a comment to force emacs to use C mode.
Nicholas Clark [Thu, 12 May 2011 08:54:21 +0000]
Add a comment to force emacs to use C mode.

12 years agoAdd a single (void **) cast to make the C code also valid as C++
Nicholas Clark [Thu, 12 May 2011 08:43:02 +0000]
Add a single (void **) cast to make the C code also valid as C++

12 years agoBump $VERSION to 0.76_50
Nicholas Clark [Wed, 11 May 2011 09:02:19 +0000]
Bump $VERSION to 0.76_50

12 years agoThis is 0.76 - update META.yml
Nicholas Clark [Wed, 11 May 2011 08:38:53 +0000]
This is 0.76 - update META.yml

12 years agoBump $VERSION to 0.76
Nicholas Clark [Wed, 11 May 2011 08:38:00 +0000]
Bump $VERSION to 0.76

12 years agoThis is 0.75_52 - update META.yml
Nicholas Clark [Mon, 9 May 2011 20:00:36 +0000]
This is 0.75_52 - update META.yml

12 years agoDon't count PL_sv_placeholder in the size returned.
Nicholas Clark [Mon, 9 May 2011 07:18:18 +0000]
Don't count PL_sv_placeholder in the size returned.

PL_sv_placeholder is a singleton, process wide, so shouldn't count as part of
the size.

12 years agosv_size() can return void once more.
Nicholas Clark [Sun, 8 May 2011 20:16:43 +0000]
sv_size() can return void once more.

All the code that relied on it returning the result of its call to check_new()
has been removed.

12 years agoReinstate 5.005_xx "support".
Nicholas Clark [Sun, 8 May 2011 17:48:33 +0000]
Reinstate 5.005_xx "support".

i.e. it compiles and passes tests.

12 years agoReplace c*OPx macros with their expansions.
Nicholas Clark [Sun, 8 May 2011 17:41:13 +0000]
Replace c*OPx macros with their expansions.

The expansions are 2 characters longer than the macros. The macros are not
present in 5.005.

12 years agoReinstate 5.6.x "support".
Nicholas Clark [Sun, 8 May 2011 08:16:57 +0000]
Reinstate 5.6.x "support".

i.e. it compiles and passes tests.

12 years agoDon't recurse into op_size() on op->pmnext.
Nicholas Clark [Sun, 8 May 2011 07:38:02 +0000]
Don't recurse into op_size() on op->pmnext.

It doesn't point to an OP owned by the current OP - it is used to form a linked
list that reset uses to find regexps to reset. Moreover, prior to 5.8.0 it can
end up pointing to freed memory, which results in much jollity.
[Bug 20010301.005, a.k.a. RT #5935, fixed in cb55de95c99e4650]

12 years agoReinstate weaken(), inadvertently removed by 8c394e1251fdfe38.
Nicholas Clark [Sat, 7 May 2011 18:59:24 +0000]
Reinstate weaken(), inadvertently removed by 8c394e1251fdfe38.

The test isn't testing as much as intended without it.

12 years agoMagic vtables aren't freed when magic is freed, so don't count them.
Nicholas Clark [Sat, 7 May 2011 10:23:01 +0000]
Magic vtables aren't freed when magic is freed, so don't count them.

They are static structures. Anything that assumes otherwise is buggy.

12 years agoCorrectly handle SvOOK scalars. 5.12 and later don't use SvIVX().
Nicholas Clark [Fri, 6 May 2011 19:29:18 +0000]
Correctly handle SvOOK scalars. 5.12 and later don't use SvIVX().

12 years agoppport.h defined NV if necessary, so no need to duplicate that.
Nicholas Clark [Fri, 6 May 2011 19:16:19 +0000]
ppport.h defined NV if necessary, so no need to duplicate that.

12 years agoAdd -DPURIFY sizes to body_sizes[]
Nicholas Clark [Fri, 6 May 2011 19:07:10 +0000]
Add -DPURIFY sizes to body_sizes[]

Use two macros to simplify the logic - MAYBE_OFFSET() where the normal version
subtracts a STRUCT_OFFSET(), and the purify version subtracts nothing, and
MAYBE_PURIFY() where there is not a simple relationship between the two sizes.

12 years agoUse a table for SV body sizes. These incorporate the space saving post 5.8.x
Nicholas Clark [Thu, 5 May 2011 16:04:36 +0000]
Use a table for SV body sizes. These incorporate the space saving post 5.8.x

For now, the sizes under -DPURIFY aren't correct.

12 years agoIn sv_size(), refactor the PV-derivatives to share as much code as possible.
Nicholas Clark [Thu, 5 May 2011 11:45:10 +0000]
In sv_size(), refactor the PV-derivatives to share as much code as possible.

As a side effect, PV"BM"s are now handled correctly on 5.10.0 and later.

12 years agoIn sv_size(), coalesce all calls to magic_size().
Nicholas Clark [Thu, 5 May 2011 09:50:44 +0000]
In sv_size(), coalesce all calls to magic_size().

12 years agoBump $VERSION to 0.75_52
Nicholas Clark [Thu, 5 May 2011 09:15:51 +0000]
Bump $VERSION to 0.75_52

12 years agoThis is 0.75_51 - update META.yml
Nicholas Clark [Thu, 5 May 2011 09:14:23 +0000]
This is 0.75_51 - update META.yml

12 years agoFor other-than-gcc, generate calls to check_new(...)
Nicholas Clark [Thu, 5 May 2011 09:00:07 +0000]
For other-than-gcc, generate calls to check_new(...)

Only use a static array of vtables on gcc. Some other compilers may be happy
with it, but VC certainly isn't. It's only trivial to determine gcc or not.

12 years agoBump $VERSION to 0.75_51
Nicholas Clark [Thu, 5 May 2011 08:24:30 +0000]
Bump $VERSION to 0.75_51

12 years agoThis is 0.75_50 - update META.yml
Nicholas Clark [Thu, 5 May 2011 08:21:20 +0000]
This is 0.75_50 - update META.yml

12 years agoeval $ExtUtils::MakeMaker::VERSION to avoid warnings about _ not being numeric.
Nicholas Clark [Wed, 4 May 2011 20:41:45 +0000]
eval $ExtUtils::MakeMaker::VERSION to avoid warnings about _ not being numeric.

Frustratingly ExtUtils::MakeMaker->VERSION() returns the literal value of
$ExtUtils::MakeMaker::VERSION so it's just as "not numeric" as reading the
scalar directly.

12 years agoRe-indent Makefile.PL consistently.
Nicholas Clark [Wed, 4 May 2011 20:41:00 +0000]
Re-indent Makefile.PL consistently.

12 years agoSimplify magic_size() by knowing that check_new() returns false for NULL.
Nicholas Clark [Wed, 4 May 2011 20:37:24 +0000]
Simplify magic_size() by knowing that check_new() returns false for NULL.

12 years agoAdd the size of mg_len if mg_ptr is non-NULL.
Nicholas Clark [Wed, 4 May 2011 20:24:58 +0000]
Add the size of mg_len if mg_ptr is non-NULL.

With special cases for UTF-8 caching magic, which abuses mg_len, and for
mg_len == HEf_SVKEY

12 years agoFollow mg_obj, which points to an SV.
Nicholas Clark [Wed, 4 May 2011 19:18:39 +0000]
Follow mg_obj, which points to an SV.

12 years agoAdd tests for sizing magic.
Nicholas Clark [Wed, 4 May 2011 19:14:43 +0000]
Add tests for sizing magic.

12 years agoThe core's magic vtables are global constants, so aren't part of the size.
Nicholas Clark [Wed, 4 May 2011 18:41:54 +0000]
The core's magic vtables are global constants, so aren't part of the size.

Parse perl.h to find the names of the vtables' names, and generate code to add
them all in new_state() as "seen".

12 years agoBump $VERSION to 0.75_50
Nicholas Clark [Wed, 4 May 2011 16:10:22 +0000]
Bump $VERSION to 0.75_50

12 years agoThis is 0.75 - update META.yml
Nicholas Clark [Wed, 4 May 2011 15:23:39 +0000]
This is 0.75 - update META.yml

12 years agoBump $VERSION to 0.75
Nicholas Clark [Wed, 4 May 2011 15:06:21 +0000]
Bump $VERSION to 0.75

12 years agoThis is 0.74_53 - update META.yml
Nicholas Clark [Wed, 4 May 2011 15:00:30 +0000]
This is 0.74_53 - update META.yml

12 years agoSkip the aelemfast size comparison test for perls which predate the code change.
Nicholas Clark [Sun, 1 May 2011 21:24:07 +0000]
Skip the aelemfast size comparison test for perls which predate the code change.

It was merged to maint-5.8 between 5.8.3 and 5.8.4, so 5.8.4 and later have it.
For 5.8.3 and earlier, the assumptions the test makes about sizes (based on op
structure) are bogus.

12 years agoSkip GvFILE on ithreaded 5.8.8 and earlier, as it can point to freed memory.
Nicholas Clark [Sun, 1 May 2011 21:02:59 +0000]
Skip GvFILE on ithreaded 5.8.8 and earlier, as it can point to freed memory.

Probably better to slightly under report sizes, than report something random or
SEGV.

12 years agoSet the pointer alignment (in bits) via a C macro generated by the Makefile.PL
Nicholas Clark [Sun, 1 May 2011 20:06:51 +0000]
Set the pointer alignment (in bits) via a C macro generated by the Makefile.PL

The previous approach of using sizeof(void *) is flat out wrong on a 64 bit
system. The right answer is 3. It gives 4. Which isn't a problem once the
pointer rotation code in check_new() isn't buggy, but isn't as efficient as
desired.

12 years agoFix typo error in bit-vector tracking mechanism, causing bogus "seen before"s.
Nicholas Clark [Sun, 1 May 2011 19:56:48 +0000]
Fix typo error in bit-vector tracking mechanism, causing bogus "seen before"s.

On 64 bit platforms which allocate on 8 byte alignment (rather than 16), a low
pointer bit could get lost, resulting in new pointers being considered already
"seen". Joy, hilarity, failing tests and different results running under gdb.
"Found" by BinGOs' smoker, fixed on spectre.mongueurs.net. The help was
appreciated.

12 years agoBump $VERSION to 0.74_53
Nicholas Clark [Sun, 1 May 2011 19:51:58 +0000]
Bump $VERSION to 0.74_53

12 years agoThis is 0.74_52 - update META.yml
Nicholas Clark [Mon, 25 Apr 2011 08:50:28 +0000]
This is 0.74_52 - update META.yml

12 years agoSvOK() && SvROK() is a tautology - SvROK() true has always implied SvOK() true.
Nicholas Clark [Sun, 24 Apr 2011 21:07:24 +0000]
SvOK() && SvROK() is a tautology - SvROK() true has always implied SvOK() true.

So no need to check SvOK() first on 5.10 or earlier.

12 years agototal_size() and size() can be XS ALIASes, now all the logic is in sv_size()
Nicholas Clark [Sun, 24 Apr 2011 20:59:00 +0000]
total_size() and size() can be XS ALIASes, now all the logic is in sv_size()

12 years agoMove iteration over array values from total_size() to sv_size()
Nicholas Clark [Sun, 24 Apr 2011 20:51:52 +0000]
Move iteration over array values from total_size() to sv_size()

For now this requires some bodgery over when array values should be recursed
into. Arrays presented to total_size() should be properly recursed into.
However, historically the inner arrays of padlists were never traversed, which
means there is no code to deal with the special case rules for them. So to avoid
the perfect being the enemy of the good, defer writing that code, by skipping
the inner arrays of padlists for now.

12 years agoHandle sizes for PVGVs in sv_size() only.
Nicholas Clark [Sun, 24 Apr 2011 20:39:18 +0000]
Handle sizes for PVGVs in sv_size() only.

Previously the logic was duplicated in total_size().

12 years agoMove iteration over hash values from total_size() to sv_size()
Nicholas Clark [Sun, 24 Apr 2011 15:32:40 +0000]
Move iteration over hash values from total_size() to sv_size()

For now this requires some bodgery over when hash values should be recursed
into. Hashes presented to total_size() should be properly recursed into, else
the size of symbol tables isn't correctly reported. However, the back-link
from a CV to its stash shouldn't be traversed, as shouldn't GVs referenced from
OPs, else we run the risk of passing through %::, and adding the size of all
the symbol tables (and subroutines) to the size of a subroutine reference we
were directly passed. Whilst this might be useful in some cases, it isn't useful
as a default, and it isn't even vaguely consistent with the sizes total_size()
historically reported.

12 years agoFix potential SEGVs for PVBMs on 5.10.0 and later.
Nicholas Clark [Sun, 24 Apr 2011 19:45:25 +0000]
Fix potential SEGVs for PVBMs on 5.10.0 and later.

5.10.0 stores PVBMs as PVGVs. Hence not all PVGVs are typeglobs, and XS code
should check isGV_with_GP() is true before performing typeglob lookups.

The PVGV code currently ignores SvCUR()/SvLEN(), so for now the size of PVBMs
is under-reported on 5.10.0 and later.

12 years agoThe optree holds pointers to GVs under multiplicity. It's ithreads that differs.
Nicholas Clark [Sun, 24 Apr 2011 17:43:32 +0000]
The optree holds pointers to GVs under multiplicity. It's ithreads that differs.

Hence the tests that are conditional on the different behaviours should be
{unthreaded,multiplicity} vs {ithreads}, not
{unthreaded} vs {multiplicity,ithreads}

12 years agoIn op_size, add break statement missing for OPc_PVOP.
Nicholas Clark [Sat, 23 Apr 2011 20:55:48 +0000]
In op_size, add break statement missing for OPc_PVOP.

This has been missing since op_size was added in 0.60. Without it, PVOPs would
run on into the OPc_LOOP case, which would likely SEGV as it would consider
the char *op_pv as OP *op_first, and non-existent op_last, op_redoop, op_nextop
and op_lastop.

12 years agoFix potential SEGVs for OP_AELEMFAST on a lexical.
Nicholas Clark [Sat, 23 Apr 2011 20:07:10 +0000]
Fix potential SEGVs for OP_AELEMFAST on a lexical.

OP_AELEMFAST is wonderfully special, in that it can be used to replace both
OP_GV and OP_PADAV. The latter is only a baseop, whereas OP_AELEMFAST is a
flagged as a padop/svop. baseops are smaller, and (therefore) don't have memory
allocated where op_sv "should" be.

12 years agoAdd tests for subroutines and subroutine references.
Nicholas Clark [Sat, 23 Apr 2011 17:48:36 +0000]
Add tests for subroutines and subroutine references.

12 years agoBump $VERSION to 0.74_52
Nicholas Clark [Sun, 24 Apr 2011 21:02:44 +0000]
Bump $VERSION to 0.74_52

13 years agoThis is 0.74_51 - update META.yml
Nicholas Clark [Fri, 22 Apr 2011 16:43:36 +0000]
This is 0.74_51 - update META.yml

13 years agoFix classic off-by-one error - the answer is strlen() + 1, not just strlen()
Nicholas Clark [Fri, 22 Apr 2011 16:30:03 +0000]
Fix classic off-by-one error - the answer is strlen() + 1, not just strlen()

This has been in the code since year dot, and no-one has spotted that the
returned sizes have been under-reporting.

13 years agoMove the check_new() test to the start of sv_size()
Nicholas Clark [Thu, 21 Apr 2011 11:19:08 +0000]
Move the check_new() test to the start of sv_size()

For now, this requires sv_size() to return new-or-not, but it prepares the way
to move all structure recursion into sv_size(). Currently it's in two places -
sv_size() and total_size().

This resolves two long-standing bugs in typeglobs - total_size() was double
counting entries in typeglobs, and sv_size() was double-counting the PVGV size
if GvEGV() looped back.

13 years agoAdd many tests for typeglobs.
Nicholas Clark [Fri, 22 Apr 2011 11:26:33 +0000]
Add many tests for typeglobs.

These reveal several bugs.

13 years agoDon't count PL_sv_{undef,no,yes} in the size returned
Nicholas Clark [Mon, 18 Apr 2011 10:21:53 +0000]
Don't count PL_sv_{undef,no,yes} in the size returned

PL_sv_{undef,no,yes} are singletons, interpreter wide, so shouldn't count as
part of the size.

13 years agoBump $VERSION to 0.74_51
Nicholas Clark [Tue, 19 Apr 2011 20:13:37 +0000]
Bump $VERSION to 0.74_51

13 years agoThis is 0.74_50 - update META.yml
Nicholas Clark [Tue, 19 Apr 2011 20:12:11 +0000]
This is 0.74_50 - update META.yml