Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp641 auto *Handler = cast<MachineBasicBlock *>(UME.Handler); in emitSEHActionsForRange()
642 if (UME.IsFinally) { in emitSEHActionsForRange()
648 FilterOrFinally = UME.Filter ? create32bitRef(UME.Filter) in emitSEHActionsForRange()
657 AddComment(UME.IsFinally ? "FinallyFunclet" : UME.Filter ? "FilterFunction" in emitSEHActionsForRange()
660 AddComment(UME.IsFinally ? "Null" : "ExceptionHandler"); in emitSEHActionsForRange()
664 State = UME.ToState; in emitSEHActionsForRange()
781 OS.emitInt32(UME.ToState); in emitCXXFrameHandler3Table()
1072 auto *Handler = cast<MachineBasicBlock *>(UME.Handler); in emitExceptHandlerTable()
1077 int ToState = UME.ToState == -1 ? BaseState : UME.ToState; in emitExceptHandlerTable()
1080 AddComment(UME.IsFinally ? "Null" : "FilterFunction"); in emitExceptHandlerTable()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp306 for (CxxUnwindMapEntry &UME : EHInfo.CxxUnwindMap) in set()
307 if (UME.Cleanup) in set()
308 UME.Cleanup = MBBMap[cast<const BasicBlock *>(UME.Cleanup)]; in set()
309 for (SEHUnwindMapEntry &UME : EHInfo.SEHUnwindMap) { in set()
310 const auto *BB = cast<const BasicBlock *>(UME.Handler); in set()
311 UME.Handler = MBBMap[BB]; in set()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp147 CxxUnwindMapEntry UME; in addUnwindMapEntry() local
148 UME.ToState = ToState; in addUnwindMapEntry()
149 UME.Cleanup = BB; in addUnwindMapEntry()
150 FuncInfo.CxxUnwindMap.push_back(UME); in addUnwindMapEntry()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp6203 } else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { in ProduceCallSignatureHelp() local
6205 if (UME->hasExplicitTemplateArgs()) { in ProduceCallSignatureHelp()
6206 UME->copyTemplateArgumentsInto(TemplateArgsBuffer); in ProduceCallSignatureHelp()
6212 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); in ProduceCallSignatureHelp()
6216 Decls.append(UME->decls_begin(), UME->decls_end()); in ProduceCallSignatureHelp()
6217 const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); in ProduceCallSignatureHelp()
H A DSemaExpr.cpp7039 const UnresolvedMemberExpr *const UME, Sema &S) { in enclosingClassIsRelatedToClassInWhichMembersWereFound() argument
7068 UME->getNamingClass()->getCanonicalDecl(); in enclosingClassIsRelatedToClassInWhichMembersWereFound()
7081 Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) { in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs() argument
7083 if (!UME) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
7091 !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured()) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
7097 if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S)) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
H A DSemaOverload.cpp12684 if (UnresolvedMemberExpr *UME = dyn_cast<UnresolvedMemberExpr>(OvlExpr)) in AddressOfFunctionResolver() local
12685 if (!UME->isImplicitAccess() && in AddressOfFunctionResolver()
12686 !S.ResolveSingleFunctionTemplateSpecialization(UME)) in AddressOfFunctionResolver()