Home
last modified time | relevance | path

Searched refs:PointerRecord (Results 1 – 16 of 16) sorted by relevance

/external/llvm/lib/DebugInfo/CodeView/
DTypeTableBuilder.cpp72 TypeIndex TypeTableBuilder::writePointer(const PointerRecord &Record) { in writePointer()
77 (Record.getSize() << PointerRecord::PointerSizeShift) | in writePointer()
79 << PointerRecord::PointerModeShift) | in writePointer()
81 << PointerRecord::PointerKindShift); in writePointer()
DTypeRecord.cpp84 ErrorOr<PointerRecord> PointerRecord::deserialize(TypeRecordKind Kind, in deserialize()
100 return PointerRecord(L->PointeeType, PtrKind, Mode, Options, Size, *E); in deserialize()
103 return PointerRecord(L->PointeeType, PtrKind, Mode, Options, Size); in deserialize()
436 bool PointerRecord::remapTypeIndices(ArrayRef<TypeIndex> IndexMap) { in remapTypeIndices()
DTypeDumper.cpp400 Error CVTypeDumper::visitPointer(PointerRecord &Ptr) { in visitPointer()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h265 class PointerRecord : public TypeRecord {
278 PointerRecord() = default;
279 explicit PointerRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in PointerRecord() function
281 PointerRecord(TypeIndex ReferentType, uint32_t Attrs) in PointerRecord() function
285 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
290 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeTableBuilder.h44 TypeIndex writePointer(const PointerRecord &Record);
DTypeRecord.h289 class PointerRecord : public TypeRecord {
300 PointerRecord(TypeIndex ReferentType, PointerKind Kind, PointerMode Mode, in PointerRecord() function
302 : PointerRecord(ReferentType, Kind, Mode, Options, Size, in PointerRecord()
305 PointerRecord(TypeIndex ReferentType, PointerKind Kind, PointerMode Mode, in PointerRecord() function
316 static ErrorOr<PointerRecord> deserialize(TypeRecordKind Kind,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
DTypeHashingTest.cpp20 PointerRecord PR(TypeRecordKind::Pointer); in createPointerRecord()
DTypeIndexDiscoveryTest.cpp232 static PointerRecord Pointer(TypeIndex(44), PointerKind::Near32,
234 static PointerRecord MemberPointer(
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DTypeIndexDiscovery.cpp30 return static_cast<PointerMode>((Attrs >> PointerRecord::PointerModeShift) & in getPointerMode()
31 PointerRecord::PointerModeMask); in getPointerMode()
DRecordName.cpp161 Error TypeNameComputer::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
DTypeRecordMapping.cpp189 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, PointerRecord &Record) { in visitKnownRecord()
DTypeDumpVisitor.cpp362 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp176 static std::string formatPointerAttrs(const PointerRecord &Record) { in formatPointerAttrs()
404 PointerRecord &Ptr) { in visitKnownRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1555 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in lowerTypePointer()
1607 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeMemberPointer()
2251 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes()); in getVBPTypeIndex()
2280 PointerRecord PR(getTypeIndex(Ty), in getTypeIndexForReferenceTo()
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1175 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in lowerTypePointer()
1226 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeMemberPointer()
1736 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes()); in getVBPTypeIndex()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp437 template <> void LeafRecordImpl<PointerRecord>::map(IO &IO) { in map()