Actions
Feature #15805
closedLet memory sizes of the various IMEMO object types be reflected correctly
Status:
Closed
Priority:
Normal
Assignee:
-
Target version:
-
Description
References Github PR https://github.com/ruby/ruby/pull/2140
In current trunk only the imemo_tmpbuf
type's auxiliary malloc heap buffer is factored into obj_memsize_of
. The following IMEMO types also allocate on the malloc heap:
imemo_env
(similar pattern asimemo_tmpbuf
, an array ofVALUE
s)imemo_ment
(single struct allocated)imemo_iseq
(massaged theiseq_memsize
API a little)imemo_ast
(more difficult to get right, need to walk buffer elements too)
The imemo_memsize
function introduced attempts to be the entry point for object size calculation of the IMEMO types.
I think these are important to reflect actual size for heap dumps etc. too. Thoughts?
Updated by nobu (Nobuyoshi Nakada) over 1 year ago
- Tracker changed from Misc to Feature
Updated by methodmissing (Lourens Naudé) over 1 year ago
- Status changed from Open to Closed
Applied in changeset git|90c4bd2d2bd10b19c2b09834396553742bc7e8a4.
Let memory sizes of the various IMEMO object types be reflected correctly
[Feature #15805]
Actions