Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp95 std::vector<llvm::object::BuildID> &BinaryIds, in readBinaryIdsInternal() argument
130 BinaryIds.push_back(object::BuildID(BI, BI + BILen)); in readBinaryIdsInternal()
144 ArrayRef<llvm::object::BuildID> BinaryIds) { in printBinaryIdsInternal() argument
146 for (const auto &BI : BinaryIds) { in printBinaryIdsInternal()
592 BinaryIds, getDataEndianness())) in readHeader()
862 std::vector<llvm::object::BuildID> &BinaryIds) { in readBinaryIds() argument
863 BinaryIds.insert(BinaryIds.begin(), this->BinaryIds.begin(), in readBinaryIds()
864 this->BinaryIds.end()); in readBinaryIds()
870 if (!BinaryIds.empty()) in printBinaryIds()
871 printBinaryIdsInternal(OS, BinaryIds); in printBinaryIds()
[all …]
H A DInstrProfWriter.cpp319 llvm::append_range(BinaryIds, BIs); in addBinaryIds()
385 BinaryIds.reserve(BinaryIds.size() + IPW.BinaryIds.size()); in mergeRecordsFromWriter()
386 for (auto &I : IPW.BinaryIds) in mergeRecordsFromWriter()
921 llvm::sort(BinaryIds); in writeImpl()
922 BinaryIds.erase(llvm::unique(BinaryIds), BinaryIds.end()); in writeImpl()
924 for (const auto &BI : BinaryIds) { in writeImpl()
933 for (const auto &BI : BinaryIds) { in writeImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h106 virtual Error readBinaryIds(std::vector<llvm::object::BuildID> &BinaryIds) { in readBinaryIds() argument
344 std::vector<llvm::object::BuildID> BinaryIds; variable
365 Error readBinaryIds(std::vector<llvm::object::BuildID> &BinaryIds) override;
827 Error readBinaryIds(std::vector<llvm::object::BuildID> &BinaryIds) override;
H A DInstrProfWriter.h58 std::vector<llvm::object::BuildID> BinaryIds; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp796 std::vector<llvm::object::BuildID> BinaryIds; in loadInput() local
797 if (Error E = Reader->readBinaryIds(BinaryIds)) { in loadInput()
801 WC->Writer.addBinaryIds(BinaryIds); in loadInput()