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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 } | 835 } |
836 VisitRR(this, kMips64TruncLD, node); | 836 VisitRR(this, kMips64TruncLD, node); |
837 } | 837 } |
838 | 838 |
839 | 839 |
840 void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) { | 840 void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) { |
841 VisitRR(this, kMips64TruncUlS, node); | 841 VisitRR(this, kMips64TruncUlS, node); |
842 } | 842 } |
843 | 843 |
844 | 844 |
845 void InstructionSelector::VisitTruncateFloat64ToUint64(Node* node) { | 845 void InstructionSelector::VisitTryTruncateFloat64ToUint64(Node* node) { |
| 846 if (NodeProperties::FindProjection(node, 1)) { |
| 847 // TODO(mips): implement the second return value. |
| 848 UNIMPLEMENTED(); |
| 849 } |
846 VisitRR(this, kMips64TruncUlD, node); | 850 VisitRR(this, kMips64TruncUlD, node); |
847 } | 851 } |
848 | 852 |
849 | 853 |
850 void InstructionSelector::VisitChangeInt32ToInt64(Node* node) { | 854 void InstructionSelector::VisitChangeInt32ToInt64(Node* node) { |
851 Mips64OperandGenerator g(this); | 855 Mips64OperandGenerator g(this); |
852 Emit(kMips64Shl, g.DefineAsRegister(node), g.UseRegister(node->InputAt(0)), | 856 Emit(kMips64Shl, g.DefineAsRegister(node), g.UseRegister(node->InputAt(0)), |
853 g.TempImmediate(0)); | 857 g.TempImmediate(0)); |
854 } | 858 } |
855 | 859 |
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1718 MachineOperatorBuilder::kFloat32RoundUp | | 1722 MachineOperatorBuilder::kFloat32RoundUp | |
1719 MachineOperatorBuilder::kFloat64RoundTruncate | | 1723 MachineOperatorBuilder::kFloat64RoundTruncate | |
1720 MachineOperatorBuilder::kFloat32RoundTruncate | | 1724 MachineOperatorBuilder::kFloat32RoundTruncate | |
1721 MachineOperatorBuilder::kFloat64RoundTiesEven | | 1725 MachineOperatorBuilder::kFloat64RoundTiesEven | |
1722 MachineOperatorBuilder::kFloat32RoundTiesEven; | 1726 MachineOperatorBuilder::kFloat32RoundTiesEven; |
1723 } | 1727 } |
1724 | 1728 |
1725 } // namespace compiler | 1729 } // namespace compiler |
1726 } // namespace internal | 1730 } // namespace internal |
1727 } // namespace v8 | 1731 } // namespace v8 |
OLD | NEW |