Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Draw-machine-assembler.cc108 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() argument
112 schedule()->AddCall(CurrentBlock(), call, Use(if_success), Use(if_exception)); in Continuations()
Dwasm-compiler.h174 bool ThrowsException(Node* node, Node** if_success, Node** if_exception);
Djs-native-context-specialization.cc1719 Node* const if_success = graph()->NewNode(common()->IfSuccess(), *control); in InlinePropertyGetterCall() local
1721 *control = if_success; in InlinePropertyGetterCall()
1757 Node* const if_success = graph()->NewNode(common()->IfSuccess(), *control); in InlinePropertySetterCall() local
1759 *control = if_success; in InlinePropertySetterCall()
Draw-machine-assembler.h892 void Continuations(Node* call, RawMachineLabel* if_success,
Dbytecode-graph-builder.cc3448 const Operator* if_success = common()->IfSuccess(); in MakeNode() local
3449 Node* on_success = graph()->NewNode(if_success, result); in MakeNode()
Dwasm-compiler.cc163 bool WasmGraphBuilder::ThrowsException(Node* node, Node** if_success, in ThrowsException() argument
169 *if_success = graph()->NewNode(mcgraph()->common()->IfSuccess(), node); in ThrowsException()
/external/v8/src/wasm/
Dfunction-body-decoder.cc557 TFNode* if_success = nullptr; in CheckForException() local
559 if (!builder_->ThrowsException(node, &if_success, &if_exception)) { in CheckForException()
564 success_env->control = if_success; in CheckForException()
/external/v8/src/builtins/
Dbuiltins-regexp-gen.cc465 Label if_success(this), if_exception(this, Label::kDeferred); in RegExpExecInternal()
538 &if_success); in RegExpExecInternal()
552 BIND(&if_success); in RegExpExecInternal()
1027 Label if_failure(this), if_success(this); in TF_BUILTIN() local
1028 Branch(SmiEqual(match_from, SmiConstant(-1)), &if_failure, &if_success); in TF_BUILTIN()
1030 BIND(&if_success); in TF_BUILTIN()