Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypePointer.h30 codeview::TypeIndex TI, codeview::PointerRecord PR);
55 Optional<codeview::PointerRecord> Record;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h270 class PointerRecord : public TypeRecord {
287 PointerRecord() = default;
288 explicit PointerRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in PointerRecord() function
290 PointerRecord(TypeIndex ReferentType, uint32_t Attrs) in PointerRecord() function
294 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
299 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h33 class PointerRecord; variable
175 const llvm::codeview::PointerRecord &pr,
H A DPdbAstBuilder.h97 CreatePointerType(const llvm::codeview::PointerRecord &pointer);
H A DDWARFLocationExpression.cpp533 PointerRecord pr; in GetIntegralTypeInfo()
534 llvm::cantFail(TypeDeserializer::deserializeAs<PointerRecord>(cvt, pr)); in GetIntegralTypeInfo()
H A DPdbAstBuilder.cpp717 clang::QualType PdbAstBuilder::CreatePointerType(const PointerRecord &pointer) { in CreatePointerType()
912 PointerRecord pointer; in CreateType()
914 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DSymbolFileNativePDB.cpp461 const llvm::codeview::PointerRecord &pr, in CreatePointerType()
622 PointerRecord pointer; in CreateType()
624 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DPdbUtil.cpp737 return GetSizeOfTypeInternal<PointerRecord>(cvt); in GetSizeOfType()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp29 codeview::PointerRecord Record) in NativeTypePointer()
H A DSymbolCache.cpp201 Id = createSymbolForType<NativeTypePointer, PointerRecord>(Index, in findSymbolByTypeIndex()
/freebsd-12.1/contrib/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.cpp161 Error TypeNameComputer::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
H A DTypeRecordMapping.cpp189 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, PointerRecord &Record) { in visitKnownRecord()
H A DTypeDumpVisitor.cpp362 Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { in visitKnownRecord()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp200 static std::string formatPointerAttrs(const PointerRecord &Record) { in formatPointerAttrs()
432 PointerRecord &Ptr) { in visitKnownRecord()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1671 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in lowerTypePointer()
1723 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeMemberPointer()
2384 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes()); in getVBPTypeIndex()
2439 PointerRecord PR(getTypeIndex(Ty), in getTypeIndexForReferenceTo()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp437 template <> void LeafRecordImpl<PointerRecord>::map(IO &IO) { in map()