Searched refs:Invoke (Results 1 - 25 of 69) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCallPromotionUtils.cpp50 static void fixupPHINodeForNormalDest(InvokeInst *Invoke, BasicBlock *OrigBlock, argument
52 for (PHINode &Phi : Invoke->getNormalDest()->phis()) {
81 static void fixupPHINodeForUnwindDest(InvokeInst *Invoke, BasicBlock *OrigBlock, argument
84 for (PHINode &Phi : Invoke->getUnwindDest()->phis()) {
171 if (auto *Invoke = dyn_cast<InvokeInst>(&CB))
173 &SplitEdge(Invoke->getParent(), Invoke->getNormalDest())->front();
357 // Invoke instructions are terminating, so we don't need the terminator
H A DInlineFunction.cpp314 if (auto *Invoke = dyn_cast<InvokeInst>(U)) {
315 ChildUnwindDestToken = Invoke->getUnwindDest()->getFirstNonPHI();
616 LandingPadInliningInfo Invoke(II);
627 LandingPadInst *OuterLPad = Invoke.getLandingPadInst();
641 &*BB, Invoke.getOuterResumeDest()))
644 Invoke.addIncomingPHIValuesFor(NewBB);
648 Invoke.forwardResume(RI, InlinedLPads);
2475 // Since we are now done with the Call/Invoke, we can delete it.
2607 // Since we are now done with the Call/Invoke, we can delete it.
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dfunction.bench.cpp184 struct Invoke { struct in namespace:__anon1228
228 makeCartesianProductBenchmark<Invoke, AllFunctionTypes>();
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h146 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \
171 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
198 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
229 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
264 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
303 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
346 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
392 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
442 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
496 Method).Invoke(
[all...]
H A Dgmock-function-mocker.h115 .Invoke(GMOCK_PP_REPEAT(GMOCK_INTERNAL_FORWARD_ARG, _Signature, _N)); \
H A Dgmock-actions.h793 // Implements the Invoke(object_ptr, &Class::Method) action.
956 // .WillOnce(Invoke(DistanceToOriginWithLabel));
958 // .WillOnce(Invoke(DistanceToOriginWithIndex));
967 // EXPECT_CALL(mock, Foo("abc", _, _)).WillOnce(Invoke(DistanceToOrigin));
968 // EXPECT_CALL(mock, Bar(5, _, _)).WillOnce(Invoke(DistanceToOrigin));
1087 // Various overloads for Invoke().
1094 typename std::decay<FunctionImpl>::type Invoke(FunctionImpl&& function_impl) { function
1101 internal::InvokeMethodAction<Class, MethodPtr> Invoke(Class* obj_ptr, function
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsgunfmt.cs92 plural = pluralMethod.Invoke(catalog, new Object[0]) as Hashtable;
168 return constructor.Invoke(null) as GettextResourceSet;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp1 //===- SjLjEHPrepare.cpp - Eliminate Invoke & Unwind instructions ---------===//
318 for (InvokeInst *Invoke : Invokes) {
319 BasicBlock *UnwindBlock = Invoke->getUnwindDest();
340 for (InvokeInst *Invoke : Invokes) {
341 BasicBlock *UnwindBlock = Invoke->getUnwindDest();
H A DStackProtector.cpp200 case Instruction::Invoke:
/netbsd-current/external/gpl2/gmake/dist/
H A Dconfigure.bat55 if not "%XSRC%"=="." echo Invoke Make thus: "make srcdir=%XSRC%"
/netbsd-current/external/gpl3/gdb.old/dist/
H A Ddjunpack.bat10 Rem Invoke like this:
/netbsd-current/external/gpl3/gdb/dist/
H A Ddjunpack.bat10 Rem Invoke like this:
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstruction.h235 case Instruction::Invoke:
618 case Instruction::Invoke:
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1477 // loop below and then use its Params to set Invoke->setParams(...) below.
1484 CXXMethodDecl *Invoke = CXXMethodDecl::Create( local
1490 InvokerParams[I]->setOwningFunction(Invoke);
1491 Invoke->setParams(InvokerParams);
1492 Invoke->setAccess(AS_private);
1493 Invoke->setImplicit(true);
1500 Invoke);
1503 Invoke->setDescribedFunctionTemplate(StaticInvokerTemplate);
1506 Class->addDecl(Invoke);
/netbsd-current/sys/dev/arcbios/
H A Darcbios.h324 int32_t Invoke; member in struct:arcbios_fv
H A Darcbios_calls.S152 AFV5ORMORE(Invoke) /* long (*Invoke)(u_long, u_long, u_long, char **, char **); */
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/
H A Dintl.cs184 return (GettextResourceSet) constructor.Invoke(null);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCaptureTracking.cpp242 case Instruction::Invoke: {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstruction.cpp324 case Invoke: return "invoke";
555 case Instruction::Invoke:
575 case Instruction::Invoke:
635 case Instruction::Invoke:
H A DCore.cpp2920 LLVMBasicBlockRef LLVMGetNormalDest(LLVMValueRef Invoke) {
2921 return wrap(unwrap<InvokeInst>(Invoke)->getNormalDest());
2924 LLVMBasicBlockRef LLVMGetUnwindDest(LLVMValueRef Invoke) {
2925 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) {
2927 } else if (CatchSwitchInst *CSI = dyn_cast<CatchSwitchInst>(unwrap(Invoke))) {
2930 return wrap(unwrap<InvokeInst>(Invoke)->getUnwindDest());
2933 void LLVMSetNormalDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2934 unwrap<InvokeInst>(Invoke)->setNormalDest(unwrap(B));
2937 void LLVMSetUnwindDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2938 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) {
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Doaidl.d547 HRESULT Invoke(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*, EXCEPINFO*, UINT*);
574 HRESULT Invoke(PVOID, MEMBERID, WORD, DISPPARAMS*, VARIANT*, EXCEPINFO*,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp491 case Instruction::Invoke: {
917 case Instruction::Invoke: {
1026 case Instruction::Invoke: {
H A DCalledValuePropagation.cpp174 case Instruction::Invoke:
/netbsd-current/sys/arch/sgimips/sgimips/
H A Darcemu.c72 .Invoke = ARCEMU_UNIMPL,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp2062 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(Inst)) {
2065 BasicBlock *NormalDest = Invoke->getNormalDest();
2364 auto *Invoke = cast<InvokeInst>(Call); local
2367 &*Invoke->getNormalDest()->getFirstInsertionPt();
2369 &*Invoke->getUnwindDest()->getFirstInsertionPt();

Completed in 466 milliseconds

123