Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(952)

Unified Diff: src/compiler/common-operator-reducer.cc

Issue 1192063002: [turbofan] Improve interplay of ControlReducer and CommonOperatorReducer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/common-operator-reducer.h ('k') | src/compiler/control-reducer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/common-operator-reducer.cc
diff --git a/src/compiler/common-operator-reducer.cc b/src/compiler/common-operator-reducer.cc
index 824cdbdab1a3cde20ca0582f4f7aeb3c15922a78..23b2fc16a8bc5b87d7e050c70bb4fb6e534e0b8f 100644
--- a/src/compiler/common-operator-reducer.cc
+++ b/src/compiler/common-operator-reducer.cc
@@ -7,7 +7,8 @@
#include <algorithm>
#include "src/compiler/common-operator.h"
-#include "src/compiler/js-graph.h"
+#include "src/compiler/graph.h"
+#include "src/compiler/machine-operator.h"
#include "src/compiler/node.h"
#include "src/compiler/node-matchers.h"
@@ -32,43 +33,69 @@ Reduction CommonOperatorReducer::Reduce(Node* node) {
Reduction CommonOperatorReducer::ReduceEffectPhi(Node* node) {
DCHECK_EQ(IrOpcode::kEffectPhi, node->opcode());
- int const input_count = node->InputCount();
- if (input_count > 1) {
- Node* const replacement = node->InputAt(0);
- for (int i = 1; i < input_count - 1; ++i) {
- if (node->InputAt(i) != replacement) return NoChange();
+ int const input_count = node->InputCount() - 1;
+ DCHECK_LE(1, input_count);
+ Node* const merge = node->InputAt(input_count);
+ DCHECK(IrOpcode::IsMergeOpcode(merge->opcode()));
+ DCHECK_EQ(input_count, merge->InputCount());
+ Node* const effect = node->InputAt(0);
+ DCHECK_NE(node, effect);
+ for (int i = 1; i < input_count; ++i) {
+ Node* const input = node->InputAt(i);
+ if (input == node) {
+ // Ignore redundant inputs.
+ DCHECK_EQ(IrOpcode::kLoop, merge->opcode());
+ continue;
}
- return Replace(replacement);
+ if (input != effect) return NoChange();
}
- return NoChange();
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
+ return Replace(effect);
}
Reduction CommonOperatorReducer::ReducePhi(Node* node) {
DCHECK_EQ(IrOpcode::kPhi, node->opcode());
- int const input_count = node->InputCount();
- if (input_count == 3) {
- Node* vtrue = NodeProperties::GetValueInput(node, 0);
- Node* vfalse = NodeProperties::GetValueInput(node, 1);
- Node* merge = NodeProperties::GetControlInput(node);
- DiamondMatcher matcher(merge);
- if (matcher.Matched()) {
- if (matcher.IfTrue() == merge->InputAt(1)) std::swap(vtrue, vfalse);
- Node* cond = matcher.Branch()->InputAt(0);
+ int const input_count = node->InputCount() - 1;
+ DCHECK_LE(1, input_count);
+ Node* const merge = node->InputAt(input_count);
+ DCHECK(IrOpcode::IsMergeOpcode(merge->opcode()));
+ DCHECK_EQ(input_count, merge->InputCount());
+ if (input_count == 2) {
+ Node* vtrue = node->InputAt(0);
+ Node* vfalse = node->InputAt(1);
+ Node* if_true = merge->InputAt(0);
+ Node* if_false = merge->InputAt(1);
+ if (if_true->opcode() != IrOpcode::kIfTrue) {
+ std::swap(if_true, if_false);
+ std::swap(vtrue, vfalse);
+ }
+ if (if_true->opcode() == IrOpcode::kIfTrue &&
+ if_false->opcode() == IrOpcode::kIfFalse &&
+ if_true->InputAt(0) == if_false->InputAt(0)) {
+ Node* const branch = if_true->InputAt(0);
+ Node* const cond = branch->InputAt(0);
if (cond->opcode() == IrOpcode::kFloat32LessThan) {
Float32BinopMatcher mcond(cond);
if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) &&
vfalse->opcode() == IrOpcode::kFloat32Sub) {
Float32BinopMatcher mvfalse(vfalse);
if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float32Abs(), vtrue);
}
}
if (mcond.left().Equals(vtrue) && mcond.right().Equals(vfalse) &&
machine()->HasFloat32Min()) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float32Min(), vtrue, vfalse);
} else if (mcond.left().Equals(vfalse) && mcond.right().Equals(vtrue) &&
machine()->HasFloat32Max()) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float32Max(), vtrue, vfalse);
}
} else if (cond->opcode() == IrOpcode::kFloat64LessThan) {
@@ -77,35 +104,47 @@ Reduction CommonOperatorReducer::ReducePhi(Node* node) {
vfalse->opcode() == IrOpcode::kFloat64Sub) {
Float64BinopMatcher mvfalse(vfalse);
if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float64Abs(), vtrue);
}
}
if (mcond.left().Equals(vtrue) && mcond.right().Equals(vfalse) &&
machine()->HasFloat64Min()) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float64Min(), vtrue, vfalse);
} else if (mcond.left().Equals(vfalse) && mcond.right().Equals(vtrue) &&
machine()->HasFloat64Max()) {
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
return Change(node, machine()->Float64Max(), vtrue, vfalse);
}
}
}
}
- if (input_count > 1) {
- Node* const replacement = node->InputAt(0);
- for (int i = 1; i < input_count - 1; ++i) {
- if (node->InputAt(i) != replacement) return NoChange();
+ Node* const value = node->InputAt(0);
+ DCHECK_NE(node, value);
+ for (int i = 1; i < input_count; ++i) {
+ Node* const input = node->InputAt(i);
+ if (input == node) {
+ // Ignore redundant inputs.
+ DCHECK_EQ(IrOpcode::kLoop, merge->opcode());
+ continue;
}
- return Replace(replacement);
+ if (input != value) return NoChange();
}
- return NoChange();
+ // We might now be able to further reduce the {merge} node.
+ Revisit(merge);
+ return Replace(value);
}
Reduction CommonOperatorReducer::ReduceSelect(Node* node) {
DCHECK_EQ(IrOpcode::kSelect, node->opcode());
- Node* cond = NodeProperties::GetValueInput(node, 0);
- Node* vtrue = NodeProperties::GetValueInput(node, 1);
- Node* vfalse = NodeProperties::GetValueInput(node, 2);
+ Node* const cond = node->InputAt(0);
+ Node* const vtrue = node->InputAt(1);
+ Node* const vfalse = node->InputAt(2);
if (vtrue == vfalse) return Replace(vtrue);
switch (cond->opcode()) {
case IrOpcode::kHeapConstant: {
@@ -173,19 +212,6 @@ Reduction CommonOperatorReducer::Change(Node* node, Operator const* op, Node* a,
return Changed(node);
}
-
-CommonOperatorBuilder* CommonOperatorReducer::common() const {
- return jsgraph()->common();
-}
-
-
-Graph* CommonOperatorReducer::graph() const { return jsgraph()->graph(); }
-
-
-MachineOperatorBuilder* CommonOperatorReducer::machine() const {
- return jsgraph()->machine();
-}
-
} // namespace compiler
} // namespace internal
} // namespace v8
« no previous file with comments | « src/compiler/common-operator-reducer.h ('k') | src/compiler/control-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698