Searched refs:if_success (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 108 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() argument 112 schedule()->AddCall(CurrentBlock(), call, Use(if_success), Use(if_exception)); in Continuations()
|
D | wasm-compiler.h | 174 bool ThrowsException(Node* node, Node** if_success, Node** if_exception);
|
D | js-native-context-specialization.cc | 1719 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()
|
D | raw-machine-assembler.h | 892 void Continuations(Node* call, RawMachineLabel* if_success,
|
D | bytecode-graph-builder.cc | 3448 const Operator* if_success = common()->IfSuccess(); in MakeNode() local 3449 Node* on_success = graph()->NewNode(if_success, result); in MakeNode()
|
D | wasm-compiler.cc | 163 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/ |
D | function-body-decoder.cc | 557 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/ |
D | builtins-regexp-gen.cc | 465 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()
|