/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeTableBuilder.cpp | 72 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()
|
D | TypeRecord.cpp | 84 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()
|
D | TypeDumper.cpp | 400 Error CVTypeDumper::visitPointer(PointerRecord &Ptr) { in visitPointer()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 265 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/ |
D | TypeTableBuilder.h | 44 TypeIndex writePointer(const PointerRecord &Record);
|
D | TypeRecord.h | 289 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/ |
D | TypeHashingTest.cpp | 20 PointerRecord PR(TypeRecordKind::Pointer); in createPointerRecord()
|
D | TypeIndexDiscoveryTest.cpp | 232 static PointerRecord Pointer(TypeIndex(44), PointerKind::Near32, 234 static PointerRecord MemberPointer(
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeIndexDiscovery.cpp | 30 return static_cast<PointerMode>((Attrs >> PointerRecord::PointerModeShift) & in getPointerMode() 31 PointerRecord::PointerModeMask); in getPointerMode()
|
D | RecordName.cpp | 161 Error TypeNameComputer::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
|
D | TypeRecordMapping.cpp | 189 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, PointerRecord &Record) { in visitKnownRecord()
|
D | TypeDumpVisitor.cpp | 362 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | MinimalTypeDumper.cpp | 176 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/ |
D | CodeViewDebug.cpp | 1555 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/ |
D | CodeViewDebug.cpp | 1175 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/ |
D | CodeViewYAMLTypes.cpp | 437 template <> void LeafRecordImpl<PointerRecord>::map(IO &IO) { in map()
|