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.cpp640 const SEHUnwindMapEntry &UME = FuncInfo.SEHUnwindMap[State]; in emitSEHActionsForRange() local
643 auto *Handler = cast<MachineBasicBlock *>(UME.Handler); in emitSEHActionsForRange()
644 if (UME.IsFinally) { in emitSEHActionsForRange()
650 FilterOrFinally = UME.Filter ? create32bitRef(UME.Filter) in emitSEHActionsForRange()
659 AddComment(UME.IsFinally ? "FinallyFunclet" : UME.Filter ? "FilterFunction" in emitSEHActionsForRange()
662 AddComment(UME.IsFinally ? "Null" : "ExceptionHandler"); in emitSEHActionsForRange()
665 assert(UME.ToState < State && "states should decrease"); in emitSEHActionsForRange()
666 State = UME.ToState; in emitSEHActionsForRange()
779 for (const CxxUnwindMapEntry &UME : FuncInfo.CxxUnwindMap) { in emitCXXFrameHandler3Table() local
781 Asm, dyn_cast_if_present<MachineBasicBlock *>(UME.Cleanup)); in emitCXXFrameHandler3Table()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp323 for (CxxUnwindMapEntry &UME : EHInfo.CxxUnwindMap) in set()
324 if (UME.Cleanup) in set()
325 UME.Cleanup = getMBB(cast<const BasicBlock *>(UME.Cleanup)); in set()
326 for (SEHUnwindMapEntry &UME : EHInfo.SEHUnwindMap) in set()
327 UME.Handler = getMBB(cast<const BasicBlock *>(UME.Handler)); 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.cpp6349 } else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { in ProduceCallSignatureHelp() local
6351 if (UME->hasExplicitTemplateArgs()) { in ProduceCallSignatureHelp()
6352 UME->copyTemplateArgumentsInto(TemplateArgsBuffer); in ProduceCallSignatureHelp()
6358 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); in ProduceCallSignatureHelp()
6362 Decls.append(UME->decls_begin(), UME->decls_end()); in ProduceCallSignatureHelp()
6363 const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); in ProduceCallSignatureHelp()
H A DSemaExpr.cpp6399 const UnresolvedMemberExpr *const UME, Sema &S) { in enclosingClassIsRelatedToClassInWhichMembersWereFound() argument
6428 UME->getNamingClass()->getCanonicalDecl(); in enclosingClassIsRelatedToClassInWhichMembersWereFound()
6441 Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) { in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs() argument
6443 if (!UME) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6451 !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured()) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
6457 if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S)) in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
H A DSemaOverload.cpp13502 if (UnresolvedMemberExpr *UME = dyn_cast<UnresolvedMemberExpr>(OvlExpr)) in AddressOfFunctionResolver() local
13503 if (!UME->isImplicitAccess() && in AddressOfFunctionResolver()
13504 !S.ResolveSingleFunctionTemplateSpecialization(UME)) in AddressOfFunctionResolver()