Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp324 std::vector<uint64_t> *IndexPos = nullptr);
1732 std::vector<uint64_t> *IndexPos) { in writeMetadataRecords() argument
1741 if (IndexPos) in writeMetadataRecords()
1742 IndexPos->push_back(Stream.GetCurrentBitNo()); in writeMetadataRecords()
1818 std::vector<uint64_t> IndexPos; in writeModuleMetadata() local
1819 IndexPos.reserve(VE.getNonMDStrings().size()); in writeModuleMetadata()
1820 writeMetadataRecords(VE.getNonMDStrings(), Record, &MDAbbrevs, &IndexPos); in writeModuleMetadata()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp375 std::vector<uint64_t> *IndexPos = nullptr);
2276 std::vector<unsigned> *MDAbbrevs, std::vector<uint64_t> *IndexPos) { in writeMetadataRecords() argument
2285 if (IndexPos) in writeMetadataRecords()
2286 IndexPos->push_back(Stream.GetCurrentBitNo()); in writeMetadataRecords()
2360 std::vector<uint64_t> IndexPos; in writeModuleMetadata() local
2361 IndexPos.reserve(VE.getNonMDStrings().size()); in writeModuleMetadata()
2364 writeMetadataRecords(VE.getNonMDStrings(), Record, &MDAbbrevs, &IndexPos); in writeModuleMetadata()
2376 for (auto &Elt : IndexPos) { in writeModuleMetadata()
2382 Stream.EmitRecord(bitc::METADATA_INDEX, IndexPos, IndexAbbrev); in writeModuleMetadata()
2383 IndexPos.clear(); in writeModuleMetadata()