Home
last modified time | relevance | path

Searched refs:Invoke (Results 1 – 25 of 151) sorted by relevance

1234567

/openbsd/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceInvokes.cpp22 InvokeInst *Invoke = dyn_cast<InvokeInst>(BB.getTerminator()); in reduceInvokesInFunction() local
23 if (Invoke && !O.shouldKeep()) in reduceInvokesInFunction()
24 changeToCall(Invoke); in reduceInvokesInFunction()
H A DReduceBasicBlocks.cpp49 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(Term)) { in replaceBranchTerminator() local
50 LandingPadInst *LP = Invoke->getLandingPadInst(); in replaceBranchTerminator()
53 if (none_of(LP->getParent()->users(), [Invoke](User *U) { in replaceBranchTerminator()
54 return U != Invoke && isa<InvokeInst>(U); in replaceBranchTerminator()
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCallPromotionUtils.cpp50 static void fixupPHINodeForNormalDest(InvokeInst *Invoke, BasicBlock *OrigBlock, in fixupPHINodeForNormalDest() argument
52 for (PHINode &Phi : Invoke->getNormalDest()->phis()) { in fixupPHINodeForNormalDest()
81 static void fixupPHINodeForUnwindDest(InvokeInst *Invoke, BasicBlock *OrigBlock, in fixupPHINodeForUnwindDest() argument
84 for (PHINode &Phi : Invoke->getUnwindDest()->phis()) { in fixupPHINodeForUnwindDest()
171 if (auto *Invoke = dyn_cast<InvokeInst>(&CB)) in createRetBitCast() local
173 &SplitEdge(Invoke->getParent(), Invoke->getNormalDest())->front(); in createRetBitCast()
H A DInlineFunction.cpp317 if (auto *Invoke = dyn_cast<InvokeInst>(U)) { in getUnwindDestTokenHelper() local
318 ChildUnwindDestToken = Invoke->getUnwindDest()->getFirstNonPHI(); in getUnwindDestTokenHelper()
610 LandingPadInliningInfo Invoke(II); in HandleInlinedLandingPad() local
621 LandingPadInst *OuterLPad = Invoke.getLandingPadInst(); in HandleInlinedLandingPad()
635 &*BB, Invoke.getOuterResumeDest())) in HandleInlinedLandingPad()
638 Invoke.addIncomingPHIValuesFor(NewBB); in HandleInlinedLandingPad()
642 Invoke.forwardResume(RI, InlinedLPads); in HandleInlinedLandingPad()
/openbsd/usr.bin/mail/misc/
H A Dmail.tildehelp6 ~e Invoke text editor on partial message.
17 ~v Invoke display editor on message.
/openbsd/regress/usr.bin/make/
H A Dmk23 # Invoke with make -r
/openbsd/gnu/llvm/libcxx/benchmarks/
H A Dfunction.bench.cpp184 struct Invoke { struct
228 makeCartesianProductBenchmark<Invoke, AllFunctionTypes>(); in main()
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp318 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges()
319 BasicBlock *UnwindBlock = Invoke->getUnwindDest(); in lowerAcrossUnwindEdges()
340 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges()
341 BasicBlock *UnwindBlock = Invoke->getUnwindDest(); in lowerAcrossUnwindEdges()
H A DStackProtector.cpp204 case Instruction::Invoke: in HasAddressTaken()
H A DWinEHPrepare.cpp632 if (auto *Invoke = dyn_cast<InvokeInst>(U)) { in calculateClrEHStateNumbers() local
633 UserUnwindDest = Invoke->getUnwindDest(); in calculateClrEHStateNumbers()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaLambda.cpp1528 CXXMethodDecl *Invoke = CXXMethodDecl::Create( in addFunctionPointerConversion() local
1535 InvokerParams[I]->setOwningFunction(Invoke); in addFunctionPointerConversion()
1536 Invoke->setParams(InvokerParams); in addFunctionPointerConversion()
1537 Invoke->setAccess(AS_private); in addFunctionPointerConversion()
1538 Invoke->setImplicit(true); in addFunctionPointerConversion()
1545 TemplateCallOperator->getTemplateParameters(), Invoke); in addFunctionPointerConversion()
1548 Invoke->setDescribedFunctionTemplate(StaticInvokerTemplate); in addFunctionPointerConversion()
1551 Class->addDecl(Invoke); in addFunctionPointerConversion()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DInstruction.cpp404 case Invoke: return "invoke"; in getOpcodeName()
638 case Instruction::Invoke: in mayReadFromMemory()
658 case Instruction::Invoke: in mayWriteToMemory()
718 case Instruction::Invoke: in isVolatile()
H A DCore.cpp2891 LLVMBasicBlockRef LLVMGetNormalDest(LLVMValueRef Invoke) { in LLVMGetNormalDest() argument
2892 return wrap(unwrap<InvokeInst>(Invoke)->getNormalDest()); in LLVMGetNormalDest()
2895 LLVMBasicBlockRef LLVMGetUnwindDest(LLVMValueRef Invoke) { in LLVMGetUnwindDest() argument
2896 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMGetUnwindDest()
2898 } else if (CatchSwitchInst *CSI = dyn_cast<CatchSwitchInst>(unwrap(Invoke))) { in LLVMGetUnwindDest()
2901 return wrap(unwrap<InvokeInst>(Invoke)->getUnwindDest()); in LLVMGetUnwindDest()
2904 void LLVMSetNormalDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) { in LLVMSetNormalDest() argument
2905 unwrap<InvokeInst>(Invoke)->setNormalDest(unwrap(B)); in LLVMSetNormalDest()
2908 void LLVMSetUnwindDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) { in LLVMSetUnwindDest() argument
2909 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMSetUnwindDest()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DInstruction.h244 case Instruction::Invoke:
654 case Instruction::Invoke:
H A DInstruction.def131 HANDLE_TERM_INST ( 5, Invoke , InvokeInst)
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DTFLiteUtils.cpp64 Interpreter->Invoke(); in evaluate()
H A DCaptureTracking.cpp303 case Instruction::Invoke: { in DetermineUseCaptureKind()
/openbsd/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm449 // Invoke xcrun with the developer dir specified in the environment.
456 // Invoke xcrun with the shlib dir.
473 // Invoke xcrun without a developer dir as a last resort.
/openbsd/gnu/usr.bin/binutils-2.17/gprof/
H A DChangeLog-200572 * configure.in: Invoke AM_BINUTILS_WARNINGS.
/openbsd/gnu/llvm/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp177 case Instruction::Invoke: in ComputeInstructionState()
H A DFunctionAttrs.cpp617 case Instruction::Invoke: { in determinePointerAccessAttrs()
1056 case Instruction::Invoke: { in isFunctionMallocLike()
1163 case Instruction::Invoke: { in isReturnNonNull()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A Darm_neon_incl.td55 // call - Invoke another intrinsic. The input types are type checked and
63 // call_mangled - Invoke another intrinsic matching the mangled name variation
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp2210 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(Inst)) { in relocationViaAlloca() local
2213 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca()
2605 auto *Invoke = cast<InvokeInst>(Call); in rematerializeLiveValues() local
2608 &*Invoke->getNormalDest()->getFirstInsertionPt(); in rematerializeLiveValues()
2610 &*Invoke->getUnwindDest()->getFirstInsertionPt(); in rematerializeLiveValues()
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dunwind.inc164 /* Stop didn't want to do anything. Invoke the personality
/openbsd/gnu/llvm/llvm/docs/
H A DCompileCudaWithLLVM.rst250 * Invoke ``fatbin`` to combine all ``P_arch`` and ``S_arch`` files into a
270 * Invoke ``ptxas`` to generate a SASS file, ``S_arch``. Note that, unlike
273 * Invoke ``fatbin`` to combine all ``P_arch`` and ``S_arch`` files into a

1234567