Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp638 const SEHUnwindMapEntry &UME = FuncInfo.SEHUnwindMap[State]; in emitSEHActionsForRange() local
641 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()
663 assert(UME.ToState < State && "states should decrease"); in emitSEHActionsForRange()
664 State = UME.ToState; in emitSEHActionsForRange()
777 for (const CxxUnwindMapEntry &UME : FuncInfo.CxxUnwindMap) { in emitCXXFrameHandler3Table() local
779 Asm, dyn_cast_if_present<MachineBasicBlock *>(UME.Cleanup)); in emitCXXFrameHandler3Table()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp313 for (CxxUnwindMapEntry &UME : EHInfo.CxxUnwindMap) in set()
314 if (UME.Cleanup) in set()
315 UME.Cleanup = MBBMap[cast<const BasicBlock *>(UME.Cleanup)]; in set()
316 for (SEHUnwindMapEntry &UME : EHInfo.SEHUnwindMap) { in set()
317 const auto *BB = cast<const BasicBlock *>(UME.Handler); in set()
318 UME.Handler = MBBMap[BB]; in set()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp148 CxxUnwindMapEntry UME; in addUnwindMapEntry() local
149 UME.ToState = ToState; in addUnwindMapEntry()
150 UME.Cleanup = BB; in addUnwindMapEntry()
151 FuncInfo.CxxUnwindMap.push_back(UME); in addUnwindMapEntry()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp6246 } else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { in ProduceCallSignatureHelp() local
6248 if (UME->hasExplicitTemplateArgs()) { in ProduceCallSignatureHelp()
6249 UME->copyTemplateArgumentsInto(TemplateArgsBuffer); in ProduceCallSignatureHelp()
6255 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); in ProduceCallSignatureHelp()
6259 Decls.append(UME->decls_begin(), UME->decls_end()); in ProduceCallSignatureHelp()
6260 const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); in ProduceCallSignatureHelp()
H A DSemaExpr.cpp6257 const UnresolvedMemberExpr *const UME, Sema &S) { in enclosingClassIsRelatedToClassInWhichMembersWereFound() argument
6286 UME->getNamingClass()->getCanonicalDecl(); in enclosingClassIsRelatedToClassInWhichMembersWereFound()
6299 Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) { in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs() argument
6301 if (!UME) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6309 !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured()) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6315 if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S)) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
H A DSemaOverload.cpp12781 if (UnresolvedMemberExpr *UME = dyn_cast<UnresolvedMemberExpr>(OvlExpr)) in AddressOfFunctionResolver() local
12782 if (!UME->isImplicitAccess() && in AddressOfFunctionResolver()
12783 !S.ResolveSingleFunctionTemplateSpecialization(UME)) in AddressOfFunctionResolver()