mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 15:13:49 -04:00
ModuleSummaryAnalysis: Correctly handle all function operand references.
The current code that handles personality functions when creating a module summary does not correctly handle the case where a function's personality function operand refers to the function indirectly (e.g. via a bitcast). This patch handles such cases by treating personality function references like any other reference, i.e. by adding them to the function's reference list. This has the minor side benefit of allowing personality functions to participate in early dead stripping. We do this by calling findRefEdges on the function itself. This way we also end up handling other function operands (specifically prefix data and prologue data) for free. Differential Revision: https://reviews.llvm.org/D37553 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312698 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -215,9 +215,13 @@ computeFunctionSummary(ModuleSummaryIndex &Index, const Module &M,
|
||||
SetVector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls,
|
||||
TypeCheckedLoadConstVCalls;
|
||||
ICallPromotionAnalysis ICallAnalysis;
|
||||
SmallPtrSet<const User *, 8> Visited;
|
||||
|
||||
// Add personality function, prefix data and prologue data to function's ref
|
||||
// list.
|
||||
findRefEdges(Index, &F, RefEdges, Visited);
|
||||
|
||||
bool HasInlineAsmMaybeReferencingInternal = false;
|
||||
SmallPtrSet<const User *, 8> Visited;
|
||||
for (const BasicBlock &BB : F)
|
||||
for (const Instruction &I : BB) {
|
||||
if (isa<DbgInfoIntrinsic>(I))
|
||||
@@ -456,12 +460,6 @@ ModuleSummaryIndex llvm::buildModuleSummaryIndex(
|
||||
CantBePromoted);
|
||||
}
|
||||
|
||||
// Set live flag for all personality functions. That allows to
|
||||
// preserve them during DCE.
|
||||
for (const llvm::Function &F : M)
|
||||
if (!F.isDeclaration() && F.hasPersonalityFn())
|
||||
setLiveRoot(Index, F.getPersonalityFn()->getName());
|
||||
|
||||
// Compute summaries for all variables defined in module, and save in the
|
||||
// index.
|
||||
for (const GlobalVariable &G : M.globals()) {
|
||||
|
||||
Reference in New Issue
Block a user