| 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/base/adapters.h" | 5 #include "src/base/adapters.h" |
| 6 #include "src/base/bits.h" | 6 #include "src/base/bits.h" |
| 7 #include "src/compiler/instruction-selector-impl.h" | 7 #include "src/compiler/instruction-selector-impl.h" |
| 8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
| 9 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
| 10 | 10 |
| (...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 | 982 |
| 983 | 983 |
| 984 void InstructionSelector::VisitFloat32RoundDown(Node* node) { UNIMPLEMENTED(); } | 984 void InstructionSelector::VisitFloat32RoundDown(Node* node) { UNIMPLEMENTED(); } |
| 985 | 985 |
| 986 | 986 |
| 987 void InstructionSelector::VisitFloat64RoundDown(Node* node) { | 987 void InstructionSelector::VisitFloat64RoundDown(Node* node) { |
| 988 VisitRR(this, kMips64Float64RoundDown, node); | 988 VisitRR(this, kMips64Float64RoundDown, node); |
| 989 } | 989 } |
| 990 | 990 |
| 991 | 991 |
| 992 void InstructionSelector::VisitFloat32RoundUp(Node* node) { UNIMPLEMENTED(); } |
| 993 |
| 994 |
| 992 void InstructionSelector::VisitFloat64RoundUp(Node* node) { | 995 void InstructionSelector::VisitFloat64RoundUp(Node* node) { |
| 993 VisitRR(this, kMips64Float64RoundUp, node); | 996 VisitRR(this, kMips64Float64RoundUp, node); |
| 994 } | 997 } |
| 995 | 998 |
| 996 | 999 |
| 997 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { | 1000 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { |
| 998 VisitRR(this, kMips64Float64RoundTruncate, node); | 1001 VisitRR(this, kMips64Float64RoundTruncate, node); |
| 999 } | 1002 } |
| 1000 | 1003 |
| 1001 | 1004 |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1590 MachineOperatorBuilder::kFloat32Max | | 1593 MachineOperatorBuilder::kFloat32Max | |
| 1591 MachineOperatorBuilder::kFloat64RoundDown | | 1594 MachineOperatorBuilder::kFloat64RoundDown | |
| 1592 MachineOperatorBuilder::kFloat64RoundUp | | 1595 MachineOperatorBuilder::kFloat64RoundUp | |
| 1593 MachineOperatorBuilder::kFloat64RoundTruncate | | 1596 MachineOperatorBuilder::kFloat64RoundTruncate | |
| 1594 MachineOperatorBuilder::kFloat64RoundTiesEven; | 1597 MachineOperatorBuilder::kFloat64RoundTiesEven; |
| 1595 } | 1598 } |
| 1596 | 1599 |
| 1597 } // namespace compiler | 1600 } // namespace compiler |
| 1598 } // namespace internal | 1601 } // namespace internal |
| 1599 } // namespace v8 | 1602 } // namespace v8 |
| OLD | NEW |