-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[clang][frontend] Add support for attribute plugins for statement attributes #110334
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 4 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
0411b29
[clang][frontend] Add support for attribute plugins for statement att…
ericastor 293bc12
Merge branch 'main' into stmt-attributes
ericastor 2398a73
Fix desync'd comment
ericastor 5a5ff13
Add support for template-instantiations of AnnotateAttr
ericastor a445081
Merge branch 'main' into stmt-attributes
ericastor b7394ba
Merge branch 'llvm:main' into stmt-attributes
ericastor 8fba347
[libc] Fix missing namespace declarations
jhuber6 3d2cac4
[clang][frontend] Support applying the annotate attribute to statemen…
ericastor ec7e46a
[libc] Add missing config include
jhuber6 8297051
[mlir][tosa] Change the type of profile option to ListOption (#111214)
tatwaichong 865cae5
[lldb] Fix a variety of LLDB_LOG format strings
JDevlieghere 51a2d67
[alpha.webkit.UncountedCallArgsChecker] Skip std::forward in tryToFin…
rniwa 4839e50
[alpha.webkit.UncountedCallArgsChecker] Add the support for trivial C…
rniwa 842314f
isUncountedPtr should take QualType as an argument. (#110213)
rniwa 00095b5
[mlir][debug] Support DICommonBlock. (#111706)
abidh 953dd25
[runtimes][NFC] Reindent CMake files (#111821)
ldionne 9c1d96f
[NVPTX] Prefer prmt.b32 over bfi.b32 (#110766)
justinfargnoli 2b6b0ad
[flang][runtime] Fix runtime crash after bad recoverable OPEN (#111454)
klausler 6faaa65
[flang] Fix references to destroyed objects (#111582)
klausler 9cc0e48
[flang] Minor cleanup (move function into /tools.cpp) (#111587)
klausler af9a8f4
[lldb][libc++] Hide all libc++ implementation details from stacktrace…
vogelsgesang b32398e
[flang][runtime][NFC] Fix header guard typo (#111741)
clementval a31c1f4
Fix GCC build problem with 03483737a7a2
rengolin 7862d15
Merge branch 'main' into stmt-attributes
ericastor e7f7104
Add release note
ericastor 19544a5
Merge branch 'main' into stmt-attributes
ericastor 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 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
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
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
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.
we probably want to transform the annotation as well? or does
StringArgumentnot work for dependent values?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.
I think
StringArgumentonly handlesStringRefs? I don't see a way it could be given a dependent value.