-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Implement frozen object heap #94515
Merged
Merged
Implement frozen object heap #94515
Commits on Nov 8, 2023
-
When allocating a RuntimeType instances, we were creating an object on the pinned object heap, creating a handle to it, and purposefully leaked the handle. The RuntimeTypes live forever. This fragments the pinned object heap. So instead of doing that, port frozen object heap from CoreCLR. This is a line-by-line port. Frozen object heap is a segmented bump memory allocator that interacts with the GC to tell it the boundaries of the segments.
Configuration menu - View commit details
-
Copy full SHA for 12ba5b4 - Browse repository at this point
Copy the full SHA 12ba5b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e9c3c5 - Browse repository at this point
Copy the full SHA 5e9c3c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd033d6 - Browse repository at this point
Copy the full SHA dd033d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9cd6bce - Browse repository at this point
Copy the full SHA 9cd6bceView commit details
Commits on Nov 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 05dbdaf - Browse repository at this point
Copy the full SHA 05dbdafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 66fa94b - Browse repository at this point
Copy the full SHA 66fa94bView commit details
Commits on Nov 10, 2023
-
Update src/coreclr/nativeaot/System.Private.CoreLib/src/Internal/Runt…
…ime/FrozenObjectHeapManager.cs Co-authored-by: Jan Kotas <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7854e4c - Browse repository at this point
Copy the full SHA 7854e4cView commit details -
Update src/coreclr/nativeaot/System.Private.CoreLib/src/Internal/Runt…
…ime/FrozenObjectHeapManager.cs
Configuration menu - View commit details
-
Copy full SHA for f095349 - Browse repository at this point
Copy the full SHA f095349View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.