-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Handle more than 64 registers - Part 3 #102592
Merged
+589
−578
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
cec9ad9
Add `high` in regMaskTP
kunalspathak 5fa863e
Introduce SingleTypeRegSet
kunalspathak 7dba61b
Use SingleTypeRegSet in few places
kunalspathak f68cf05
Delete some methods in regMaskTP
kunalspathak 7f8a9b6
Delete some more methods of regMaskTP
kunalspathak 2ede666
Fix actualRegistersMask
kunalspathak 4b873d4
Use SingleTypeRegSet in consecutive register code
kunalspathak 98caccf
Use SingleTypeRegSet in consecutive registers codebase
kunalspathak dbb72eb
Change genRegMask*() method to return SingleTypeRegSet
kunalspathak 36d5919
wip
kunalspathak a647a65
another wip
kunalspathak 9a15670
Everything except newRefPosition/killMask
kunalspathak 5e739a4
refactor code around buildkill
kunalspathak e93f528
fix build errors
kunalspathak 05b09b2
some more errors
kunalspathak f00f7a8
jit format
kunalspathak d356c89
Merge remote-tracking branch 'kp/lsra-refactor' into more-than-64-par…
kunalspathak 06bd9e2
fixed build error for arm64
kunalspathak 325bc6e
REVERT: temporary add #ifdef TARGET_ARM64 for accessing regMaskTP met…
kunalspathak 92378d5
Merge remote-tracking branch 'origin/main' into more-than-64-part2-kill
kunalspathak e96428f
forgot to add the new file
kunalspathak 1cf6b7a
make addRegsForKill only on low
kunalspathak bf86515
jit format
kunalspathak 2065ba3
Merge remote-tracking branch 'origin/main' into more-than-64-part2-kill
kunalspathak 7d566b4
Revert "REVERT: temporary add #ifdef TARGET_ARM64 for accessing regMa…
kunalspathak 1963c98
Various fixes after merge
kunalspathak 31498ef
passing arm64 build
kunalspathak f17257d
clrjit build works
kunalspathak a85312d
clrjit_universal_arm_x64 build works
kunalspathak d7c1010
clrjit_unix_x64_x64 build works
kunalspathak ba4ef0d
clrjit_win_x86_x64 build works
kunalspathak 1868424
fix a bug in size
kunalspathak 384fef8
delete unwanted method
kunalspathak b9181bc
Merge remote-tracking branch 'origin/main' into more-than-64-part2
kunalspathak f0ef2bc
jit format
kunalspathak db03c23
Remove high
kunalspathak d094109
Continue using regMaskTP for NodeInternalRegisters
kunalspathak ca77f79
Pass regType to getConstrainedRegMask()
kunalspathak e0b87d4
jit format
kunalspathak 5b65ddc
fix a wrong parameter for consecutive register
kunalspathak 494d862
fix riscv64 build errors
kunalspathak baecc25
Merge remote-tracking branch 'origin/main' into more-than-64-part2
kunalspathak aabb072
Merge remote-tracking branch 'kp/more-than-64-part2' into more-than-6…
kunalspathak eb4515d
jit format
kunalspathak 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
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
Why these changes? I am not sure I'm sold that these cannot just stay as
regMaskTP
.