Searched refs:StackIdIndices (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | MemoryProfileInfo.h | 142 Iter = End ? N->StackIdIndices.end() : N->StackIdIndices.begin(); in CallStackIterator() 147 assert(Iter != N->StackIdIndices.end());
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 308 SmallVector<unsigned> StackIdIndices; 310 CallsiteInfo(ValueInfo Callee, SmallVector<unsigned> StackIdIndices) 311 : Callee(Callee), StackIdIndices(std::move(StackIdIndices)) {} 313 SmallVector<unsigned> StackIdIndices) 315 StackIdIndices(std::move(StackIdIndices)) {} 334 SmallVector<unsigned> StackIdIndices; 336 MIBInfo(AllocationType AllocType, SmallVector<unsigned> StackIdIndices) 337 : AllocType(AllocType), StackIdIndices(std::move(StackIdIndices)) {}
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | ModuleSummaryAnalysis.cpp | 449 SmallVector<unsigned> StackIdIndices; in computeFunctionSummary() local 459 if (StackIdIndices.empty() || StackIdIndices.back() != StackIdIdx) in computeFunctionSummary() 460 StackIdIndices.push_back(StackIdIdx); in computeFunctionSummary() 463 MIBInfo(getMIBAllocType(MIBMD), std::move(StackIdIndices))); in computeFunctionSummary() 467 SmallVector<unsigned> StackIdIndices; in computeFunctionSummary() local 469 StackIdIndices.push_back(Index.addOrGetStackIdIndex(StackId)); in computeFunctionSummary() 476 Callsites.push_back({CalleeValueInfo, StackIdIndices}); in computeFunctionSummary()
|
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 429 std::vector<unsigned> StackIdIndices; member in __anonef3ea4f30111::IndexBitcodeWriter 459 for (auto Idx : CI.StackIdIndices) in IndexBitcodeWriter() 460 StackIdIndices.push_back(Idx); in IndexBitcodeWriter() 463 for (auto Idx : MIB.StackIdIndices) in IndexBitcodeWriter() 464 StackIdIndices.push_back(Idx); in IndexBitcodeWriter() 466 llvm::sort(StackIdIndices); in IndexBitcodeWriter() 467 StackIdIndices.erase( in IndexBitcodeWriter() 468 std::unique(StackIdIndices.begin(), StackIdIndices.end()), in IndexBitcodeWriter() 469 StackIdIndices.end()); in IndexBitcodeWriter() 3944 Record.push_back(CI.StackIdIndices.size()); in writeFunctionHeapProfileRecords() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 9863 SmallVector<unsigned> StackIdIndices; in parseMemProfs() local 9868 StackIdIndices.push_back(Index->addOrGetStackIdIndex(StackId)); in parseMemProfs() 9874 MIBs.push_back({(AllocationType)AllocType, StackIdIndices}); in parseMemProfs() 9962 SmallVector<unsigned> StackIdIndices; in parseOptionalCallsites() local 9967 StackIdIndices.push_back(Index->addOrGetStackIdIndex(StackId)); in parseOptionalCallsites() 9978 Callsites.push_back({VI, Clones, StackIdIndices}); in parseOptionalCallsites()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 3246 for (auto Id : MIB.StackIdIndices) { in printFunctionSummary() 3274 for (auto Id : CI.StackIdIndices) { in printFunctionSummary()
|