diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-10-08 16:11:42 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-10-08 16:11:42 +0000 |
commit | 897bab9b35dd80e10e8a9c34dcac072c173fcffb (patch) | |
tree | d40861de5457f17703e145f77cf0a3c07f205c67 /llvm/lib/Analysis | |
parent | eb65d72d9cf0f39bcfa793ae6afa7a90022993a5 (diff) | |
download | bcm5719-llvm-897bab9b35dd80e10e8a9c34dcac072c173fcffb.tar.gz bcm5719-llvm-897bab9b35dd80e10e8a9c34dcac072c173fcffb.zip |
[ThinLTO] Record calls to aliases
Summary:
When there is a call to an alias in the same module, we were not
adding a call edge. So we could incorrectly think that the alias
was dead if it was inlined in that function, despite having a
reference imported elsewhere. This resulted in unsats at link time.
Add a call edge when the call is to an alias.
Reviewers: davide, mehdi_amini
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D25384
llvm-svn: 283664
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/ModuleSummaryAnalysis.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp index 5a9d9a6604f..c107deb0a6e 100644 --- a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp +++ b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp @@ -101,15 +101,26 @@ static void computeFunctionSummary(ModuleSummaryIndex &Index, const Module &M, auto CS = ImmutableCallSite(&I); if (!CS) continue; + auto *CalledValue = CS.getCalledValue(); auto *CalledFunction = CS.getCalledFunction(); + // Check if this is an alias to a function. If so, get the + // called aliasee for the checks below. + if (auto *GA = dyn_cast<GlobalAlias>(CalledValue)) { + assert(!CalledFunction && "Expected null called function in callsite for alias"); + CalledFunction = dyn_cast<Function>(GA->getBaseObject()); + } // Check if this is a direct call to a known function. if (CalledFunction) { // Skip nameless and intrinsics. if (!CalledFunction->hasName() || CalledFunction->isIntrinsic()) continue; auto ScaledCount = BFI ? BFI->getBlockProfileCount(&BB) : None; + // Use the original CalledValue, in case it was an alias. We want + // to record the call edge to the alias in that case. Eventually + // an alias summary will be created to associate the alias and + // aliasee. auto *CalleeId = - M.getValueSymbolTable().lookup(CalledFunction->getName()); + M.getValueSymbolTable().lookup(CalledValue->getName()); auto Hotness = ScaledCount ? getHotness(ScaledCount.getValue(), PSI) : CalleeInfo::HotnessType::Unknown; |