Searched refs:on_exception (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | js-typed-lowering.cc | 628 Node* on_exception = nullptr; in ReduceJSAdd() local 629 if (NodeProperties::IsExceptionalCall(node, &on_exception)) { in ReduceJSAdd() 630 NodeProperties::ReplaceControlInput(on_exception, vfalse); in ReduceJSAdd() 631 NodeProperties::ReplaceEffectInput(on_exception, efalse); in ReduceJSAdd() 633 Revisit(on_exception); in ReduceJSAdd() 1149 Node* on_exception = nullptr; in ReduceJSToObject() local 1151 NodeProperties::IsExceptionalCall(node, &on_exception)) { in ReduceJSToObject() 1152 NodeProperties::ReplaceControlInput(on_exception, if_false); in ReduceJSToObject() 1153 NodeProperties::ReplaceEffectInput(on_exception, efalse); in ReduceJSToObject() 1155 Revisit(on_exception); in ReduceJSToObject() [all …]
|
D | js-inlining.cc | 177 Node* on_exception = in InlineCall() local 179 on_exception_nodes.push_back(on_exception); in InlineCall()
|
D | js-call-reducer.cc | 3186 Node* on_exception = nullptr; in ReduceReflectGet() local 3187 if (NodeProperties::IsExceptionalCall(node, &on_exception)) { in ReduceReflectGet() 3201 ReplaceWithValue(on_exception, phi, ephi, merge); in ReduceReflectGet() 3252 Node* on_exception = nullptr; in ReduceReflectHas() local 3253 if (NodeProperties::IsExceptionalCall(node, &on_exception)) { in ReduceReflectHas() 3267 ReplaceWithValue(on_exception, phi, ephi, merge); in ReduceReflectHas() 3935 Node* on_exception = nullptr; in CheckIfConstructor() local 3936 if (NodeProperties::IsExceptionalCall(construct, &on_exception)) { in CheckIfConstructor() 3944 graph()->NewNode(common()->Merge(2), if_exception, on_exception); in CheckIfConstructor() 3946 on_exception, merge); in CheckIfConstructor() [all …]
|
D | simplified-lowering.cc | 4429 Node* on_exception = nullptr; in DoJSToNumberOrNumericTruncatesToFloat64() local 4430 if (NodeProperties::IsExceptionalCall(node, &on_exception)) { in DoJSToNumberOrNumericTruncatesToFloat64() 4431 NodeProperties::ReplaceControlInput(on_exception, vfalse0); in DoJSToNumberOrNumericTruncatesToFloat64() 4432 NodeProperties::ReplaceEffectInput(on_exception, efalse0); in DoJSToNumberOrNumericTruncatesToFloat64() 4528 Node* on_exception = nullptr; in DoJSToNumberOrNumericTruncatesToWord32() local 4529 if (NodeProperties::IsExceptionalCall(node, &on_exception)) { in DoJSToNumberOrNumericTruncatesToWord32() 4530 NodeProperties::ReplaceControlInput(on_exception, vfalse0); in DoJSToNumberOrNumericTruncatesToWord32() 4531 NodeProperties::ReplaceEffectInput(on_exception, efalse0); in DoJSToNumberOrNumericTruncatesToWord32()
|
D | bytecode-graph-builder.cc | 4300 Node* on_exception = graph()->NewNode(if_exception, effect, result); in MakeNode() local 4302 environment()->UpdateControlDependency(on_exception); in MakeNode() 4303 environment()->UpdateEffectDependency(on_exception); in MakeNode() 4304 environment()->BindAccumulator(on_exception); in MakeNode()
|