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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 void InstructionSelector::VisitChangeInt32ToFloat64(Node* node) { | 805 void InstructionSelector::VisitChangeInt32ToFloat64(Node* node) { |
806 VisitRR(this, kMips64CvtDW, node); | 806 VisitRR(this, kMips64CvtDW, node); |
807 } | 807 } |
808 | 808 |
809 | 809 |
810 void InstructionSelector::VisitChangeUint32ToFloat64(Node* node) { | 810 void InstructionSelector::VisitChangeUint32ToFloat64(Node* node) { |
811 VisitRR(this, kMips64CvtDUw, node); | 811 VisitRR(this, kMips64CvtDUw, node); |
812 } | 812 } |
813 | 813 |
814 | 814 |
| 815 void InstructionSelector::VisitTruncateFloat32ToInt32(Node* node) { |
| 816 VisitRR(this, kMips64TruncWS, node); |
| 817 } |
| 818 |
| 819 |
815 void InstructionSelector::VisitChangeFloat64ToInt32(Node* node) { | 820 void InstructionSelector::VisitChangeFloat64ToInt32(Node* node) { |
816 Mips64OperandGenerator g(this); | 821 Mips64OperandGenerator g(this); |
817 Node* value = node->InputAt(0); | 822 Node* value = node->InputAt(0); |
818 // Match ChangeFloat64ToInt32(Float64Round##OP) to corresponding instruction | 823 // Match ChangeFloat64ToInt32(Float64Round##OP) to corresponding instruction |
819 // which does rounding and conversion to integer format. | 824 // which does rounding and conversion to integer format. |
820 if (CanCover(node, value)) { | 825 if (CanCover(node, value)) { |
821 switch (value->opcode()) { | 826 switch (value->opcode()) { |
822 case IrOpcode::kFloat64RoundDown: | 827 case IrOpcode::kFloat64RoundDown: |
823 Emit(kMips64FloorWD, g.DefineAsRegister(node), | 828 Emit(kMips64FloorWD, g.DefineAsRegister(node), |
824 g.UseRegister(value->InputAt(0))); | 829 g.UseRegister(value->InputAt(0))); |
(...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1859 MachineOperatorBuilder::kFloat32RoundUp | | 1864 MachineOperatorBuilder::kFloat32RoundUp | |
1860 MachineOperatorBuilder::kFloat64RoundTruncate | | 1865 MachineOperatorBuilder::kFloat64RoundTruncate | |
1861 MachineOperatorBuilder::kFloat32RoundTruncate | | 1866 MachineOperatorBuilder::kFloat32RoundTruncate | |
1862 MachineOperatorBuilder::kFloat64RoundTiesEven | | 1867 MachineOperatorBuilder::kFloat64RoundTiesEven | |
1863 MachineOperatorBuilder::kFloat32RoundTiesEven; | 1868 MachineOperatorBuilder::kFloat32RoundTiesEven; |
1864 } | 1869 } |
1865 | 1870 |
1866 } // namespace compiler | 1871 } // namespace compiler |
1867 } // namespace internal | 1872 } // namespace internal |
1868 } // namespace v8 | 1873 } // namespace v8 |
OLD | NEW |