-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
[InstrFDO][TypeProf] Implement binary instrumentation and profile read/write #66825
Merged
Merged
Changes from 39 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
361f8f6
[IRPGO][ValueProfile] Instrument virtual table address that could be …
mingmingl-llvm cb0246f
Address feebacks on the code. Questions will be followed up shortly.
mingmingl-llvm 3c6ca04
In InstrProf.cpp, add option -enable-vtable-type-profiling to flag co…
mingmingl-llvm 3780bd9
A few fixes:
mingmingl-llvm 9255867
resolve feedbacks on code
mingmingl-llvm 8d8a45a
Rebase onto main (a fresh commit on Oct27) and add the following changes
mingmingl-llvm 82fac8e
address feedback
mingmingl-llvm d54d059
small changes:
mingmingl-llvm ebf4c1d
pick up upstream change; sync main branch with upstream and 'git merg…
mingmingl-llvm 52143e9
update clang-format version to 117.0.4 released binary and run clang-…
mingmingl-llvm 2350d7f
The changes:
mingmingl-llvm af34929
Update main branch of my llvm fork. Run 'git merge main' and resolve …
mingmingl-llvm fcf92af
resolve feedback
mingmingl-llvm f5d12b5
merge upstream main changes and resolve conflict
mingmingl-llvm 17d941c
Merge branch 'main' into vtable
mingmingl-llvm c000e64
run clang-format over modified files
mingmingl-llvm 5b09e43
merge main branch changes
mingmingl-llvm 313eb10
undo clang-format on unchanged lines
mingmingl-llvm abcbc6d
Changes:
mingmingl-llvm 8c725ef
fix three test failures related with zlib usage
mingmingl-llvm 1050a6b
apply git-format change
mingmingl-llvm 9f01a30
run 'git merge main', resolve conflicts and run clang-format on the diff
mingmingl-llvm a9deaec
Polish tests
mingmingl-llvm 66efde8
In raw profile reader, read multi-byte data using 'swap'. The 'swap' …
mingmingl-llvm 9ec0784
undo git-formatted lines and follow existing style
mingmingl-llvm 0d9abe5
run 'git merge main'
mingmingl-llvm 8240524
one-liner fix for tools/llvm-profdata/raw-64-bits-le.test
mingmingl-llvm 60cd296
fix two test failures. They are overlooked when running 'git merge main'
mingmingl-llvm a7633ad
run 'git merge main'
mingmingl-llvm a61c8a4
A few changes after 'git merge main':
mingmingl-llvm 4dbe23e
Changes
mingmingl-llvm 000d818
apply clang-format change
mingmingl-llvm c57422b
simple clean-ups
mingmingl-llvm df6eadf
For helper function needsComdatForCounter, limit the first parameter …
mingmingl-llvm c30888c
Merge branch 'main' into vtable
mingmingl-llvm 4a9e6c9
unify 'maybeSetComdat'
mingmingl-llvm 61e8292
resolve review feedback
mingmingl-llvm fc1d2be
resolve comment
mingmingl-llvm d8967d2
merge main branch and resolve conflicts
mingmingl-llvm 27239f0
Merge branch 'main' into vtable
mingmingl-llvm 0158523
Changes:
mingmingl-llvm 2abdfe3
remove InstrProfSymtab::getGlobalVariable method; it's not used in th…
mingmingl-llvm 7ea9217
resolve comments
mingmingl-llvm 0a0c364
Changes:
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 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.
Might be worth it to simplify this to use DenseMap too in a separate patch.
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.
Sure. i'll send out another patch later.