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
One open question is the best GC / lifecycle management strategy for the PMA. This breaks down into a couple of sub-questions:
What are the roots we want to trace for the PMA and where do they live?
(my preferred answer: they are the bytecode cache and Arvo-as-a-noun and they live in slots in the top stack frame of the NockStack in the PMA)
What GC strategy are we using for the PMA?
(my preferred answer: mark-and-sweep. We are assuming that most objects here are long-lived and so mark-and-sweep with a free-list allocator is by far the most proven solution)
The text was updated successfully, but these errors were encountered:
One open question is the best GC / lifecycle management strategy for the PMA. This breaks down into a couple of sub-questions:
The text was updated successfully, but these errors were encountered: