Home
last modified time | relevance | path

Searched refs:UME (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp649 auto *Handler = UME.Handler.get<MachineBasicBlock *>(); in emitSEHActionsForRange()
650 if (UME.IsFinally) { in emitSEHActionsForRange()
656 FilterOrFinally = UME.Filter ? create32bitRef(UME.Filter) in emitSEHActionsForRange()
665 AddComment(UME.IsFinally ? "FinallyFunclet" : UME.Filter ? "FilterFunction" in emitSEHActionsForRange()
668 AddComment(UME.IsFinally ? "Null" : "ExceptionHandler"); in emitSEHActionsForRange()
672 State = UME.ToState; in emitSEHActionsForRange()
785 OS.emitInt32(UME.ToState); in emitCXXFrameHandler3Table()
1076 auto *Handler = UME.Handler.get<MachineBasicBlock *>(); in emitExceptHandlerTable()
1081 int ToState = UME.ToState == -1 ? BaseState : UME.ToState; in emitExceptHandlerTable()
1084 AddComment(UME.IsFinally ? "Null" : "FilterFunction"); in emitExceptHandlerTable()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp315 for (CxxUnwindMapEntry &UME : EHInfo.CxxUnwindMap) in set()
316 if (UME.Cleanup) in set()
317 UME.Cleanup = MBBMap[UME.Cleanup.get<const BasicBlock *>()]; in set()
318 for (SEHUnwindMapEntry &UME : EHInfo.SEHUnwindMap) { in set()
319 const auto *BB = UME.Handler.get<const BasicBlock *>(); in set()
320 UME.Handler = MBBMap[BB]; in set()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemplate-id-printing.cpp73 namespace UME { namespace
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp134 CxxUnwindMapEntry UME; in addUnwindMapEntry() local
135 UME.ToState = ToState; in addUnwindMapEntry()
136 UME.Cleanup = BB; in addUnwindMapEntry()
137 FuncInfo.CxxUnwindMap.push_back(UME); in addUnwindMapEntry()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCodeComplete.cpp6062 } else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { in ProduceCallSignatureHelp() local
6064 if (UME->hasExplicitTemplateArgs()) { in ProduceCallSignatureHelp()
6065 UME->copyTemplateArgumentsInto(TemplateArgsBuffer); in ProduceCallSignatureHelp()
6071 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); in ProduceCallSignatureHelp()
6075 Decls.append(UME->decls_begin(), UME->decls_end()); in ProduceCallSignatureHelp()
6076 const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); in ProduceCallSignatureHelp()
H A DSemaExpr.cpp6495 const UnresolvedMemberExpr *const UME, Sema &S) { in enclosingClassIsRelatedToClassInWhichMembersWereFound() argument
6524 UME->getNamingClass()->getCanonicalDecl(); in enclosingClassIsRelatedToClassInWhichMembersWereFound()
6537 Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) { in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs() argument
6539 if (!UME) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6547 !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured()) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6553 if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S)) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
H A DSemaOverload.cpp12072 if (UnresolvedMemberExpr *UME = dyn_cast<UnresolvedMemberExpr>(OvlExpr)) in AddressOfFunctionResolver() local
12073 if (!UME->isImplicitAccess() && in AddressOfFunctionResolver()
12074 !S.ResolveSingleFunctionTemplateSpecialization(UME)) in AddressOfFunctionResolver()