[PATCH] D23949: NFC: add early exit in ModuleSummaryAnalysis
Piotr Padlewski via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 29 17:54:43 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL280036: NFC: add early exit in ModuleSummaryAnalysis (authored by Prazek).
Changed prior to commit:
https://reviews.llvm.org/D23949?vs=69457&id=69639#toc
Repository:
rL LLVM
https://reviews.llvm.org/D23949
Files:
llvm/trunk/lib/Analysis/ModuleSummaryAnalysis.cpp
Index: llvm/trunk/lib/Analysis/ModuleSummaryAnalysis.cpp
===================================================================
--- llvm/trunk/lib/Analysis/ModuleSummaryAnalysis.cpp
+++ llvm/trunk/lib/Analysis/ModuleSummaryAnalysis.cpp
@@ -81,37 +81,40 @@
SmallPtrSet<const User *, 8> Visited;
for (const BasicBlock &BB : F)
for (const Instruction &I : BB) {
- if (!isa<DbgInfoIntrinsic>(I))
- ++NumInsts;
-
- if (auto CS = ImmutableCallSite(&I)) {
- auto *CalledFunction = CS.getCalledFunction();
- // Check if this is a direct call to a known function.
- if (CalledFunction) {
- if (CalledFunction->hasName() && !CalledFunction->isIntrinsic()) {
- auto ScaledCount = BFI ? BFI->getBlockProfileCount(&BB) : None;
- auto *CalleeId =
- M.getValueSymbolTable().lookup(CalledFunction->getName());
- CallGraphEdges[CalleeId] +=
- (ScaledCount ? ScaledCount.getValue() : 0);
- }
- } else {
- // Otherwise, check for an indirect call (call to a non-const value
- // that isn't an inline assembly call).
- const CallInst *CI = dyn_cast<CallInst>(&I);
- if (CS.getCalledValue() && !isa<Constant>(CS.getCalledValue()) &&
- !(CI && CI->isInlineAsm())) {
- uint32_t NumVals, NumCandidates;
- uint64_t TotalCount;
- auto CandidateProfileData =
- ICallAnalysis.getPromotionCandidatesForInstruction(
- &I, NumVals, TotalCount, NumCandidates);
- for (auto &Candidate : CandidateProfileData)
- IndirectCallEdges[Candidate.Value] += Candidate.Count;
- }
- }
- }
+ if (isa<DbgInfoIntrinsic>(I))
+ continue;
+ ++NumInsts;
findRefEdges(&I, RefEdges, Visited);
+ auto CS = ImmutableCallSite(&I);
+ if (!CS)
+ continue;
+ auto *CalledFunction = CS.getCalledFunction();
+ // 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;
+ auto *CalleeId =
+ M.getValueSymbolTable().lookup(CalledFunction->getName());
+ CallGraphEdges[CalleeId] += (ScaledCount ? ScaledCount.getValue() : 0);
+ } else {
+ const auto *CI = dyn_cast<CallInst>(&I);
+ // Skip inline assembly calls.
+ if (CI && CI->isInlineAsm())
+ continue;
+ // Skip direct calls.
+ if (!CS.getCalledValue() || isa<Constant>(CS.getCalledValue()))
+ continue;
+
+ uint32_t NumVals, NumCandidates;
+ uint64_t TotalCount;
+ auto CandidateProfileData =
+ ICallAnalysis.getPromotionCandidatesForInstruction(
+ &I, NumVals, TotalCount, NumCandidates);
+ for (auto &Candidate : CandidateProfileData)
+ IndirectCallEdges[Candidate.Value] += Candidate.Count;
+ }
}
GlobalValueSummary::GVFlags Flags(F);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23949.69639.patch
Type: text/x-patch
Size: 3171 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160830/d62477ef/attachment.bin>
More information about the llvm-commits
mailing list