Home
last modified time | relevance | path

Searched refs:CreateInvoke (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/Dialect/LLVMIR/
H A DLLVMToLLVMIRTranslation.cpp366 result = builder.CreateInvoke( in convertOperationImpl()
375 result = builder.CreateInvoke( in convertOperationImpl()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DIRBuilder.h1028 InvokeInst *CreateInvoke(FunctionType *Ty, Value *Callee,
1039 InvokeInst *CreateInvoke(FunctionType *Ty, Value *Callee,
1050 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1054 return CreateInvoke(Callee.getFunctionType(), Callee.getCallee(),
1058 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1062 return CreateInvoke(Callee.getFunctionType(), Callee.getCallee(),
/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DSparsePropagation.cpp524 Builder.CreateInvoke(G, Exit, Pad); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86WinEHState.cpp494 NewCall = Builder.CreateInvoke( in rewriteSetJmpCall()
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1171 builder.CreateInvoke(&toInvoke, in createCatchWrappedInvokeFunction()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCleanup.cpp1339 CGF.Builder.CreateInvoke(SehCppScope, Cont, InvokeDest, None, BundleList); in EmitSehScope()
H A DCGCall.cpp4514 Builder.CreateInvoke(callee, in EmitNoreturnRuntimeCallOrInvoke()
4560 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, BundleList, in EmitCallOrInvoke()
5344 CI = Builder.CreateInvoke(IRFuncTy, CalleePtr, Cont, InvokeDest, IRCallArgs, in EmitCall()
/llvm-project-15.0.7/llvm/lib/IR/
H A DIRBuilder.cpp786 InvokeInst *II = Builder->CreateInvoke( in CreateGCStatepointInvokeCommon()
H A DCore.cpp3175 unwrap(B)->CreateInvoke(FnT, unwrap(Fn), unwrap(Then), unwrap(Catch), in LLVMBuildInvoke()
3183 return wrap(unwrap(B)->CreateInvoke( in LLVMBuildInvoke2()
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1416 NewCS = IRB.CreateInvoke(NewFT, IRB.CreateBitCast(JT, NewFTPtr), in applyICallBranchFunnel()
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2102 See the method [llvm::LLVMBuilder::CreateInvoke]. *)
2109 See the method [llvm::LLVMBuilder::CreateInvoke]. *)
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp3429 NewCall = Builder.CreateInvoke(Callee, II->getNormalDest(), in transformConstExprCastCall()
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir.go1374 func (b Builder) CreateInvoke(fn Value, args []Value, then, catch BasicBlock, name string) (rv Valu… func