Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h774 uint64_t EntryCount = 0;
806 uint64_t EntryCount, std::vector<ValueInfo> Refs,
816 InstCount(NumInsts), FunFlags(FunFlags), EntryCount(EntryCount),
852 uint64_t entryCount() const { return EntryCount; }
855 void setEntryCount(uint64_t EC) { EntryCount = EC; }
/openbsd-src/gnu/llvm/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.cpp805 auto EntryCount = F.getEntryCount(); in isCostBenefitAnalysisEnabled() local
806 if (!EntryCount || !EntryCount->getCount()) in isCostBenefitAnalysisEnabled()
872 auto EntryCount = EntryProfileCount->getCount(); in costBenefitAnalysis() local
873 CycleSavings += EntryCount / 2; in costBenefitAnalysis()
874 CycleSavings = CycleSavings.udiv(EntryCount); in costBenefitAnalysis()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp590 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx); in emitCSpecificHandlerTable() local
592 OS.emitValue(EntryCount, 4); in emitCSpecificHandlerTable()
/openbsd-src/sys/stand/efi/include/
H A Defiapi.h594 OUT UINTN *EntryCount
/openbsd-src/gnu/llvm/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2605 uint64_t EntryCount; member
2608 : TotalCount(0), TotalCountPercent(0.0f), MaxCount(0), EntryCount(0) {} in HotFuncInfo()
2612 MaxCount(MS), EntryCount(ES) {} in HotFuncInfo()
2665 FOS << R.EntryCount; in dumpHotFunctionList()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1131 void markFunctionAttributes(uint64_t EntryCount, uint64_t MaxCount) { in markFunctionAttributes() argument
1132 if (PSI->isHotCount(EntryCount)) in markFunctionAttributes()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp807 uint32_t EntryCount = readVaruint32(Ctx); in parseLinkingSectionComdat() local
808 while (EntryCount--) { in parseLinkingSectionComdat()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjC.cpp1864 uint64_t EntryCount = getCurrentProfileCount(); in EmitObjCForCollectionStmt() local
1868 createProfileWeights(EntryCount, getProfileCount(S.getBody()))); in EmitObjCForCollectionStmt()
2049 createProfileWeights(getProfileCount(S.getBody()), EntryCount)); in EmitObjCForCollectionStmt()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7411 uint64_t EntryCount = 0; in parseEntireSummary() local
7425 EntryCount = Record[5]; in parseEntireSummary()
7451 Flags, InstCount, getDecodedFFlags(RawFunFlags), EntryCount, in parseEntireSummary()