/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | Coroutines.cpp | 274 auto Suspend = cast<CoroSuspendRetconInst>(II); in buildFrom() local 275 CoroSuspends.push_back(Suspend); in buildFrom() 279 auto Suspend = cast<CoroSuspendInst>(II); in buildFrom() local 280 CoroSuspends.push_back(Suspend); in buildFrom() 281 if (Suspend->isFinal()) { in buildFrom() 362 auto Suspend = dyn_cast<CoroSuspendInst>(AnySuspend); in buildFrom() local 363 if (!Suspend) { in buildFrom() 370 if (!Suspend->getCoroSave()) in buildFrom() 371 createCoroSave(CoroBegin, Suspend); in buildFrom() 396 auto Suspend in buildFrom() local [all...] |
H A D | CoroSplit.cpp | 907 // instruction. Suspend instruction represented by a switch, track the PHI 1086 static bool simplifySuspendPoint(CoroSuspendInst *Suspend, in simplifySuspendPoint() argument 1088 Instruction *Prev = Suspend->getPrevNode(); in simplifySuspendPoint() 1090 auto *Pred = Suspend->getParent()->getSinglePredecessor(); in simplifySuspendPoint() 1116 auto *Save = Suspend->getCoroSave(); in simplifySuspendPoint() 1122 Suspend->replaceAllUsesWith(SubFn->getRawIndex()); in simplifySuspendPoint() 1123 Suspend->eraseFromParent(); in simplifySuspendPoint() 1256 auto Suspend = cast<CoroSuspendRetconInst>(Shape.CoroSuspends[i]); in splitRetconCoroutine() local 1265 auto SuspendBB = Suspend->getParent(); in splitRetconCoroutine() 1266 auto NewSuspendBB = SuspendBB->splitBasicBlock(Suspend); in splitRetconCoroutine() 1325 auto Suspend = Shape.CoroSuspends[i]; splitRetconCoroutine() local [all...] |
H A D | CoroFrame.cpp | 75 // Suspend: a boolean indicating whether block 'i' contains a suspend point. 85 bool Suspend = false; member 204 B.Suspend = true; in SuspendCrossingInfo() 241 if (B.Suspend) { in SuspendCrossingInfo() 244 if (S.Suspend) { in SuspendCrossingInfo() 255 // This is reached when S block it not Suspend nor coro.end and it in SuspendCrossingInfo() 1276 for (auto Suspend : Shape.CoroSuspends) { in eliminateSwiftErrorArgument() 1277 (void) emitSetAndGetSwiftErrorValueAround(Suspend, Alloca, Shape); in eliminateSwiftErrorArgument()
|
H A D | CoroInstr.h | 398 if (auto Suspend = dyn_cast<CoroSuspendInst>(this)) in getCoroSave() 399 return Suspend->getCoroSave(); in getCoroSave()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-import-wrapper-cache.h | 32 int _expected_arity, Suspend _suspend) in CacheKey() 48 Suspend suspend; 79 Suspend suspend) const; 82 int expected_arity, Suspend suspend) const;
|
H A D | wasm-import-wrapper-cache.cc | 29 Suspend suspend) const { in Get() 40 Suspend suspend) const { in MaybeGet()
|
H A D | module-compiler.h | 73 int expected_arity, Suspend suspend,
|
H A D | module-instantiate.cc | 1195 Suspend suspend = in ProcessImportedFunction() 1610 Suspend suspend = in CompileImportWrappers()
|
H A D | wasm-objects.cc | 1479 wasm::Suspend suspend = in ImportWasmJSFunctionIntoTable() 2115 wasm::Suspend suspend = in New()
|
H A D | module-compiler.cc | 3947 int expected_arity, Suspend suspend, in CompileImportWrapper()
|
/third_party/lzma/CPP/Windows/ |
H A D | Thread.h | 35 DWORD Suspend() { return ::SuspendThread(thread); }
in Suspend() function in NWindows::MY_UNCOPYABLE
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | target.cc | 118 Suspend(); in ProcessDebugEvent() 135 void Target::Suspend() { in Suspend() function in v8::internal::wasm::gdb_server::Target 139 gdb_server_->Suspend(); in Suspend()
|
H A D | target.h | 71 void Suspend();
|
H A D | gdb-server.h | 109 void Suspend();
|
H A D | gdb-server.cc | 340 void GdbServer::Suspend() { in Suspend() function in v8::internal::wasm::gdb_server::GdbServer 382 Suspend(); in AddWasmModule()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 2077 // There are several types of Suspend node: 2086 class Suspend : public Expression { class 2088 // With {kNoControl}, the {Suspend} behaves like yield, except that it never 2107 Suspend(NodeType node_type, Expression* expression, int pos, in Suspend() function in v8::internal::Suspend 2118 class Yield final : public Suspend { 2123 : Suspend(kYield, expression, pos, on_abrupt_resume) {} in Yield() 2126 class YieldStar final : public Suspend { 2131 : Suspend(kYieldStar, expression, pos, in YieldStar() 2132 Suspend::OnAbruptResume::kNoControl) {} in YieldStar() 2135 class Await final : public Suspend { [all...] |
H A D | ast-source-ranges.h | 56 V(Suspend) \
|
/third_party/node/deps/v8/src/compiler/ |
H A D | wasm-compiler.h | 59 enum Suspend : bool { kSuspend = false, kNoSuspend = true }; 130 bool source_positions, int expected_arity, wasm::Suspend); 151 wasm::Suspend suspend);
|
H A D | wasm-compiler.cc | 7082 wasm::Suspend suspend) { 8046 wasm::Suspend suspend) { 8219 wasm::Suspend suspend) {
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.h | 121 using Suspend = v8::internal::Suspend*; 1027 static_cast<Suspend*>(node), in RecordSuspendSourceRange()
|
H A D | preparser.h | 624 Suspend::OnAbruptResume on_abrupt_resume) { in NewYield() 883 using Suspend = PreParserExpression;
|
H A D | parser.cc | 3027 Suspend::kOnExceptionThrow); in BuildInitialYield()
|
H A D | parser-base.h | 233 using SuspendExpressionT = typename Types::Suspend; 3074 factory()->NewYield(expression, pos, Suspend::kOnExceptionThrow); in ParseYieldExpression()
|
/third_party/rust/crates/libc/src/ |
H A D | psp.rs | 641 Suspend = 1, 968 Suspend = 1,
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |