Home
last modified time | relevance | path

Searched refs:RecordPrefix (Results 1 – 19 of 19) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DCVRecord.h45 return RecordData.drop_front(sizeof(RecordPrefix)); in content()
67 if (StreamBuffer.size() < sizeof(RecordPrefix)) in forEachCodeViewRecord()
70 const RecordPrefix *Prefix = in forEachCodeViewRecord()
71 reinterpret_cast<const RecordPrefix *>(StreamBuffer.data()); in forEachCodeViewRecord()
92 const RecordPrefix *Prefix = nullptr; in readCVRecordFromStream()
DTypeDeserializer.h57 const RecordPrefix *Prefix = in deserializeAs()
58 reinterpret_cast<const RecordPrefix *>(Data.data()); in deserializeAs()
DSymbolSerializer.h41 RecordPrefix Prefix; in writeRecordPrefix()
DRecordSerialization.h34 struct RecordPrefix { struct
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DContinuationRecordBuilder.cpp17 RecordPrefix Prefix;
74 RecordPrefix Prefix; in begin()
117 assert(getCurrentSegmentLength() == MemberLength + sizeof(RecordPrefix)); in writeMemberType()
165 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(Data.data()); in createSegmentRecord()
167 Prefix->RecordLen = Data.size() - sizeof(RecordPrefix::RecordLen); in createSegmentRecord()
DSimpleTypeSerializer.cpp7 RecordPrefix Prefix; in writeRecordPrefix()
46 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(ScratchBuffer.data()); in serialize()
DGlobalTypeTableBuilder.cpp59 assert(Type.RecordData.size() >= sizeof(RecordPrefix)); in getType()
60 const RecordPrefix *P = in getType()
61 reinterpret_cast<const RecordPrefix *>(Type.RecordData.data()); in getType()
DTypeIndexDiscovery.cpp468 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in resolveTypeIndexReferences()
493 const RecordPrefix *P = in discoverTypeIndices()
494 reinterpret_cast<const RecordPrefix *>(RecordData.data()); in discoverTypeIndices()
496 ::discoverTypeIndices(RecordData.drop_front(sizeof(RecordPrefix)), K, Refs); in discoverTypeIndices()
507 const RecordPrefix *P = in discoverTypeIndicesInSymbol()
508 reinterpret_cast<const RecordPrefix *>(RecordData.data()); in discoverTypeIndicesInSymbol()
510 return ::discoverTypeIndices(RecordData.drop_front(sizeof(RecordPrefix)), K, in discoverTypeIndicesInSymbol()
DTypeTableCollection.cpp41 const RecordPrefix *Prefix = in getType()
42 reinterpret_cast<const RecordPrefix *>(Bytes.data()); in getType()
DAppendingTypeTableBuilder.cpp56 const RecordPrefix *P = in getType()
57 reinterpret_cast<const RecordPrefix *>(Type.RecordData.data()); in getType()
DTypeHashing.cpp42 S.update(RecordData.take_front(sizeof(RecordPrefix))); in hashType()
43 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in hashType()
DMergingTypeTableBuilder.cpp58 const RecordPrefix *P = in getType()
59 reinterpret_cast<const RecordPrefix *>(Type.RecordData.data()); in getType()
DTypeRecordMapping.cpp94 MaxLen = MaxRecordLength - sizeof(RecordPrefix); in visitTypeBegin()
119 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix) - in visitMemberBegin()
DTypeStreamMerger.cpp387 uint8_t *DestContent = Storage.data() + sizeof(RecordPrefix); in remapIndices()
DSymbolRecordMapping.cpp38 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin()
/external/llvm/include/llvm/DebugInfo/CodeView/
DCVRecord.h33 const RecordPrefix *Prefix = nullptr;
48 Item.Data = Item.RawData.slice(sizeof(RecordPrefix));
DRecordSerialization.h27 struct RecordPrefix { struct
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp245 RecordPrefix Prefix; in toCodeViewSymbol()
246 uint32_t TotalLen = sizeof(RecordPrefix) + Data.size(); in toCodeViewSymbol()
250 ::memcpy(Buffer, &Prefix, sizeof(RecordPrefix)); in toCodeViewSymbol()
251 ::memcpy(Buffer + sizeof(RecordPrefix), Data.data(), Data.size()); in toCodeViewSymbol()
257 Data = CVS.RecordData.drop_front(sizeof(RecordPrefix)); in fromCodeViewSymbol()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
DTypeIndexDiscoveryTest.cpp93 RecordData = RecordData.drop_front(sizeof(RecordPrefix)); in checkOneTypeReference()