Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypePointer.h29 codeview::TypeIndex TI, codeview::PointerRecord PR);
54 Optional<codeview::PointerRecord> Record;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp91 PointerRecord pr; in GetIntegralTypeInfo()
92 llvm::cantFail(TypeDeserializer::deserializeAs<PointerRecord>(cvt, pr)); in GetIntegralTypeInfo()
H A DSymbolFileNativePDB.h31 class PointerRecord; variable
175 const llvm::codeview::PointerRecord &pr,
H A DPdbAstBuilder.h94 CreatePointerType(const llvm::codeview::PointerRecord &pointer);
H A DPdbAstBuilder.cpp716 clang::QualType PdbAstBuilder::CreatePointerType(const PointerRecord &pointer) { in CreatePointerType()
913 PointerRecord pointer; in CreateType()
915 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DSymbolFileNativePDB.cpp449 const llvm::codeview::PointerRecord &pr, in CreatePointerType()
621 PointerRecord pointer; in CreateType()
623 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DPdbUtil.cpp864 return GetSizeOfTypeInternal<PointerRecord>(cvt); in GetSizeOfType()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h263 class PointerRecord : public TypeRecord {
280 PointerRecord() = default;
281 explicit PointerRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in PointerRecord() function
283 PointerRecord(TypeIndex ReferentType, uint32_t Attrs) in PointerRecord() function
287 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
292 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp28 codeview::PointerRecord Record) in NativeTypePointer()
H A DSymbolCache.cpp212 Id = createSymbolForType<NativeTypePointer, PointerRecord>(Index, in findSymbolByTypeIndex()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp30 return static_cast<PointerMode>((Attrs >> PointerRecord::PointerModeShift) & in getPointerMode()
31 PointerRecord::PointerModeMask); in getPointerMode()
H A DRecordName.cpp162 Error TypeNameComputer::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
H A DTypeDumpVisitor.cpp361 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
H A DTypeRecordMapping.cpp360 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, PointerRecord &Record) { in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp200 static std::string formatPointerAttrs(const PointerRecord &Record) { in formatPointerAttrs()
438 PointerRecord &Ptr) { in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1780 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in lowerTypePointer()
1833 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeMemberPointer()
2515 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes()); in getVBPTypeIndex()
2566 PointerRecord PR(getTypeIndex(Ty), in getTypeIndexForReferenceTo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp441 template <> void LeafRecordImpl<PointerRecord>::map(IO &IO) { in map()