| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/compiler/simplified-lowering.h" | 5 #include "src/compiler/simplified-lowering.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
| 11 #include "src/compiler/common-operator.h" | 11 #include "src/compiler/common-operator.h" |
| 12 #include "src/compiler/diamond.h" | 12 #include "src/compiler/diamond.h" |
| 13 #include "src/compiler/graph-inl.h" | |
| 14 #include "src/compiler/linkage.h" | 13 #include "src/compiler/linkage.h" |
| 15 #include "src/compiler/node-matchers.h" | 14 #include "src/compiler/node-matchers.h" |
| 16 #include "src/compiler/node-properties-inl.h" | 15 #include "src/compiler/node-properties-inl.h" |
| 17 #include "src/compiler/representation-change.h" | 16 #include "src/compiler/representation-change.h" |
| 18 #include "src/compiler/simplified-lowering.h" | 17 #include "src/compiler/simplified-lowering.h" |
| 19 #include "src/compiler/simplified-operator.h" | 18 #include "src/compiler/simplified-operator.h" |
| 20 #include "src/objects.h" | 19 #include "src/objects.h" |
| 21 | 20 |
| 22 namespace v8 { | 21 namespace v8 { |
| 23 namespace internal { | 22 namespace internal { |
| (...skipping 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1512 | 1511 |
| 1513 void SimplifiedLowering::DoStringLessThanOrEqual(Node* node) { | 1512 void SimplifiedLowering::DoStringLessThanOrEqual(Node* node) { |
| 1514 node->set_op(machine()->IntLessThanOrEqual()); | 1513 node->set_op(machine()->IntLessThanOrEqual()); |
| 1515 node->ReplaceInput(0, StringComparison(node, true)); | 1514 node->ReplaceInput(0, StringComparison(node, true)); |
| 1516 node->ReplaceInput(1, jsgraph()->SmiConstant(EQUAL)); | 1515 node->ReplaceInput(1, jsgraph()->SmiConstant(EQUAL)); |
| 1517 } | 1516 } |
| 1518 | 1517 |
| 1519 } // namespace compiler | 1518 } // namespace compiler |
| 1520 } // namespace internal | 1519 } // namespace internal |
| 1521 } // namespace v8 | 1520 } // namespace v8 |
| OLD | NEW |