Searched refs:getTag (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.h49 dwarf::Tag getTag() const { function in class:llvm::DWARFDebugInfoEntry
50 return AbbrevDecl ? AbbrevDecl->getTag() : dwarf::DW_TAG_null;
H A DDWARFAbbreviationDeclaration.h90 dwarf::Tag getTag() const { return Tag; } function in class:llvm::DWARFAbbreviationDeclaration
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DChrootChecker.cpp50 static void *getTag() { function in class:__anon3315::ChrootChecker
84 state = Mgr.addGDM(state, ChrootChecker::getTag(), (void*) ROOT_CHANGED);
93 const void *k = state->FindGDM(ChrootChecker::getTag());
106 state = Mgr.addGDM(state, ChrootChecker::getTag(),
122 void *const* k = C.getState()->FindGDM(ChrootChecker::getTag());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerCompileUnit.cpp17 if (U.getOrigUnit().getDIEAtIndex(Idx).getTag() == dwarf::DW_TAG_subprogram)
45 if (DIE.getTag() != dwarf::DW_TAG_variable &&
46 DIE.getTag() != dwarf::DW_TAG_constant)
110 if (Die.getTag() != dwarf::DW_TAG_compile_unit)
H A DDWARFLinkerDeclContext.cpp46 unsigned Tag = DIE.getTag();
62 if ((Context.getTag() == dwarf::DW_TAG_namespace ||
63 Context.getTag() == dwarf::DW_TAG_compile_unit) &&
201 Context.getTag() != dwarf::DW_TAG_structure_type &&
202 Context.getTag() != dwarf::DW_TAG_class_type) ||
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp92 assert(Cur->getTag() == dwarf::DW_TAG_compile_unit ||
93 Cur->getTag() == dwarf::DW_TAG_type_unit);
106 addULEB128(Die.getTag());
334 hashAttributes(Attrs, Die.getTag());
343 addULEB128(Die.getTag());
355 addULEB128(Die.getTag());
364 if (isType(C.getTag()) || C.getTag() == dwarf::DW_TAG_subprogram) {
H A DDebugHandlerBase.cpp149 unsigned Tag = DDTy->getTag();
164 if (BaseType->getTag() == dwarf::DW_TAG_reference_type ||
165 BaseType->getTag() == dwarf::DW_TAG_rvalue_reference_type)
H A DDwarfUnit.cpp466 if (CTy->getTag() == dwarf::DW_TAG_enumeration_type)
475 dwarf::Tag T = (dwarf::Tag)Ty->getTag();
501 (Ty->getTag() == dwarf::DW_TAG_unspecified_type &&
507 Ty->getTag() == dwarf::DW_TAG_unspecified_type;
641 DIE &TyDIE = createAndAddDIE(Ty->getTag(), *ContextDIE, Ty);
652 DIE &TyDIE = createAndAddDIE(Ty->getTag(), ContextDIE, Ty);
687 if (Ty->getTag() == dwarf::DW_TAG_restrict_type && DD->getDwarfVersion() <= 2)
691 if (Ty->getTag() == dwarf::DW_TAG_atomic_type && DD->getDwarfVersion() < 5)
773 if (BTy->getTag() == dwarf::DW_TAG_unspecified_type)
792 uint16_t Tag = Buffer.getTag();
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h104 static const void *getTag();
117 static const void *getTag();
H A DPostOrderCFGView.h109 static const void *getTag();
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp175 bool IsParam = Die.getTag() == dwarf::DW_TAG_formal_parameter;
176 bool IsLocalVar = Die.getTag() == dwarf::DW_TAG_variable;
178 if (Die.getTag() == dwarf::DW_TAG_call_site ||
179 Die.getTag() == dwarf::DW_TAG_GNU_call_site) {
184 if (Die.getTag() == dwarf::DW_TAG_call_site_parameter ||
185 Die.getTag() == dwarf::DW_TAG_GNU_call_site_parameter) {
190 if (!IsParam && !IsLocalVar && Die.getTag() != dwarf::DW_TAG_member) {
223 if (Die.getTag() == dwarf::DW_TAG_member) {
294 } else if (Die.getTag() == dwarf::DW_TAG_member) {
328 const dwarf::Tag Tag = Die.getTag();
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp167 if (Die.getTag() == DW_TAG_null)
185 if (!dwarf::isUnitType(Die.getTag())) {
187 << dwarf::TagString(Die.getTag()) << ".\n";
192 if (!DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) {
194 << ") and root DIE (" << dwarf::TagString(Die.getTag())
202 if (Die.getTag() == dwarf::DW_TAG_skeleton_unit && Die.hasChildren()) {
214 if (Die.getTag() != DW_TAG_call_site && Die.getTag() != DW_TAG_GNU_call_site)
219 if (Curr.getTag() == DW_TAG_inlined_subroutine) {
401 if (!IsObjectFile || IsMachOObject || Die.getTag() !
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp116 auto Tag = dwarf::TagString(T->getTag());
120 O << "unknown-tag(" << T->getTag() << ")";
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DPostOrderCFGView.cpp39 const void *PostOrderCFGView::getTag() { static int x; return &x; } function in class:PostOrderCFGView
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h183 static const char *getTag();
228 static const char *getTag();
300 static void *getTag() { function in class:clang::ento::final
306 ID.AddPointer(getTag());
363 static const char *getTag();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h84 /// getTag - Return an opaque tag representing the current state of the union.
85 unsigned getTag() const { return Tag; } function in class:llvm::LiveIntervalUnion
87 /// changedSince - Return true if the union change since getTag returned tag.
127 Tag = NewLiveUnion.getTag();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h200 (Tag ? Tag : Location.getTag()));
213 return addTransition(State, (Tag ? Tag : Location.getTag()));
229 return addTransition(State, Pred, (Tag ? Tag : Location.getTag()));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp203 if (!SkipDIDerivedTag(DTy->getTag()))
212 if (!SkipDIDerivedTag(DTy->getTag()))
224 if (Element->getTag() == dwarf::DW_TAG_subrange_type) {
374 if (PtrTy->getTag() != dwarf::DW_TAG_pointer_type)
384 uint32_t PTyTag = PTy->getTag();
389 uint32_t CTyTag = CTy->getTag();
548 uint32_t Tag = CTy->getTag();
604 if (!CompTy || CompTy->getTag() != dwarf::DW_TAG_enumeration_type)
752 assert(CTy->getTag() == dwarf::DW_TAG_array_type);
761 assert(DTy->getTag()
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp884 AssertDI(N.getTag(), "invalid tag", &N);
893 AssertDI(N.getTag() == dwarf::DW_TAG_subrange_type, "invalid tag", &N);
903 AssertDI(N.getTag() == dwarf::DW_TAG_enumerator, "invalid tag", &N);
907 AssertDI(N.getTag() == dwarf::DW_TAG_base_type ||
908 N.getTag() == dwarf::DW_TAG_unspecified_type,
918 AssertDI(N.getTag() == dwarf::DW_TAG_typedef ||
919 N.getTag() == dwarf::DW_TAG_pointer_type ||
920 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
921 N.getTag() == dwarf::DW_TAG_reference_type ||
922 N.getTag()
[all...]
H A DLLVMContextImpl.h312 : MDNodeOpsKey(N, 1), Tag(N->getTag()), Header(N->getRawHeader()) {}
315 return Tag == RHS->getTag() && Header == RHS->getRawHeader() &&
389 : Tag(N->getTag()), Name(N->getRawName()), SizeInBits(N->getSizeInBits()),
393 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
429 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
437 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
473 return isODRMember(LHS->getTag(), LHS->getRawScope(), LHS->getRawName(),
490 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
526 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
537 return Tag == RHS->getTag()
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/Common/
H A DDWARF.cpp38 if (die.getTag() != dwarf::DW_TAG_variable)
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTUnresolvedSet.h36 bool isLazy() const { return getTag(); }
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp371 void *getTag() const { function in class:__anon3446::final
680 R.markInvalid(getTag(), nullptr);
819 BR.markInvalid(getTag(), MacroName.c_str());
840 void* getTag() const { function in class:__anon3447::final
846 ID.AddPointer(getTag());
906 static void *getTag() { function in class:__anon3448::ReturnVisitor
912 ID.AddPointer(ReturnVisitor::getTag());
1195 BR.markInvalid(ReturnVisitor::getTag(), CalleeSFC);
1536 const char *TrackConstraintBRVisitor::getTag() { function in class:TrackConstraintBRVisitor
1591 X->setTag(getTag());
1618 const char *SuppressInlineDefensiveChecksVisitor::getTag() { function in class:SuppressInlineDefensiveChecksVisitor
2138 const char *ConditionBRVisitor::getTag() { return "ConditionBRVisitor"; } function in class:ConditionBRVisitor
[all...]
H A DExprEngineObjC.cpp201 bool HasTag = Pred->getLocation().getTag();
222 bool HasTag = Pred->getLocation().getTag();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerSumType.h119 TagT getTag() const { function in class:llvm::PointerSumType
123 template <TagT N> bool is() const { return N == getTag(); }

Completed in 405 milliseconds

123