Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp376 unsigned EntryCount = FileSegEnd - I; in emitLineTableForFunction() local
383 OS.emitInt32(EntryCount); in emitLineTableForFunction()
385 SegmentSize += 8 * EntryCount; in emitLineTableForFunction()
387 SegmentSize += 4 * EntryCount; in emitLineTableForFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h884 uint64_t EntryCount = 0;
916 uint64_t EntryCount, std::vector<ValueInfo> Refs,
926 InstCount(NumInsts), FunFlags(FunFlags), EntryCount(EntryCount),
962 uint64_t entryCount() const { return EntryCount; }
965 void setEntryCount(uint64_t EC) { EntryCount = EC; }
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp592 auto EntryCount = F.getEntryCount(AllowSynthetic); in getProfileCountFromFreq() local
593 if (!EntryCount) in getProfileCountFromFreq()
596 APInt BlockCount(128, EntryCount->getCount()); in getProfileCountFromFreq()
H A DInlineCost.cpp825 auto EntryCount = F.getEntryCount(); in isCostBenefitAnalysisEnabled() local
826 if (!EntryCount || !EntryCount->getCount()) in isCostBenefitAnalysisEnabled()
921 auto EntryCount = EntryProfileCount->getCount(); in costBenefitAnalysis() local
922 CycleSavings += EntryCount / 2; in costBenefitAnalysis()
923 CycleSavings = CycleSavings.udiv(EntryCount); in costBenefitAnalysis()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Ddttable2.c2141 UINT32 EntryCount; in DtCompileSdev() local
2344 EntryCount = 0; in DtCompileSdev()
2362 EntryCount++; in DtCompileSdev()
2369 (EntryCount * sizeof (ACPI_SDEV_PCIE_PATH)); in DtCompileSdev()
/freebsd/sys/dev/mwl/
H A Dmwlreg.h707 uint32_t EntryCount; member
716 uint32_t EntryCount; member
H A Dmwlhal.c963 pCmd->EntryCount = htole32(1); in mwl_hal_settxrate()
982 pCmd->EntryCount = htole32(n); in mwl_hal_settxrate()
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/edk2/Include/IndustryStandard/
H A DAcpi40.h1119 UINT32 EntryCount; member
H A DAcpi50.h1790 UINT32 EntryCount; member
H A DAcpi51.h1806 UINT32 EntryCount; member
H A DAcpi60.h1993 UINT32 EntryCount; member
/freebsd/sys/contrib/edk2/Include/Uefi/
H A DUefiSpec.h1402 OUT UINTN *EntryCount
/freebsd/stand/efi/include/
H A Defiapi.h598 OUT UINTN *EntryCount
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl1.h1433 UINT32 EntryCount; member
/freebsd/contrib/file/magic/Magdir/
H A Dvirtual142 # The EntryCount specifies number of valid entries; Found 2; This must be =< 2047.
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp3013 uint64_t EntryCount = 0; member
3019 MaxCount(MS), EntryCount(ES) {} in HotFuncInfo()
3072 FOS << R.EntryCount; in dumpHotFunctionList()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1193 void markFunctionAttributes(uint64_t EntryCount, uint64_t MaxCount) { in markFunctionAttributes() argument
1194 if (PSI->isHotCount(EntryCount)) in markFunctionAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp912 uint32_t EntryCount = readVaruint32(Ctx); in parseLinkingSectionComdat() local
913 while (EntryCount--) { in parseLinkingSectionComdat()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp1854 uint64_t EntryCount = getCurrentProfileCount(); in EmitObjCForCollectionStmt() local
1858 createProfileWeights(EntryCount, getProfileCount(S.getBody()))); in EmitObjCForCollectionStmt()
2039 createProfileWeights(getProfileCount(S.getBody()), EntryCount)); in EmitObjCForCollectionStmt()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7778 uint64_t EntryCount = 0; in parseEntireSummary() local
7792 EntryCount = Record[5]; in parseEntireSummary()
7818 Flags, InstCount, getDecodedFFlags(RawFunFlags), EntryCount, in parseEntireSummary()