You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description S_invlist_trim does a surprising (to me) amount ofrealloc() calls during even
a make perl.
S_invlist_trim always calls realloc() via SvPV_renew, but looking at some of
the underlying values, many of these calls will not result in an actual reallocation
(because of malloc alignment requirements, or larger-than-asked-for allocations),
and the saving otherwise is arguably not worth it.
For example, printing out the relevant values on each call shows:
...
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 40 to MAX(9, 41) - actual buffer size is 186
Going to resize from 136 to MAX(9, 137) - actual buffer size is 210
Going to resize from 40 to MAX(9, 41) - actual buffer size is 178
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 154
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
Going to resize from 0 to MAX(9, 1) - actual buffer size is 9
Going to resize from 168 to MAX(9, 169) - actual buffer size is 170
...
Should S_invlist_trim just return without doing the SvPV_renew if:
What are the conditions - if any - under which S_invlist_trim should do a reallocation, do you think? (I don't have much of an understanding of invlists at all.)
Description
S_invlist_trim
does a surprising (to me) amount ofrealloc()
calls during evena
make perl
.S_invlist_trim
always callsrealloc()
viaSvPV_renew
, but looking at some ofthe underlying values, many of these calls will not result in an actual reallocation
(because of malloc alignment requirements, or larger-than-asked-for allocations),
and the saving otherwise is arguably not worth it.
For example, printing out the relevant values on each call shows:
Should
S_invlist_trim
just return without doing theSvPV_renew
if:MAX(min_size, SvCUR(invlist) + 1) == SvLEN(invlist)
Steps to Reproduce
Apply this quick 'n' dirty patch and run
make perl
:Expected behavior
S_invlist_trim
returns without reallocating if the size difference is zero or minimal.Perl configuration
blead
The text was updated successfully, but these errors were encountered: