/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PublicsStream.cpp | 75 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries)) in reload() 81 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks)) in reload() 88 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections)) in reload()
|
H A D | DbiModuleList.cpp | 180 if (auto EC = Reader.readArray(Descriptors, ModInfo.getLength())) in initializeModInfo() 199 if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules)) in initializeFileInfo() 201 if (auto EC = FISR.readArray(ModFileCountArray, FileInfoHeader->NumModules)) in initializeFileInfo() 216 if (auto EC = FISR.readArray(FileNameOffsets, NumSourceFiles)) in initializeFileInfo()
|
H A D | DbiStream.cpp | 40 if (auto EC = Reader.readArray(Output, Count)) in loadSectionContribs() 113 if (auto EC = Reader.readArray( in reload() 273 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData() 299 if (auto EC = Reader.readArray(OldFpoRecords, NumRecords)) in initializeOldFpoRecords() 371 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount)) in initializeSectionMapData()
|
H A D | GlobalsStream.cpp | 119 if (auto EC = Reader.readArray(HashRecords, NumHashRecords)) in readGSIHashRecords() 140 if (auto EC = Reader.readArray(HashBitmap, NumBitmapEntries)) in readGSIHashBuckets() 161 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) in readGSIHashBuckets()
|
H A D | TpiStream.cpp | 75 RecordReader.readArray(TypeRecords, TypeRecordsSubstream.size())) in reload() 96 if (auto EC = HSR.readArray(HashValues, NumHashValues)) in reload() 102 if (auto EC = HSR.readArray(TypeIndexOffsets, NumTypeIndexOffsets)) in reload()
|
H A D | ModuleDebugStream.cpp | 71 if (auto EC = SymbolReader.readArray( in reloadSerialize() 76 if (auto EC = SubsectionsReader.readArray(Subsections, in reloadSerialize()
|
H A D | SymbolStream.cpp | 26 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength())) in reload()
|
H A D | PDBFile.cpp | 172 if (auto EC = Reader.readArray(ContainerLayout.DirectoryBlocks, in parseFileHeaders() 197 if (auto EC = Reader.readArray(ContainerLayout.StreamSizes, NumStreams)) in parseStreamData() 214 if (auto EC = Reader.readArray(Blocks, NumExpectedStreamBlocks)) in parseStreamData()
|
H A D | PDBStringTable.cpp | 66 if (auto EC = Reader.readArray(IDs, *HashCount)) { in readHashTable()
|
/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugLinesSubsection.cpp | 44 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines)) in operator ()() 47 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator ()() 61 if (auto EC = Reader.readArray(LinesAndColumns, Reader.bytesRemaining())) in initialize()
|
H A D | DebugCrossImpSubsection.cpp | 38 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count)) in operator ()() 45 return Reader.readArray(References, Reader.bytesRemaining()); in initialize()
|
H A D | DebugInlineeLinesSubsection.cpp | 35 if (auto EC = Reader.readArray(Item.ExtraFiles, ExtraFileCount)) in operator ()() 51 if (auto EC = Reader.readArray(Lines, Reader.bytesRemaining())) in initialize()
|
H A D | DebugSymbolRVASubsection.cpp | 23 return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t)); in initialize()
|
H A D | DebugSymbolsSubsection.cpp | 16 return Reader.readArray(Records, Reader.getLength()); in initialize()
|
H A D | DebugCrossExSubsection.cpp | 27 return Reader.readArray(References, Size); in initialize()
|
H A D | DebugFrameDataSubsection.cpp | 28 if (auto EC = Reader.readArray(Frames, Count)) in initialize()
|
H A D | DebugChecksumsSubsection.cpp | 52 if (auto EC = Reader.readArray(Checksums, Reader.bytesRemaining())) in initialize()
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryStreamReader.h | 178 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { in readArray() function 208 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size, 226 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { in readArray() function
|
/llvm-project/clang/include/clang/AST/ |
H A D | AbstractBasicReader.h | 147 llvm::ArrayRef<T> readArray(llvm::SmallVectorImpl<T> &buffer) { in readArray() function 227 esi.Exceptions = asImpl().template readArray<QualType>(buffer); in readExceptionSpecInfo()
|
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | RecordSerialization.h | 94 return Reader.readArray(Item, Func()); in deserialize() 144 return Reader.readArray(Item, Count); in deserialize()
|
/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | GsymReader.cpp | 109 FileData.readArray(AddrOffsets, in parse() 116 FileData.readArray(AddrInfoOffsets, Hdr->NumAddresses)) in parse() 122 if (FileData.readInteger(NumFiles) || FileData.readArray(Files, NumFiles)) in parse()
|
/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | TypeReferenceTracker.cpp | 68 cantFail(Reader.readArray(Symbols, Reader.getLength())); in mark()
|
/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
H A D | RandomAccessVisitorTest.cpp | 192 consumeError(Reader.readArray(Result, Count)); in createPartialOffsets() 392 ASSERT_THAT_ERROR(Reader.readArray(PartialOffsets, 2), Succeeded()); in TEST_F()
|
/llvm-project/llvm/unittests/Support/ |
H A D | BinaryStreamTest.cpp | 577 ASSERT_THAT_ERROR(Reader.readArray(IntsRef, Ints.size()), Succeeded()); in TEST_F() 583 ASSERT_THAT_ERROR(Reader.readArray(FixedIntsRef, Ints.size()), Succeeded()); in TEST_F() 800 ASSERT_THAT_ERROR(Reader.readArray(Ints, SourceInts.size()), Succeeded()); in TEST_F() 804 ASSERT_THAT_ERROR(ReaderBacker.readArray(Ints2, SourceInts.size()), in TEST_F()
|
/llvm-project/llvm/lib/Support/ |
H A D | BinaryStreamReader.cpp | 115 if (auto EC = readArray(Dest, Length)) in readWideString()
|