Home
last modified time | relevance | path

Searched refs:EntryCount (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryLoop.h33 uint64_t EntryCount{0};
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCCodeView.cpp356 unsigned EntryCount = FileSegEnd - I; in emitLineTableForFunction() local
363 OS.emitInt32(EntryCount); in emitLineTableForFunction()
365 SegmentSize += 8 * EntryCount; in emitLineTableForFunction()
367 SegmentSize += 4 * EntryCount; in emitLineTableForFunction()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h698 uint64_t EntryCount = 0;
711 uint64_t EntryCount, std::vector<ValueInfo> Refs,
720 InstCount(NumInsts), FunFlags(FunFlags), EntryCount(EntryCount),
752 uint64_t entryCount() const { return EntryCount; }
755 void setEntryCount(uint64_t EC) { EntryCount = EC; }
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp600 auto EntryCount = F.getEntryCount(AllowSynthetic); in getProfileCountFromFreq() local
601 if (!EntryCount) in getProfileCountFromFreq()
604 APInt BlockCount(128, EntryCount->getCount()); in getProfileCountFromFreq()
H A DInlineCost.cpp775 auto EntryCount = F.getEntryCount(); in isCostBenefitAnalysisEnabled() local
776 if (!EntryCount || !EntryCount->getCount()) in isCostBenefitAnalysisEnabled()
843 auto EntryCount = EntryProfileCount->getCount(); in costBenefitAnalysis() local
844 CycleSavings += EntryCount / 2; in costBenefitAnalysis()
845 CycleSavings = CycleSavings.udiv(EntryCount); in costBenefitAnalysis()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp598 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx); in emitCSpecificHandlerTable() local
600 OS.emitValue(EntryCount, 4); in emitCSpecificHandlerTable()
/llvm-project-15.0.7/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2356 uint64_t EntryCount; member
2359 : TotalCount(0), TotalCountPercent(0.0f), MaxCount(0), EntryCount(0) {} in HotFuncInfo()
2363 MaxCount(MS), EntryCount(ES) {} in HotFuncInfo()
2416 FOS << R.EntryCount; in dumpHotFunctionList()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryFunction.cpp3993 L->EntryCount = COUNT_NO_PROFILE; in calculateLoopInfo()
4016 L->EntryCount = L->getHeader()->getExecutionCount() - L->TotalBackEdgeCount; in calculateLoopInfo()
4420 OS << "Loop entry count: " << L->EntryCount << "\n"; in printLoopInfo()
4422 if (L->EntryCount > 0) { in printLoopInfo()
4424 << format("%.4lf", (double)L->TotalBackEdgeCount / L->EntryCount) in printLoopInfo()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1104 void markFunctionAttributes(uint64_t EntryCount, uint64_t MaxCount) { in markFunctionAttributes() argument
1105 if (PSI->isHotCount(EntryCount)) in markFunctionAttributes()
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp815 uint32_t EntryCount = readVaruint32(Ctx); in parseLinkingSectionComdat() local
816 while (EntryCount--) { in parseLinkingSectionComdat()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjC.cpp1812 uint64_t EntryCount = getCurrentProfileCount(); in EmitObjCForCollectionStmt() local
1816 createProfileWeights(EntryCount, getProfileCount(S.getBody()))); in EmitObjCForCollectionStmt()
1997 createProfileWeights(getProfileCount(S.getBody()), EntryCount)); in EmitObjCForCollectionStmt()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7238 uint64_t EntryCount = 0; in parseEntireSummary() local
7252 EntryCount = Record[5]; in parseEntireSummary()
7278 Flags, InstCount, getDecodedFFlags(RawFunFlags), EntryCount, in parseEntireSummary()