Home
last modified time | relevance | path

Searched refs:RefTI (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp91 void TypeReferenceTracker::addOneTypeRef(TiRefKind RefKind, TypeIndex RefTI) { in addOneTypeRef() argument
95 if (RefTI.isSimple() || TypeOrIdReferenced.test(RefTI.toArrayIndex())) in addOneTypeRef()
99 TypeOrIdReferenced.set(RefTI.toArrayIndex()); in addOneTypeRef()
100 RefWorklist.push_back({RefKind, RefTI}); in addOneTypeRef()
123 for (TypeIndex RefTI : TIs) in addReferencedTypes() local
124 addOneTypeRef(Ref.Kind, RefTI); in addReferencedTypes()
131 TypeIndex RefTI; in markReferencedTypes() local
132 std::tie(RefKind, RefTI) = RefWorklist.pop_back_val(); in markReferencedTypes()
134 ? Ids->tryGetType(RefTI) in markReferencedTypes()
135 : Types.tryGetType(RefTI); in markReferencedTypes()
[all …]
H A DTypeReferenceTracker.h50 void addOneTypeRef(codeview::TiRefKind RefKind, codeview::TypeIndex RefTI);