Home
last modified time | relevance | path

Searched refs:RecordData (Results 1 – 25 of 33) sorted by relevance

12

/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp28 LocallyHashedType LocallyHashedType::hashType(ArrayRef<uint8_t> RecordData) { in hashType() argument
29 return {llvm::hash_value(RecordData), RecordData}; in hashType()
33 GloballyHashedType::hashType(ArrayRef<uint8_t> RecordData, in hashType() argument
37 discoverTypeIndices(RecordData, Refs); in hashType()
41 S.update(RecordData.take_front(sizeof(RecordPrefix))); in hashType()
42 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in hashType()
46 ArrayRef<uint8_t> PreData = RecordData.slice(Off, PreLen); in hashType()
50 auto RefData = RecordData.slice(Ref.Offset, Ref.Count * sizeof(TypeIndex)); in hashType()
76 auto TrailingBytes = RecordData.drop_front(Off); in hashType()
H A DTypeIndexDiscovery.cpp463 static void resolveTypeIndexReferences(ArrayRef<uint8_t> RecordData, in resolveTypeIndexReferences() argument
471 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in resolveTypeIndexReferences()
473 BinaryStreamReader Reader(RecordData, llvm::endianness::little); in resolveTypeIndexReferences()
484 return discoverTypeIndices(Type.RecordData, Indices); in discoverTypeIndices()
487 void llvm::codeview::discoverTypeIndices(ArrayRef<uint8_t> RecordData, in discoverTypeIndices() argument
490 discoverTypeIndices(RecordData, Refs); in discoverTypeIndices()
491 resolveTypeIndexReferences(RecordData, Refs, Indices); in discoverTypeIndices()
494 void llvm::codeview::discoverTypeIndices(ArrayRef<uint8_t> RecordData, in discoverTypeIndices() argument
497 reinterpret_cast<const RecordPrefix *>(RecordData.data()); in discoverTypeIndices()
499 ::discoverTypeIndices(RecordData.drop_front(sizeof(RecordPrefix)), K, Refs); in discoverTypeIndices()
[all …]
H A DMergingTypeTableBuilder.cpp94 ArrayRef<uint8_t> RecordData = stabilize(RecordStorage, Record); in insertRecordAs()
95 Result.first->first.RecordData = RecordData; in insertRecordAs() local
96 SeenRecords.push_back(RecordData); in insertRecordAs()
116 TI = insertRecordBytes(C.RecordData); in insertRecord()
140 Result.first->first.RecordData = Record; in replaceType()
H A DTypeStreamMerger.cpp362 unsigned AlignedSize = alignTo(Type.RecordData.size(), 4); in remapType()
390 unsigned Align = OriginalType.RecordData.size() & 3; in remapIndices()
391 assert(Storage.size() == alignTo(OriginalType.RecordData.size(), 4) && in remapIndices()
396 discoverTypeIndices(OriginalType.RecordData, Refs); in remapIndices()
398 return OriginalType.RecordData; in remapIndices()
400 ::memcpy(Storage.data(), OriginalType.RecordData.data(), in remapIndices()
401 OriginalType.RecordData.size()); in remapIndices()
423 DestContent = Storage.data() + OriginalType.RecordData.size(); in remapIndices()
H A DDebugSymbolsSubsection.cpp25 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
H A DSymbolSerializer.cpp53 Record.RecordData = ArrayRef<uint8_t>(StableStorage, RecordEnd); in visitSymbolEnd()
H A DSymbolRecordHelpers.cpp91 EndOffset += Closer.RecordData.size(); in limitSymbolArrayToScope()
H A DAppendingTypeTableBuilder.cpp90 TI = insertRecordBytes(C.RecordData); in insertRecord()
H A DGlobalTypeTableBuilder.cpp103 TI = insertRecordBytes(C.RecordData); in insertRecord()
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h33 CVRecord(ArrayRef<uint8_t> Data) : RecordData(Data) {} in CVRecord()
36 : RecordData(reinterpret_cast<const uint8_t *>(P), Size) {} in CVRecord()
40 uint32_t length() const { return RecordData.size(); } in length()
43 if (RecordData.size() < sizeof(RecordPrefix)) in kind()
46 reinterpret_cast<const RecordPrefix *>(RecordData.data())->RecordKind)); in kind()
49 ArrayRef<uint8_t> data() const { return RecordData; } in data()
52 return StringRef(reinterpret_cast<const char *>(RecordData.data()), in str_data()
53 RecordData.size()); in str_data()
57 return RecordData.drop_front(sizeof(RecordPrefix)); in content()
60 ArrayRef<uint8_t> RecordData; variable
H A DTypeHashing.h36 ArrayRef<uint8_t> RecordData; member
39 static LocallyHashedType hashType(ArrayRef<uint8_t> RecordData);
56 Hashes.push_back(hashType(Type.RecordData)); in hashTypeCollection()
106 static GloballyHashedType hashType(ArrayRef<uint8_t> RecordData,
117 return hashType(Type.RecordData, PreviousTypes, PreviousIds); in hashType()
172 Hashes.push_back(hashType(Type.RecordData, Hashes, Hashes)); in hashTypeCollection()
199 return LHS.RecordData == RHS.RecordData;
H A DTypeIndexDiscovery.h26 void discoverTypeIndices(ArrayRef<uint8_t> RecordData,
32 void discoverTypeIndices(ArrayRef<uint8_t> RecordData,
39 bool discoverTypeIndicesInSymbol(ArrayRef<uint8_t> RecordData,
41 bool discoverTypeIndicesInSymbol(ArrayRef<uint8_t> RecordData,
H A DSymbolDeserializer.h26 MappingInfo(ArrayRef<uint8_t> RecordData, CodeViewContainer Container) in MappingInfo()
27 : Stream(RecordData, llvm::endianness::little), Reader(Stream), in MappingInfo()
H A DTypeDeserializer.h30 explicit MappingInfo(ArrayRef<uint8_t> RecordData) in MappingInfo()
31 : Stream(RecordData, llvm::endianness::little), Reader(Stream), in MappingInfo()
/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp50 typedef SmallVector<uint64_t, 64> RecordData; typedef
121 std::error_code adjustSourceLocFilename(RecordData &Record,
124 void adjustAbbrevID(RecordData &Record, AbbrevLookup &Lookup,
127 void writeRecordWithAbbrev(unsigned ID, RecordData &Record);
129 void writeRecordWithBlob(unsigned ID, RecordData &Record, StringRef Blob);
265 RecordData Record;
383 RecordData::value_type Record[] = {RECORD_FILENAME, entry, 0 /* For legacy */, in getEmitFile()
430 RecordData &Record = State->Record; in EmitBlockInfoBlock()
519 RecordData::value_type Record[] = {RECORD_VERSION, VersionNumber}; in EmitMetaBlock()
531 RecordData in getEmitCategory()
[all...]
/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h399 using RecordData = SmallVector<uint64_t, 64>;
1544 void ParseLineTable(ModuleFile &F, const RecordData &Record);
1547 ASTReadResult ReadModuleMapFileBlock(RecordData &Record, ModuleFile &F,
1552 static bool ParseLanguageOptions(const RecordData &Record,
1556 static bool ParseTargetOptions(const RecordData &Record,
1560 static bool ParseDiagnosticOptions(const RecordData &Record,
1563 static bool ParseFileSystemOptions(const RecordData &Record, bool Complain,
1565 static bool ParseHeaderSearchOptions(const RecordData &Record,
1568 static bool ParseHeaderSearchPaths(const RecordData &Record, bool Complain,
1570 static bool ParsePreprocessorOptions(const RecordData
380 using RecordData = SmallVector<uint64_t, 64>; global() variable
[all...]
H A DASTRecordReader.h40 ASTReader::RecordData Record;
42 using RecordData = ASTReader::RecordData; variable
H A DASTWriter.h94 using RecordData = SmallVector<uint64_t, 64>; variable
449 RecordData EagerlyDeserializedDecls;
450 RecordData ModularCodegenDecls;
/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp314 ASTWriter::RecordData Record;
890 RecordData Record; in WriteBlockInfoBlock()
1322 RecordData Record; in writeUnhashedControlBlock()
1424 RecordData::value_type Record[] = {HEADER_SEARCH_ENTRY_USAGE, in WriteControlBlock()
1437 RecordData::value_type Record[] = {VFS_USAGE, VFSUsage.size()}; in WriteControlBlock()
1454 RecordData Record; in WriteControlBlock()
1473 RecordData::value_type Record[] = {METADATA, in WriteControlBlock()
1492 RecordData::value_type Record[] = {MODULE_NAME}; in WriteControlBlock()
1521 RecordData::value_type Record[] = {MODULE_DIRECTORY}; in WriteControlBlock()
1898 RecordData in CreateSLocBufferAbbrev()
5754 RecordData RecordData; WriteDeclUpdatesBlocks() local
[all...]
H A DASTReader.cpp1391 RecordData Record; in Error()
1439 RecordData Record; in ParseLineTable()
1512 RecordData Record; in readSLocOffset()
1583 void ASTReader::ParseLineTable(ModuleFile &F, const RecordData &Record) { in ReadSLocEntry()
1642 RecordData Record; in ReadSLocEntry()
1700 RecordData Record; in ReadSLocEntry()
1769 RecordData Record; in getModuleImportLoc()
1838 RecordData Record; in ReadToken()
2067 RecordData Record;
2332 RecordData Recor in resolvePendingMacro()
[all...]
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h30 return Item.RecordData.size();
33 return Item.RecordData;
/llvm-project/llvm/unittests/DebugInfo/CodeView/
H A DTypeIndexDiscoveryTest.cpp62 TTB->insertRecordBytes(Records.front().RecordData); in writeFieldList()
90 bool checkOneTypeReference(uint32_t RecordIndex, ArrayRef<uint8_t> RecordData, in checkOneTypeReference() argument
92 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in checkOneTypeReference()
96 ArrayRef<uint8_t> Loc = RecordData.drop_front(Offset); in checkOneTypeReference()
H A DRandomAccessVisitorTest.cpp44 if (R1.RecordData != R2.RecordData) in operator ==()
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp80 return xxh3_64bits(Val.RecordData); in getHashValue()
83 return LHS.RecordData == RHS.RecordData; in isEqual()
/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp866 TpiBuilder.addTypeRecord(Type.RecordData, std::nullopt); in yamlToPdb()
874 IpiBuilder.addTypeRecord(Type.RecordData, std::nullopt); in yamlToPdb()
1354 DestTpi.addTypeRecord(Type.RecordData, std::nullopt); in mergePdbs()
1357 DestIpi.addTypeRecord(Type.RecordData, std::nullopt); in mergePdbs()

12