-
Notifications
You must be signed in to change notification settings - Fork 5.3k
VM: Better strategy for TryReserveInitialMemory on arm64 (jump stubs) #70707
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
704b749
Better strategy for ReserveInitialMemory on arm64
EgorBo 335e3cc
Merge branch 'main' of github.com:dotnet/runtime into yet-another-fix…
EgorBo d252971
Clean up
EgorBo f9fb6ac
Merge branch 'main' of github.com:dotnet/runtime into yet-another-fix…
EgorBo 5897d6d
Address feedback
EgorBo 6d0cdf1
fix "below" case
EgorBo 1fc5970
Merge branch 'main' of github.com:dotnet/runtime into yet-another-fix…
EgorBo 909cf7c
Address feedback
EgorBo db57294
Update virtual.cpp
EgorBo a5c76a3
Apply suggestions from code review
EgorBo c9e36ed
Address feedback
EgorBo eab1661
Fix defines
EgorBo 42b0ed6
Remove env var
EgorBo 5ddfd68
clean up
EgorBo 168fe20
Clean up
EgorBo 94146e2
Update virtual.h
EgorBo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Address feedback
- Loading branch information
commit 5897d6d1a09098df6dc3c3e17fc1dcdedb2589e8
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This ifdef is incorrect, we don't define TARGET_XARCH out of JIT. Can you please use
#if defined(TARGET_ARM) || defined(TARGET_ARM64)here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, again I am using JIT's flags in the VM 😞 the incorrect define slightly regressed x64/x86 by decreasing preferable size from 2Gb to 1Gb. Thanks, fixed