Searched refs:Invokes (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SjLjEHPrepare.cpp | 68 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst *> Invokes); 335 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges() 357 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges() 382 SmallVector<InvokeInst *, 16> Invokes; in setupEntryBlockAndCallSites() local 396 Invokes.push_back(II); in setupEntryBlockAndCallSites() 402 if (Invokes.empty()) in setupEntryBlockAndCallSites() 405 NumInvokes += Invokes.size(); in setupEntryBlockAndCallSites() 408 lowerAcrossUnwindEdges(F, Invokes); in setupEntryBlockAndCallSites() 442 for (unsigned I = 0, E = Invokes.size(); I != E; ++I) { in setupEntryBlockAndCallSites() 443 insertCallSiteStore(Invokes[I], I + 1); in setupEntryBlockAndCallSites() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 2472 for (InvokeInst *II : Invokes) { in shouldBelongToSameSet() 2506 SmallPtrSet<Value *, 16> EquivalenceSet(Invokes.begin(), Invokes.end()); in shouldBelongToSameSet() 2508 NormalBB, {Invokes[0]->getParent(), Invokes[1]->getParent()}, in shouldBelongToSameSet() 2517 for (InvokeInst *II : Invokes) { in shouldBelongToSameSet() 2531 {Invokes[0]->getParent(), Invokes[1]->getParent()})) in shouldBelongToSameSet() 2552 if (any_of(zip(Invokes[0]->data_ops(), Invokes[1]->data_ops()), in shouldBelongToSameSet() 2608 for (InvokeInst *II : Invokes) in MergeCompatibleInvokesImpl() 2620 for (InvokeInst *II : Invokes) in MergeCompatibleInvokesImpl() 2647 for (InvokeInst *II : Invokes) in MergeCompatibleInvokesImpl() 2664 for (InvokeInst *II : Invokes) { in MergeCompatibleInvokesImpl() [all …]
|
| /freebsd-14.2/crypto/openssl/doc/man1/ |
| H A D | CA.pl.pod | 68 Invokes L<openssl-req(1)>. 143 F<newcert.pem>. Invokes L<openssl-verify(1)>.
|
| /freebsd-14.2/contrib/googletest/docs/ |
| H A D | gmock_cook_book.md | 2211 foo.Sum(5, 6); // Invokes CalculateSum(5, 6). 2212 foo.Sum(2, 3); // Invokes Sum3(1, 2, 3). 2213 foo.ComplexJob(10); // Invokes helper.ComplexJob(10). 2214 foo.ComplexJob(-1); // Invokes the inline lambda. 2267 EXPECT_EQ(foo.DoThis(2), '+'); // Invokes SignOfSum(5, 2). 2306 foo.ComplexJob(10); // Invokes Job1(). 2307 foo.ComplexJob(20); // Invokes Job2(5, 'a').
|