Home
last modified time | relevance | path

Searched refs:ContextIds (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp376 DenseSet<uint32_t> ContextIds; in getContextIds() local
377 ContextIds.reserve(Count); in getContextIds()
383 ContextIds.insert_range(Edge->getContextIds()); in getContextIds()
384 return ContextIds; in getContextIds()
503 DenseSet<uint32_t> ContextIds; member
506 DenseSet<uint32_t> ContextIds) in ContextEdge()
508 ContextIds(std::move(ContextIds)) {} in ContextEdge()
510 DenseSet<uint32_t> &getContextIds() { return ContextIds; } in getContextIds()
515 ContextIds.clear(); in clear()
531 assert(ContextIds.empty()); in isRemoved()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp4496 SmallVector<uint32_t> ContextIds; in writeFunctionHeapProfileRecords() local
4499 ContextIds.reserve(AI.ContextSizeInfos.size() * 2); in writeFunctionHeapProfileRecords()
4507 ContextIds.push_back(static_cast<uint32_t>(FullStackId >> 32)); in writeFunctionHeapProfileRecords()
4508 ContextIds.push_back(static_cast<uint32_t>(FullStackId)); in writeFunctionHeapProfileRecords()
4514 Stream.EmitRecord(bitc::FS_ALLOC_CONTEXT_IDS, ContextIds, in writeFunctionHeapProfileRecords()