Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMSFBuilder.h59 uint32_t MinBlockCount = 0,
122 MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp40 MSFBuilder::MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow, in MSFBuilder()
44 BlockMapAddr(kDefaultBlockMapAddr), FreeBlocks(MinBlockCount, true) { in MSFBuilder()
53 uint32_t MinBlockCount, bool CanGrow) { in create()
59 std::max(MinBlockCount, msf::getMinimumBlockCount()), in create()
39 MSFBuilder(uint32_t BlockSize,uint32_t MinBlockCount,bool CanGrow,BumpPtrAllocator & Allocator) MSFBuilder() argument
52 create(BumpPtrAllocator & Allocator,uint32_t BlockSize,uint32_t MinBlockCount,bool CanGrow) create() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h1156 MinBlockCount; ///< The minimum execution count for this percentile. member
1225 ER.MinBlockCount = E.MinCount; in setEntry()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1453 auto MinBlockCount = readNumber<uint64_t>(); in readSummaryEntry() local
1454 if (std::error_code EC = MinBlockCount.getError()) in readSummaryEntry()
1461 Entries.emplace_back(*Cutoff, *MinBlockCount, *NumBlocks); in readSummaryEntry()
H A DInstrProfReader.cpp1173 DetailedSummary.emplace_back((uint32_t)Ent.Cutoff, Ent.MinBlockCount, in readSummary()