Home
last modified time | relevance | path

Searched refs:getEntryCount (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h118 std::optional<Function::ProfileCount> FunctionCount = getEntryCount(F); in isFunctionEntryHot()
130 if (auto FunctionCount = getEntryCount(F)) in isFunctionHotInCallGraph()
150 if (auto FunctionCount = getEntryCount(F)) in isFunctionColdInCallGraph()
277 if (auto FunctionCount = getEntryCount(F)) { in isFunctionHotOrColdInCallGraphNthPercentile()
326 std::optional<Function::ProfileCount> getEntryCount(const FuncT *F) const { in getEntryCount() function
327 return F->getEntryCount(); in getEntryCount()
350 ProfileSummaryInfo::getEntryCount<MachineFunction>(
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp90 return !F.getEntryCount(); in getProfileCount()
103 auto FunctionCount = F->getEntryCount();
H A DInlineCost.cpp813 if (!Caller->getEntryCount()) in isCostBenefitAnalysisEnabled()
825 auto EntryCount = F.getEntryCount(); in isCostBenefitAnalysisEnabled()
919 auto EntryProfileCount = F.getEntryCount(); in costBenefitAnalysis()
H A DBlockFrequencyInfoImpl.cpp592 auto EntryCount = F.getEntryCount(AllowSynthetic); in getProfileCountFromFreq()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DCGProfile.cpp67 if (F.isDeclaration() || !F.getEntryCount()) in runCGProfilePass()
H A DPGOInstrumentation.cpp1935 auto BFIEntryCount = F.getEntryCount(); in fixFuncEntryCount()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFunction.h319 std::optional<ProfileCount> getEntryCount(bool AllowSynthetic = false) const;
327 return getEntryCount(IncludeSynthetic).has_value();
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp357 uint64_t GCOVFunction::getEntryCount() const { in getEntryCount() function in GCOVFunction
841 os << "function:" << f->startLine << ',' << f->getEntryCount() << ',' in printSourceToIntermediate()
947 const uint64_t entryCount = f.getEntryCount(); in printFunctionDetails()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h245 uint64_t getEntryCount() const;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp213 Name = formatv("<vftable {0} methods>", Shape.getEntryCount()); in visitKnownRecord()
H A DTypeDumpVisitor.cpp405 W->printNumber("VFEntryCount", Shape.getEntryCount()); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp1536 ProfileSummaryInfo::getEntryCount<llvm::MachineFunction>( in getEntryCount() function in ProfileSummaryInfo
1538 return F->getFunction().getEntryCount(); in getEntryCount()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp2029 auto PrevCount = getEntryCount(); in setEntryCount()
2048 std::optional<ProfileCount> Function::getEntryCount(bool AllowSynthetic) const { in getEntryCount() function in Function
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h568 uint32_t getEntryCount() const { return getSlots().size(); } in getEntryCount() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1980 auto CalleeCount = Callee->getEntryCount(); in updateProfileCallee()
2389 if (auto Profile = CalledFunc->getEntryCount()) in InlineFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp1358 auto CalleeEntryCount = Cloner.OrigFunc->getEntryCount(); in tryPartialInline()
H A DSampleProfile.cpp2268 if (!F.getEntryCount()) in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2528 W.printNumber("VFEntryCount", Shape.getEntryCount()); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1437 auto MaybeEntryCount = MF.getFunction().getEntryCount(); in emitBBAddrMapSection()