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/compiler/instruction-selector-impl.h" | 6 #include "src/compiler/instruction-selector-impl.h" |
7 #include "src/compiler/node-matchers.h" | 7 #include "src/compiler/node-matchers.h" |
8 #include "src/compiler/node-properties.h" | 8 #include "src/compiler/node-properties.h" |
9 #include "src/ppc/frames-ppc.h" | 9 #include "src/ppc/frames-ppc.h" |
10 | 10 |
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
938 void InstructionSelector::VisitChangeFloat32ToFloat64(Node* node) { | 938 void InstructionSelector::VisitChangeFloat32ToFloat64(Node* node) { |
939 VisitRR(this, kPPC_Float32ToDouble, node); | 939 VisitRR(this, kPPC_Float32ToDouble, node); |
940 } | 940 } |
941 | 941 |
942 | 942 |
943 void InstructionSelector::VisitRoundInt32ToFloat32(Node* node) { | 943 void InstructionSelector::VisitRoundInt32ToFloat32(Node* node) { |
944 VisitRR(this, kPPC_Int32ToFloat32, node); | 944 VisitRR(this, kPPC_Int32ToFloat32, node); |
945 } | 945 } |
946 | 946 |
947 | 947 |
| 948 void InstructionSelector::VisitRoundUint32ToFloat32(Node* node) { |
| 949 UNIMPLEMENTED(); |
| 950 } |
| 951 |
| 952 |
948 void InstructionSelector::VisitChangeInt32ToFloat64(Node* node) { | 953 void InstructionSelector::VisitChangeInt32ToFloat64(Node* node) { |
949 VisitRR(this, kPPC_Int32ToDouble, node); | 954 VisitRR(this, kPPC_Int32ToDouble, node); |
950 } | 955 } |
951 | 956 |
952 | 957 |
953 void InstructionSelector::VisitChangeUint32ToFloat64(Node* node) { | 958 void InstructionSelector::VisitChangeUint32ToFloat64(Node* node) { |
954 VisitRR(this, kPPC_Uint32ToDouble, node); | 959 VisitRR(this, kPPC_Uint32ToDouble, node); |
955 } | 960 } |
956 | 961 |
957 | 962 |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1773 MachineOperatorBuilder::kFloat64RoundTruncate | | 1778 MachineOperatorBuilder::kFloat64RoundTruncate | |
1774 MachineOperatorBuilder::kFloat64RoundTiesAway | | 1779 MachineOperatorBuilder::kFloat64RoundTiesAway | |
1775 MachineOperatorBuilder::kWord32Popcnt | | 1780 MachineOperatorBuilder::kWord32Popcnt | |
1776 MachineOperatorBuilder::kWord64Popcnt; | 1781 MachineOperatorBuilder::kWord64Popcnt; |
1777 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. | 1782 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. |
1778 } | 1783 } |
1779 | 1784 |
1780 } // namespace compiler | 1785 } // namespace compiler |
1781 } // namespace internal | 1786 } // namespace internal |
1782 } // namespace v8 | 1787 } // namespace v8 |
OLD | NEW |