-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[ThinLTO] Populate declaration import status except for distributed ThinLTO under a default-off new option #88024
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 20 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
78fa2e0
[ThinLTO]Record import type (declaration or definition) in GlobalValu…
mingmingl-llvm 4b4c33f
[ThinLTO]Generate import type in bitcode writer
mingmingl-llvm cfb63d7
function import changes
mingmingl-llvm b0a4060
'git merge main' and resolve merge conflict
mingmingl-llvm e07d423
Merge branch 'main' into users/minglotus-6/spr/summary1
mingmingl-llvm 175febc
rename Dec to Decl
mingmingl-llvm 8bc4d7a
Merge branch 'main' into users/minglotus-6/spr/summary1
mingmingl-llvm 7252e11
Merge branch 'users/minglotus-6/spr/summary1' into users/minglotus-6/…
mingmingl-llvm 23a3fa4
simplify code
mingmingl-llvm a0277b4
Flag gate the import-declaration change.
mingmingl-llvm 5edeccc
stage changes
mingmingl-llvm a139e4a
Add test coverage for import delcaration
mingmingl-llvm 916dc96
add test coverage for function alias
mingmingl-llvm 248fbfb
llvm-lto test coverage
mingmingl-llvm 5e731ec
add test coverage for debugging log, and a RUN line for internalization
mingmingl-llvm c5e168e
Merge branch 'main' into users/minglotus-6/spr/summary1
mingmingl-llvm 2c38b47
resolve review feedback
mingmingl-llvm 3da9b8b
Merge branch 'users/minglotus-6/spr/summary1' into users/minglotus-6/…
mingmingl-llvm f1d22e1
Diffbase is updated (https://github.com/llvm/llvm-project/pull/87600/…
mingmingl-llvm 86f3f44
resolve review feedback
mingmingl-llvm ce353d0
resolve feedback
mingmingl-llvm ee91670
use 'DAG' for log lines and resolve review feedback
mingmingl-llvm dd35621
merge main to pick up PR 92622
mingmingl-llvm 3456c50
clang-format; and use the lexicographic comparison of std::pair
mingmingl-llvm 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
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.
nit: could pass by value, since uint8_t is small (similar to AddUnsigned)?
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.
done.