-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
[DXIL] Add support for root signature flag element in DXContainer #123147
Merged
joaosaffran
merged 72 commits into
llvm:main
from
joaosaffran:rootsignature/flags-metadata
Feb 13, 2025
Merged
Changes from all commits
Commits
Show all changes
72 commits
Select commit
Hold shift + click to select a range
8adb678
adding rootsignature to obj2yaml
ba78f21
adding test
0a54559
removing old test
557075f
remove useless includes
e0d3dcd
addressing comments
80587dd
updating test
be3764d
removing useless header
7582ca6
fix formating
6aaa0a5
renaming test
916b2f1
addressing pr comments
d9bce0a
adding str to ROOT_ELEMENT_FLAG
e7676ed
formating
a0cee57
refactoring to follow llvm standards
1e7a1fe
addressing comments
0ed658a
clean up
932062e
remove version
628937c
fix pr
1378c9f
adding dxil-dis test
e3206c9
adding compatibility test
f93d42d
addressing test concerns
25e3f37
clean up
751cbdc
addressing comments
44532d6
adding fail test
ca21878
adding comment
987901c
adding few more tests
0fbe900
format
b771aea
cleanup
aabdfe7
adding metadata extraction
4f6f941
moving root signature to it's own pass
a7f7784
formating
bf3b2e0
removing useless imports
16b4d03
fixing pr changes
e043370
adding some asserts
57bf935
format
1f8c0a5
fixing assert
0905b83
cleaning
77e8544
clean up
1351fb0
addressing comments
09e645a
removing version
5a44b62
fix test
d1a79b3
addressing PR Comments
9f8e512
fix test
5c7ed7e
filtering root signatures not associated with entry function
93f7c4c
separating parsing and validation
5aac761
improve error handling
47b01f7
clean up
486ab88
clean up
852ac25
formating
74f7226
addressing comments and fix tests
7a82fa9
fixing tests
c67d039
formating
e80ef33
Merge branch 'main' into users/joaosaffran/123147
ef1ce8a
fix
b7f2716
Merge branch 'main' into users/joaosaffran/123147
83b0979
addressing pr comments
b175b65
addressing PR comments
01b49a7
addressing pr comments
7bba9d3
removing copies from root signature use in dx container globals
2809c2f
adding more tests
023dcb8
maybe fix test?
aedb446
fixing clang format
39e60c0
try fix format
3b135c6
removing test
ae3d03f
adding llvm unreachable and testing test
3d19f8b
stopping compilation if root signature error were emitted
5a3be7c
making sure Error tests fail
f64c608
refactoring root signature analysis to return a map instead
a5a2093
addressing pr comments
5b3fedc
clean up
605f225
addressing pr comments
e4bca2b
implementing find interface for RootSignatureAnalysisWrapper
825673f
adding test for null function
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
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.
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.
Not something that needs to be changed for this PR, but accessing analysis results here shows that it's a bit concerning how DXContainer is designed - we'll need to do a lot of work to port it to the new pass manager.