Searched refs:if_success (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
D | builtins-regexp-gen.cc | 564 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/ |
D | raw-machine-assembler.cc | 559 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() argument 563 schedule()->AddCall(CurrentBlock(), call, Use(if_success), Use(if_exception)); in Continuations()
|
D | js-native-context-specialization.cc | 1486 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()
|
D | wasm-compiler.h | 300 bool ThrowsException(Node* node, Node** if_success, Node** if_exception);
|
D | raw-machine-assembler.h | 1051 void Continuations(Node* call, RawMachineLabel* if_success,
|
D | effect-control-linearizer.cc | 5230 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()
|
D | bytecode-graph-builder.cc | 4311 const Operator* if_success = common()->IfSuccess(); in MakeNode() local 4312 Node* on_success = graph()->NewNode(if_success, result); in MakeNode()
|
D | wasm-compiler.cc | 622 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/ |
D | graph-builder-interface.cc | 1412 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()
|