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
First fit has a hugely degenerate case where smaller frames tend to bubble into the back of the list and never match again because larger ones are in front and always match. Potential alternatives are:
closest fit — slowest O(n) but should rarely degenerate
reasonable fit (e.g. < 2*n)— still have early exits but less predictable
ZeeAlloc does really poorly with variable-sized jumbo allocations. We should investigate a better way to reference these frames.
Detailed problem:
Potential solutions:
The text was updated successfully, but these errors were encountered: