Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypePointer.h29 codeview::TypeIndex TI, codeview::PointerRecord PR);
54 std::optional<codeview::PointerRecord> Record;
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h264 class PointerRecord : public TypeRecord {
281 PointerRecord() = default;
282 explicit PointerRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in PointerRecord() function
284 PointerRecord(TypeIndex ReferentType, uint32_t Attrs) in PointerRecord() function
288 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
293 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() function
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp92 PointerRecord pr; in GetIntegralTypeInfo()
93 llvm::cantFail(TypeDeserializer::deserializeAs<PointerRecord>(cvt, pr)); in GetIntegralTypeInfo()
H A DSymbolFileNativePDB.h34 class PointerRecord; variable
204 const llvm::codeview::PointerRecord &pr,
H A DPdbAstBuilder.h98 CreatePointerType(const llvm::codeview::PointerRecord &pointer);
H A DPdbAstBuilder.cpp516 clang::QualType PdbAstBuilder::CreatePointerType(const PointerRecord &pointer) { in CreatePointerType()
769 PointerRecord pointer; in CreateType()
771 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DSymbolFileNativePDB.cpp563 const llvm::codeview::PointerRecord &pr, in CreatePointerType()
727 PointerRecord pointer; in CreateType()
729 TypeDeserializer::deserializeAs<PointerRecord>(cvt, pointer)); in CreateType()
H A DPdbUtil.cpp1098 return GetSizeOfTypeInternal<PointerRecord>(cvt); in GetSizeOfType()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp29 codeview::PointerRecord Record) in NativeTypePointer()
H A DSymbolCache.cpp217 Id = createSymbolForType<NativeTypePointer, PointerRecord>(Index, in findSymbolByTypeIndex()
/openbsd-src/gnu/llvm/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.cpp166 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.cpp380 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, PointerRecord &Record) { in visitKnownRecord()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp203 static std::string formatPointerAttrs(const PointerRecord &Record) { in formatPointerAttrs()
441 PointerRecord &Ptr) { in visitKnownRecord()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1906 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in lowerTypePointer()
1959 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeMemberPointer()
2642 PointerRecord PR(ModifiedTI, PK, PM, PO, getPointerSizeInBytes()); in getVBPTypeIndex()
2693 PointerRecord PR(getTypeIndex(Ty), in getTypeIndexForReferenceTo()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp441 template <> void LeafRecordImpl<PointerRecord>::map(IO &IO) { in map()