Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/llvm/unittests/Transforms/Scalar/
H A DLoopPassManagerTest.cpp37 using testing::Invoke;
340 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
343 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
346 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
349 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
366 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
369 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
373 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
376 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
947 .WillOnce(Invoke(getLoopAnalysisResult)); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/unittests/Interpreter/
H A DTestOptionValue.cpp17 virtual void Invoke() const {} in Invoke() function in Callback
18 void operator()() const { Invoke(); } in operator ()()
25 MOCK_CONST_METHOD0(Invoke, void());
35 EXPECT_CALL(callback, Invoke()); in TEST()
57 EXPECT_CALL(callback, Invoke()); in TEST()
131 EXPECT_CALL(callback, Invoke()).Times(2); in TEST()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DNativeProcessProtocolTest.cpp82 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
84 .WillRepeatedly(Invoke(&M, &FakeMemory::Write)); in TEST()
107 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
123 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
140 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtypo-correction.cpp140 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}} in Test()
141 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; did you mean 'revoke'?}} in Test()
142 Invoke("foo", "bar"); // expected-error{{use of undeclared identifier 'Invoke'}} in Test()
145 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}} in Test2()
146 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; did you mean 'revoke'?}} in Test2()
147Invoke("foo", 7); // expected-error{{use of undeclared identifier 'Invoke'; did you mean 'invoke'?… in Test2()
148 Invoke("foo", 7, 22); // expected-error{{use of undeclared identifier 'Invoke'}} in Test2()
/llvm-project-15.0.7/clang/test/Analysis/
H A Ddeadstores-driverkit.cpp16 kern_return_t Invoke(const IORPC);
22 else ret = ((OSObject *)this)->Invoke(rpc); // no-warning in foo()
H A Dos_object_base.h44 kern_return_t Invoke(IORPC invoke);
/llvm-project-15.0.7/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.cpp314 if (auto *Invoke = dyn_cast<InvokeInst>(U)) { in getUnwindDestTokenHelper() local
315 ChildUnwindDestToken = Invoke->getUnwindDest()->getFirstNonPHI(); in getUnwindDestTokenHelper()
614 LandingPadInliningInfo Invoke(II); in HandleInlinedLandingPad() local
625 LandingPadInst *OuterLPad = Invoke.getLandingPadInst(); in HandleInlinedLandingPad()
639 &*BB, Invoke.getOuterResumeDest())) in HandleInlinedLandingPad()
642 Invoke.addIncomingPHIValuesFor(NewBB); in HandleInlinedLandingPad()
646 Invoke.forwardResume(RI, InlinedLPads); in HandleInlinedLandingPad()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DStackAllocationAnalysis.cpp87 const MCInst &Invoke) { in doConfluenceWithLP() argument
89 const int64_t GnuArgsSize = BC.MIB->getGnuArgsSize(Invoke); in doConfluenceWithLP()
91 NewIn = doKill(Invoke, NewIn, GnuArgsSize); in doConfluenceWithLP()
/llvm-project-15.0.7/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(::std::forward<GMOCK_ARG_(tn, 1, \
[all …]
/llvm-project-15.0.7/mlir/unittests/ExecutionEngine/
H A DCMakeLists.txt2 Invoke.cpp
/llvm-project-15.0.7/libcxx/benchmarks/
H A Dfunction.bench.cpp184 struct Invoke { struct
228 makeCartesianProductBenchmark<Invoke, AllFunctionTypes>(); in main()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/unittests/Process/POSIX/
H A DNativeProcessELFTest.cpp98 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
145 .WillRepeatedly(Invoke(&M, &FakeMemory::Read)); in TEST()
/llvm-project-15.0.7/bolt/include/bolt/Passes/
H A DStackAllocationAnalysis.h54 const MCInst &Invoke);
H A DStackPointerTracking.h66 const MCInst &Invoke) { in doConfluenceWithLP() argument
69 const int64_t GnuArgsSize = this->BC.MIB->getGnuArgsSize(Invoke); in doConfluenceWithLP()
/llvm-project-15.0.7/mlir/test/Dialect/LLVMIR/
H A Dcallgraph.mlir54 // CHECK: Testing : "Invoke call"
55 module attributes {"test.name" = "Invoke call"} {
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/abseil/
H A Dcleanup-ctad.cpp61 void Invoke() &&;
/llvm-project-15.0.7/llvm/unittests/IR/
H A DInstructionsTest.cpp118 for (Value *Arg : Invoke->args()) { in TEST_F()
778 std::unique_ptr<InvokeInst> Invoke( in TEST() local
783 Invoke->setAttributes( in TEST()
785 Invoke->setDebugLoc(DebugLoc(MDNode::get(C, None))); in TEST()
789 InvokeInst::Create(Invoke.get(), NewBundle)); in TEST()
790 EXPECT_EQ(Invoke->getNormalDest(), Clone->getNormalDest()); in TEST()
791 EXPECT_EQ(Invoke->getUnwindDest(), Clone->getUnwindDest()); in TEST()
792 EXPECT_EQ(Invoke->arg_size(), Clone->arg_size()); in TEST()
793 EXPECT_EQ(Invoke->getArgOperand(0), Clone->getArgOperand(0)); in TEST()
794 EXPECT_EQ(Invoke->getCallingConv(), Clone->getCallingConv()); in TEST()
[all …]
/llvm-project-15.0.7/llvm/unittests/FuzzMutate/
H A DRandomIRBuilderTest.cpp229 Instruction *Invoke = &*BB.begin(); in TEST() local
233 (void)IB.findOrCreateSource(BB, {Invoke}, {}, fuzzerop::anyIntType()); in TEST()
/llvm-project-15.0.7/mlir/test/Transforms/
H A Dcontrol-flow-sink-test.mlir1 // Invoke the test control-flow sink pass to test the utilities.
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaLambda.cpp1488 CXXMethodDecl *Invoke = CXXMethodDecl::Create( in addFunctionPointerConversion() local
1495 InvokerParams[I]->setOwningFunction(Invoke); in addFunctionPointerConversion()
1496 Invoke->setParams(InvokerParams); in addFunctionPointerConversion()
1497 Invoke->setAccess(AS_private); in addFunctionPointerConversion()
1498 Invoke->setImplicit(true); in addFunctionPointerConversion()
1505 Invoke); in addFunctionPointerConversion()
1508 Invoke->setDescribedFunctionTemplate(StaticInvokerTemplate); in addFunctionPointerConversion()
1511 Class->addDecl(Invoke); in addFunctionPointerConversion()
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstruction.cpp354 case Invoke: return "invoke"; in getOpcodeName()
588 case Instruction::Invoke: in mayReadFromMemory()
608 case Instruction::Invoke: in mayWriteToMemory()
668 case Instruction::Invoke: in isVolatile()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstruction.h233 case Instruction::Invoke:
616 case Instruction::Invoke:
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-literals.m128 // Invoke 'prop'
138 // Invoke arrayWithObjects:count:

1234