Home
last modified time | relevance | path

Searched refs:AllocSites (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/
DMemProf.h327 llvm::SmallVector<IndexedAllocationInfo> AllocSites; member
336 AllocSites.clear(); in clear()
343 AllocSites.append(Other.AllocSites); in merge()
349 for (const IndexedAllocationInfo &N : AllocSites) in serializedSize()
363 if (Other.AllocSites.size() != AllocSites.size())
369 for (size_t I = 0; I < AllocSites.size(); I++) {
370 if (AllocSites[I] != Other.AllocSites[I])
400 llvm::SmallVector<AllocationInfo> AllocSites; member
408 for (const IndexedAllocationInfo &IndexedAI : Record.AllocSites) { in MemProfRecord()
409 AllocSites.emplace_back(IndexedAI, IdToFrameCallback); in MemProfRecord()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/ProfileData/
DMemProf.cpp17 LE.write<uint64_t>(AllocSites.size()); in serialize()
18 for (const IndexedAllocationInfo &N : AllocSites) { in serialize()
53 Record.AllocSites.push_back(Node); in deserialize()
DRawMemProfReader.cpp223 const size_t NumAllocSites = KV.second.AllocSites.size(); in printYAML()
367 Record.AllocSites.emplace_back(Callstack, Entry.second); in mapRawProfileToRecords()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp1351 for (auto &AI : MemProfRec.AllocSites) { in readMemprof()