Lines Matching refs:StackIdIndices
429 std::vector<unsigned> StackIdIndices; member in __anon9ee8d7120111::IndexBitcodeWriter
473 if (CI.StackIdIndices.empty()) { in IndexBitcodeWriter()
477 for (auto Idx : CI.StackIdIndices) in IndexBitcodeWriter()
478 StackIdIndices.push_back(Idx); in IndexBitcodeWriter()
482 for (auto Idx : MIB.StackIdIndices) in IndexBitcodeWriter()
483 StackIdIndices.push_back(Idx); in IndexBitcodeWriter()
485 llvm::sort(StackIdIndices); in IndexBitcodeWriter()
486 StackIdIndices.erase( in IndexBitcodeWriter()
487 std::unique(StackIdIndices.begin(), StackIdIndices.end()), in IndexBitcodeWriter()
488 StackIdIndices.end()); in IndexBitcodeWriter()
4005 Record.push_back(CI.StackIdIndices.size()); in writeFunctionHeapProfileRecords()
4008 for (auto Id : CI.StackIdIndices) in writeFunctionHeapProfileRecords()
4030 Record.push_back(MIB.StackIdIndices.size()); in writeFunctionHeapProfileRecords()
4031 for (auto Id : MIB.StackIdIndices) in writeFunctionHeapProfileRecords()
4347 if (!StackIdIndices.empty()) { in writeCombinedGlobalValueSummary()
4357 for (auto &I : StackIdIndices) in writeCombinedGlobalValueSummary()
4521 auto Lower = llvm::lower_bound(StackIdIndices, I); in writeCombinedGlobalValueSummary()
4522 return std::distance(StackIdIndices.begin(), Lower); in writeCombinedGlobalValueSummary()