Home
last modified time | relevance | path

Searched refs:MinBlockCount (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/MSF/
H A DMSFBuilder.h59 uint32_t MinBlockCount = 0,
122 MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp39 MSFBuilder::MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow, in MSFBuilder() argument
43 BlockMapAddr(kDefaultBlockMapAddr), FreeBlocks(MinBlockCount, true) { in MSFBuilder()
52 uint32_t MinBlockCount, bool CanGrow) { in create() argument
58 std::max(MinBlockCount, msf::getMinimumBlockCount()), in create()
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/
H A DInstrProf.h1097 MinBlockCount; ///< The minimum execution count for this percentile. member
1166 ER.MinBlockCount = E.MinCount; in setEntry()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1482 auto MinBlockCount = readNumber<uint64_t>(); in readSummaryEntry() local
1483 if (std::error_code EC = MinBlockCount.getError()) in readSummaryEntry()
1490 Entries.emplace_back(*Cutoff, *MinBlockCount, *NumBlocks); in readSummaryEntry()
H A DInstrProfReader.cpp952 DetailedSummary.emplace_back((uint32_t)Ent.Cutoff, Ent.MinBlockCount, in readSummary()