| /llvm-project-15.0.7/clang/test/CodeGenCoroutines/ |
| H A D | coro-symmetric-transfer-03.cpp | 12 return h.promise().continuation; in await_suspend() 25 std::coroutine_handle<> continuation; member 39 std::coroutine_handle<void> await_suspend(std::coroutine_handle<void> continuation) noexcept { in await_suspend() 40 handle.promise().continuation = continuation; in await_suspend()
|
| H A D | coro-elide.cpp | 14 return h.promise().continuation; in await_suspend() 27 std::coroutine_handle<> continuation; member 39 void await_suspend(std::coroutine_handle<void> continuation) noexcept {} in await_suspend()
|
| H A D | coro-symmetric-transfer-02.cpp | 44 handle_t await_suspend(std::coroutine_handle<> continuation) noexcept;
|
| H A D | coro-symmetric-transfer-02-exp-namespace.cpp | 46 handle_t await_suspend(coro::coroutine_handle<> continuation) noexcept;
|
| /llvm-project-15.0.7/llvm/test/Transforms/ConstantHoisting/X86/ |
| H A D | phi.ll | 80 i64 462, label %continuation 82 i64 443, label %continuation 86 br label %continuation 88 continuation: 102 i64 462, label %continuation 104 i64 443, label %continuation 108 br label %continuation 110 continuation:
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/ |
| H A D | analyze.py | 536 def run_analyzer(opts, continuation=report_failure): argument 574 continuation(opts) 580 continuation(opts) 663 def dispatch_ctu(opts, continuation=run_analyzer): argument 683 return continuation(opts) 687 def filter_debug_flags(opts, continuation=dispatch_ctu): argument 694 return continuation(opts) 724 return continuation(opts) 728 def arch_check(opts, continuation=language_check): argument 746 return continuation(opts) [all …]
|
| /llvm-project-15.0.7/polly/test/ |
| H A D | update_check.py | 265 continuation = '' 269 continuation += line[:-2] + ' ' 271 newrunlines.append(continuation + line) 272 continuation = '' 273 if continuation: 274 newrunlines.append(continuation)
|
| /llvm-project-15.0.7/mlir/lib/Conversion/SCFToControlFlow/ |
| H A D | SCFToControlFlow.cpp | 530 Block *continuation = in matchAndRewrite() local 538 rewriter.inlineRegionBefore(whileOp.getAfter(), continuation); in matchAndRewrite() 552 continuation, ValueRange()); in matchAndRewrite() 589 Block *continuation = in matchAndRewrite() local 595 rewriter.inlineRegionBefore(whileOp.getBefore(), continuation); in matchAndRewrite() 606 continuation, ValueRange()); in matchAndRewrite()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | Coroutines.rst | 129 In returned-continuation lowering, signaled by the use of 138 these continuation functions, one for each suspend point. 140 LLVM actually supports two closely-related returned-continuation 154 function returns a continuation function pointer and yielded 155 values, but the continuation function simply returns `void` 998 for returned-continuation coroutines. 1025 supported for returned-continuation coroutines. 1074 This is not supported for returned-continuation coroutines. 1261 multiple-suspend returned-continuation coroutine. 1316 unique-suspend returned-continuation coroutine. [all …]
|
| H A D | ReportingGuide.rst | 7 an incident, we can act on it if appropriate, and reduce continuation of
|
| H A D | JITLink.rst | 501 link state into a *continuation* to be run once the symbols are resolved. 507 This phase is called by the continuation constructed at the end of the 545 JITLink will pack the link state into a *continuation* to be run once 552 This phase is called by the continuation constructed at the end of the
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | member-expr-static.cpp | 6 extern void kernel_thread_start(thread_continue_t continuation);
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | synthesize_ivar.m | 18 // declared in continuation class.
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | parsing.cpp | 187 const auto continuation{ in EmitPreprocessedSource() local 189 out << continuation; in EmitPreprocessedSource()
|
| /llvm-project-15.0.7/clang/test/AST/ |
| H A D | coroutine-locals-cleanup.cpp | 46 handle_t await_suspend(coroutine_handle<> continuation) noexcept;
|
| H A D | coroutine-locals-cleanup-exp-namespace.cpp | 46 handle_t await_suspend(coroutine_handle<> continuation) noexcept;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | regress-f128csel-flags.ll | 3 ; We used to not mark NZCV as being used in the continuation basic-block
|
| H A D | arm64-regress-f128csel-flags.ll | 3 ; We used to not mark NZCV as being used in the continuation basic-block
|
| /llvm-project-15.0.7/llvm/test/Transforms/DeadStoreElimination/ |
| H A D | operand-bundles.ll | 37 ; since it could be observed from the deopt continuation.
|
| /llvm-project-15.0.7/llvm/test/Feature/OperandBundles/ |
| H A D | dse.ll | 60 ; at the call site (i.e. the call returns to the "deopt" continuation). Since
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Async/Transforms/ |
| H A D | AsyncToAsyncRuntime.cpp | 451 Block *continuation = rewriter.splitBlock(resume, Block::iterator(op)); in matchAndRewrite() local 459 /*falseDest=*/continuation, in matchAndRewrite() 464 rewriter.setInsertionPointToStart(continuation); in matchAndRewrite()
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | DebuggingCoroutines.rst | 358 implementations of coroutine types store `std::coroutine_handle<> continuation` 360 `continuation` is typically the awaiting coroutine for the current coroutine. 364 contains the corresponding continuation (which itself is a coroutine with a
|
| /llvm-project-15.0.7/llvm/test/Transforms/Coroutines/ |
| H A D | coro-async-unreachable.ll | 62 ; store the return continuation
|
| /llvm-project-15.0.7/llvm/test/Analysis/BranchProbabilityInfo/ |
| H A D | unreachable.ll | 95 ; Left edge of 'entry' leads to 'cold' block while right edge is 'normal' continuation.
|
| /llvm-project-15.0.7/mlir/lib/Transforms/Utils/ |
| H A D | DialectConversion.cpp | 943 void notifySplitBlock(Block *block, Block *continuation); 1443 Block *continuation) { in notifySplitBlock() argument 1444 blockActions.push_back(BlockAction::getSplit(continuation, block)); in notifySplitBlock() 1597 auto *continuation = PatternRewriter::splitBlock(block, before); in splitBlock() local 1598 impl->notifySplitBlock(block, continuation); in splitBlock() 1599 return continuation; in splitBlock()
|