Home
last modified time | relevance | path

Searched refs:if_success (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dbuiltins-regexp-gen.cc564 Label if_success(this), if_exception(this, Label::kDeferred); in RegExpExecInternal() local
646 &if_success); in RegExpExecInternal()
663 BIND(&if_success); in RegExpExecInternal()
967 Label if_failure(this), if_success(this); in TF_BUILTIN() local
968 Branch(SmiEqual(match_from, SmiConstant(-1)), &if_failure, &if_success); in TF_BUILTIN()
970 BIND(&if_success); in TF_BUILTIN()
/third_party/node/deps/v8/src/compiler/
Draw-machine-assembler.cc559 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() argument
563 schedule()->AddCall(CurrentBlock(), call, Use(if_success), Use(if_exception)); in Continuations()
Djs-native-context-specialization.cc1486 Node* if_success = graph()->NewNode(common()->IfSuccess(), control); in ReduceJSGetIterator() local
1502 control = if_success; in ReduceJSGetIterator()
2186 Node* const if_success = graph()->NewNode(common()->IfSuccess(), *control); in InlinePropertyGetterCall() local
2188 *control = if_success; in InlinePropertyGetterCall()
2220 Node* const if_success = graph()->NewNode(common()->IfSuccess(), *control); in InlinePropertySetterCall() local
2222 *control = if_success; in InlinePropertySetterCall()
Dwasm-compiler.h300 bool ThrowsException(Node* node, Node** if_success, Node** if_exception);
Draw-machine-assembler.h1051 void Continuations(Node* call, RawMachineLabel* if_success,
Deffect-control-linearizer.cc5230 auto if_success = __ MakeLabel(); in LowerFastApiCall() local
5354 __ Branch(is_zero, &if_success, &if_error); in LowerFastApiCall()
5357 __ Branch(true_constant, &if_success, &if_error); in LowerFastApiCall()
5360 __ Bind(&if_success); in LowerFastApiCall()
Dbytecode-graph-builder.cc4311 const Operator* if_success = common()->IfSuccess(); in MakeNode() local
4312 Node* on_success = graph()->NewNode(if_success, result); in MakeNode()
Dwasm-compiler.cc622 bool WasmGraphBuilder::ThrowsException(Node* node, Node** if_success, in ThrowsException() argument
628 *if_success = graph()->NewNode(mcgraph()->common()->IfSuccess(), node); in ThrowsException()
7585 Node* if_success = graph()->NewNode(mcgraph()->common()->IfSuccess(), call); in BuildCWasmEntry() local
7594 SetControl(if_success); in BuildCWasmEntry()
/third_party/node/deps/v8/src/wasm/
Dgraph-builder-interface.cc1412 TFNode* if_success = nullptr; in CheckForException() local
1414 if (!builder_->ThrowsException(node, &if_success, &if_exception)) { in CheckForException()
1419 success_env->control = if_success; in CheckForException()