Home
last modified time | relevance | path

Searched refs:TiRefKind (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp267 Refs.push_back({TiRefKind::TypeRef, 0, 1}); in handlePointer()
271 Refs.push_back({TiRefKind::TypeRef, 8, 1}); in handlePointer()
283 Refs.push_back({TiRefKind::TypeRef, 4, 1}); in discoverTypeIndices()
286 Refs.push_back({TiRefKind::TypeRef, 0, 2}); in discoverTypeIndices()
302 Refs.push_back({TiRefKind::TypeRef, 0, 1}); in discoverTypeIndices()
306 Refs.push_back({TiRefKind::TypeRef, 0, 1}); in discoverTypeIndices()
309 Refs.push_back({TiRefKind::TypeRef, 0, 1}); in discoverTypeIndices()
312 Refs.push_back({TiRefKind::TypeRef, 0, 1}); in discoverTypeIndices()
313 Refs.push_back({TiRefKind::TypeRef, 8, 1}); in discoverTypeIndices()
316 Refs.push_back({TiRefKind::TypeRef, 0, 3}); in discoverTypeIndices()
[all …]
H A DTypeHashing.cpp48 auto Prev = (Ref.Kind == TiRefKind::IndexRef) ? PreviousIds : PreviousTypes; in hashType()
H A DTypeStreamMerger.cpp412 bool Success = (Ref.Kind == TiRefKind::IndexRef) ? remapItemIndex(TI) in remapIndices()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp90 void TypeReferenceTracker::addOneTypeRef(TiRefKind RefKind, TypeIndex RefTI) { in addOneTypeRef()
93 (Ids && RefKind == TiRefKind::IndexRef) ? IdReferenced : TypeReferenced; in addOneTypeRef()
129 TiRefKind RefKind; in markReferencedTypes()
132 Optional<CVType> Rec = (Ids && RefKind == TiRefKind::IndexRef) in markReferencedTypes()
156 addOneTypeRef(TiRefKind::TypeRef, in markReferencedTypes()
H A DTypeReferenceTracker.h51 void addOneTypeRef(codeview::TiRefKind RefKind, codeview::TypeIndex RefTI);
59 SmallVector<std::pair<codeview::TiRefKind, codeview::TypeIndex>, 10>
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndexDiscovery.h19 enum class TiRefKind { TypeRef, IndexRef }; enum
21 TiRefKind Kind;
/llvm-project-15.0.7/lld/COFF/
H A DDebugTypes.h70 bool remapTypeIndex(TypeIndex &ti, llvm::codeview::TiRefKind refKind) const;
H A DDebugTypes.cpp208 bool TpiSource::remapTypeIndex(TypeIndex &ti, TiRefKind refKind) const { in remapTypeIndex()
214 (refKind == TiRefKind::IndexRef) ? ipiMap : tpiMap; in remapTypeIndex()
239 (ref.Kind == TiRefKind::IndexRef ? "item" : "type") + in remapRecord()
633 success &= remapTypeIndex(funcId, TiRefKind::IndexRef); in mergeTypeRecord()
H A DPDB.cpp872 if (!source->remapTypeIndex(inlinee, TiRefKind::IndexRef)) { in commit()