diff options
| author | Teresa Johnson <tejohnson@google.com> | 2019-03-15 15:11:38 +0000 |
|---|---|---|
| committer | Teresa Johnson <tejohnson@google.com> | 2019-03-15 15:11:38 +0000 |
| commit | 70ec64cb7235efbeb1a7c6c4f9b5810d866850ec (patch) | |
| tree | a845f0a5ab7355e9f5a09158b8918bc61ed00920 /llvm/lib/Transforms/IPO | |
| parent | 55e1330edaa5fef8be2ae892dd1964d2ea895578 (diff) | |
| download | bcm5719-llvm-70ec64cb7235efbeb1a7c6c4f9b5810d866850ec.tar.gz bcm5719-llvm-70ec64cb7235efbeb1a7c6c4f9b5810d866850ec.zip | |
[ThinLTO] Restructure AliasSummary to contain ValueInfo of Aliasee
Summary:
The AliasSummary previously contained the AliaseeGUID, which was only
populated when reading the summary from bitcode. This patch changes it
to instead hold the ValueInfo of the aliasee, and always populates it.
This enables more efficient access to the ValueInfo (specifically in the
recent patch r352438 which needed to perform an index hash table lookup
using the aliasee GUID).
As noted in the comments in AliasSummary, we no longer technically need
to keep a pointer to the corresponding aliasee summary, since it could
be obtained by walking the list of summaries on the ValueInfo looking
for the summary in the same module. However, I am concerned that this
would be inefficient when walking through the index during the thin
link for various analyses. That can be reevaluated in the future.
By always populating this new field, we can remove the guard and special
handling for a 0 aliasee GUID when dumping the dot graph of the summary.
An additional improvement in this patch is when reading the summaries
from LLVM assembly we now set the AliaseeSummary field to the aliasee
summary in that same module, which makes it consistent with the behavior
when reading the summary from bitcode.
Reviewers: pcc, mehdi_amini
Subscribers: inglorion, eraman, steven_wu, dexonsmith, arphaman, llvm-commits
Differential Revision: https://reviews.llvm.org/D57470
llvm-svn: 356268
Diffstat (limited to 'llvm/lib/Transforms/IPO')
| -rw-r--r-- | llvm/lib/Transforms/IPO/FunctionImport.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionImport.cpp b/llvm/lib/Transforms/IPO/FunctionImport.cpp index dcd246d0d7e..ef8b152f1a0 100644 --- a/llvm/lib/Transforms/IPO/FunctionImport.cpp +++ b/llvm/lib/Transforms/IPO/FunctionImport.cpp @@ -821,12 +821,7 @@ void llvm::computeDeadSymbols( // If this is an alias, visit the aliasee VI to ensure that all copies // are marked live and it is added to the worklist for further // processing of its references. - // FIXME: The aliasee GUID is only populated in the summary when we - // read them from bitcode, which is currently the only way we can - // get here (we don't yet support reading the summary index directly - // from LLVM assembly code in tools that can perform a thin link). - // If that ever changes, the below call to getAliaseGUID will assert. - visit(Index.getValueInfo(AS->getAliaseeGUID())); + visit(AS->getAliaseeVI()); continue; } |

