-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object layout #69
Comments
And since #72 requires changing the layout of the dict as the object degenerates, this is also relevant: |
As a bit of motivation: class C:
def __init__(self):
self.a = 1
self.b = 2
self.c = 3
self.d = 4
self.e = 5 The object itself takes 6 words:
and the dictionary takes 13 words:
for a total of 19 words. With a semi-compact header and compact object layout this can be reduced to 9 words:
roughly halving memory usage. |
But the design in #72 requires us to fix the size of values[] before knowing how large it will grow, and proposes 16 values, so it would be 20 words (21 until we actually have the semi-compact header from #70), so more than the original 19. Gains in space will only show up when there are more than 6 or 7 attributes. (There may be other gains due to LOAD_ATTR specialization.) |
We need to fix the size of |
This is a meta issue for object layout and the parts of the VM that interact through objects.
Object layout considerations include:
Which bits of information should be stored in the object and which externally?
For example, the memory allocator,
PyMem_Malloc
or plainmalloc
, needs to know the size of allocated memory. Objects are also self describing. This is redundant.The size of the object header, and what different layouts we want to support. Which objects should be treated specially and which should use a generic layout?
How will the state of an object be recorded, so that it can be efficiently handled by the cycle GC, refcounting and the allocator.
How compact can we make objects, specifically plain Python objects?
In Java an object consists of a header containing a reference to the class (either a pointer or some ID) some GC information, followed by the values. This should be our target for most objects.
The text was updated successfully, but these errors were encountered: