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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { | 1005 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { |
1006 VisitRR(this, kMips64Float64RoundTruncate, node); | 1006 VisitRR(this, kMips64Float64RoundTruncate, node); |
1007 } | 1007 } |
1008 | 1008 |
1009 | 1009 |
1010 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { | 1010 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { |
1011 UNREACHABLE(); | 1011 UNREACHABLE(); |
1012 } | 1012 } |
1013 | 1013 |
1014 | 1014 |
| 1015 void InstructionSelector::VisitFloat32RoundTiesEven(Node* node) { |
| 1016 UNREACHABLE(); |
| 1017 } |
| 1018 |
| 1019 |
1015 void InstructionSelector::VisitFloat64RoundTiesEven(Node* node) { | 1020 void InstructionSelector::VisitFloat64RoundTiesEven(Node* node) { |
1016 VisitRR(this, kMips64Float64RoundTiesEven, node); | 1021 VisitRR(this, kMips64Float64RoundTiesEven, node); |
1017 } | 1022 } |
1018 | 1023 |
1019 | 1024 |
1020 void InstructionSelector::EmitPrepareArguments(NodeVector* arguments, | 1025 void InstructionSelector::EmitPrepareArguments(NodeVector* arguments, |
1021 const CallDescriptor* descriptor, | 1026 const CallDescriptor* descriptor, |
1022 Node* node) { | 1027 Node* node) { |
1023 Mips64OperandGenerator g(this); | 1028 Mips64OperandGenerator g(this); |
1024 | 1029 |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1598 MachineOperatorBuilder::kFloat32Max | | 1603 MachineOperatorBuilder::kFloat32Max | |
1599 MachineOperatorBuilder::kFloat64RoundDown | | 1604 MachineOperatorBuilder::kFloat64RoundDown | |
1600 MachineOperatorBuilder::kFloat64RoundUp | | 1605 MachineOperatorBuilder::kFloat64RoundUp | |
1601 MachineOperatorBuilder::kFloat64RoundTruncate | | 1606 MachineOperatorBuilder::kFloat64RoundTruncate | |
1602 MachineOperatorBuilder::kFloat64RoundTiesEven; | 1607 MachineOperatorBuilder::kFloat64RoundTiesEven; |
1603 } | 1608 } |
1604 | 1609 |
1605 } // namespace compiler | 1610 } // namespace compiler |
1606 } // namespace internal | 1611 } // namespace internal |
1607 } // namespace v8 | 1612 } // namespace v8 |
OLD | NEW |