|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h 25 using ReferenceArray = FixedStreamArray<CrossModuleExport>;
43 FixedStreamArray<CrossModuleExport> References;
include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h 30 FixedStreamArray<support::ulittle32_t> Imports;
include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h 31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); }
32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); }
38 FixedStreamArray<FrameData> Frames;
include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h 47 FixedStreamArray<support::ulittle32_t> ExtraFiles;
include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h 66 FixedStreamArray<LineNumberEntry> LineNumbers;
67 FixedStreamArray<ColumnNumberEntry> Columns;
include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h 28 using ArrayType = FixedStreamArray<support::ulittle32_t>;
include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h 51 using PartialOffsetArray = FixedStreamArray<TypeIndexOffset>;
include/llvm/DebugInfo/PDB/Native/DbiModuleList.h 90 FixedStreamArray<support::little32_t> FileNameOffsets;
91 FixedStreamArray<support::ulittle16_t> ModFileCountArray;
include/llvm/DebugInfo/PDB/Native/DbiStream.h 81 FixedStreamArray<object::coff_section> getSectionHeaders() const;
84 FixedStreamArray<object::FpoData> getOldFpoRecords() const;
88 FixedStreamArray<SecMapEntry> getSectionMap() const;
116 FixedStreamArray<support::ulittle16_t> DbgStreams;
120 FixedStreamArray<SectionContrib> SectionContribs;
121 FixedStreamArray<SectionContrib2> SectionContribs2;
122 FixedStreamArray<SecMapEntry> SectionMap;
125 FixedStreamArray<object::coff_section> SectionHeaders;
128 FixedStreamArray<object::FpoData> OldFpoRecords;
include/llvm/DebugInfo/PDB/Native/GlobalsStream.h 53 FixedStreamArray<PSHashRecord> HashRecords;
54 FixedStreamArray<support::ulittle32_t> HashBitmap;
55 FixedStreamArray<support::ulittle32_t> HashBuckets;
include/llvm/DebugInfo/PDB/Native/PDBStringTable.h 45 FixedStreamArray<support::ulittle32_t> name_ids() const;
57 FixedStreamArray<support::ulittle32_t> IDs;
include/llvm/DebugInfo/PDB/Native/PublicsStream.h 37 FixedStreamArray<support::ulittle32_t> getAddressMap() const {
40 FixedStreamArray<support::ulittle32_t> getThunkMap() const {
43 FixedStreamArray<SectionOffset> getSectionOffsets() const {
50 FixedStreamArray<support::ulittle32_t> AddressMap;
51 FixedStreamArray<support::ulittle32_t> ThunkMap;
52 FixedStreamArray<SectionOffset> SectionOffsets;
include/llvm/DebugInfo/PDB/Native/TpiStream.h 51 FixedStreamArray<support::ulittle32_t> getHashValues() const;
52 FixedStreamArray<codeview::TypeIndexOffset> getTypeIndexOffsets() const;
86 FixedStreamArray<support::ulittle32_t> HashValues;
87 FixedStreamArray<codeview::TypeIndexOffset> TypeIndexOffsets;
include/llvm/Support/BinaryStreamArray.h 269 bool operator==(const FixedStreamArray<T> &Other) const {
269 bool operator==(const FixedStreamArray<T> &Other) const {
269 bool operator==(const FixedStreamArray<T> &Other) const {
273 bool operator!=(const FixedStreamArray<T> &Other) const {
273 bool operator!=(const FixedStreamArray<T> &Other) const {
277 FixedStreamArray &operator=(const FixedStreamArray &) = default;
277 FixedStreamArray &operator=(const FixedStreamArray &) = default;
323 FixedStreamArrayIterator(const FixedStreamArray<T> &Array, uint32_t Index)
364 FixedStreamArray<T> Array;
include/llvm/Support/BinaryStreamReader.h 235 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) {
237 Array = FixedStreamArray<T>();
249 Array = FixedStreamArray<T>(View);
include/llvm/Support/BinaryStreamWriter.h 176 template <typename T> Error writeArray(FixedStreamArray<T> Array) {
lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp 474 FixedStreamArray<TypeIndex> Run;
lib/DebugInfo/PDB/Native/DbiModuleList.cpp 198 FixedStreamArray<support::ulittle16_t> ModuleIndices;
lib/DebugInfo/PDB/Native/DbiStream.cpp 34 static Error loadSectionContribs(FixedStreamArray<ContribType> &Output,
201 FixedStreamArray<object::coff_section> DbiStream::getSectionHeaders() const {
207 FixedStreamArray<object::FpoData> DbiStream::getOldFpoRecords() const {
219 FixedStreamArray<SecMapEntry> DbiStream::getSectionMap() const {
lib/DebugInfo/PDB/Native/GlobalsStream.cpp 107 static Error readGSIHashRecords(FixedStreamArray<PSHashRecord> &HashRecords,
128 readGSIHashBuckets(FixedStreamArray<support::ulittle32_t> &HashBuckets,
lib/DebugInfo/PDB/Native/PDBFile.cpp 39 typedef FixedStreamArray<support::ulittle32_t> ulittle_array;
lib/DebugInfo/PDB/Native/PDBStringTable.cpp 138 FixedStreamArray<support::ulittle32_t> PDBStringTable::name_ids() const {
lib/DebugInfo/PDB/Native/TpiStream.cpp 230 FixedStreamArray<support::ulittle32_t> TpiStream::getHashValues() const {
234 FixedStreamArray<TypeIndexOffset> TpiStream::getTypeIndexOffsets() const {
tools/lld/COFF/PDB.cpp 1203 FixedStreamArray<object::FpoData> fpoRecords;
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp 411 llvm::FixedStreamArray<ulittle32_t> addr_map = publics.getAddressMap();
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp 511 static llvm::FixedStreamArray<FrameData>::Iterator
tools/llvm-pdbutil/DumpOutputStyle.cpp 1099 const FixedStreamArray<object::FpoData>& Records = Dbi.getOldFpoRecords();
1313 FixedStreamArray<support::ulittle32_t> HashValues,
tools/llvm-pdbutil/MinimalTypeDumper.h 31 FixedStreamArray<support::ulittle32_t> HashValues,
64 FixedStreamArray<support::ulittle32_t> HashValues;
unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp 172 FixedStreamArray<TypeIndexOffset> Offsets;
177 FixedStreamArray<TypeIndexOffset>
191 FixedStreamArray<TypeIndexOffset> Result;
391 FixedStreamArray<TypeIndexOffset> PartialOffsets;
unittests/Support/BinaryStreamTest.cpp 425 FixedStreamArray<uint32_t> Array(*Stream.Input);
447 const FixedStreamArray<std::pair<uint32_t, uint32_t>> Array(*Stream.Input);
581 FixedStreamArray<int> FixedIntsRef;
602 FixedStreamArray<MyEnum> FSA;