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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 void InstructionSelector::VisitRoundInt64ToFloat32(Node* node) { | 620 void InstructionSelector::VisitRoundInt64ToFloat32(Node* node) { |
621 VisitRR(this, kMips64CvtSL, node); | 621 VisitRR(this, kMips64CvtSL, node); |
622 } | 622 } |
623 | 623 |
624 | 624 |
625 void InstructionSelector::VisitRoundInt64ToFloat64(Node* node) { | 625 void InstructionSelector::VisitRoundInt64ToFloat64(Node* node) { |
626 VisitRR(this, kMips64CvtDL, node); | 626 VisitRR(this, kMips64CvtDL, node); |
627 } | 627 } |
628 | 628 |
629 | 629 |
| 630 void InstructionSelector::VisitRoundUint64ToFloat64(Node* node) { |
| 631 UNIMPLEMENTED(); |
| 632 } |
| 633 |
| 634 |
630 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) { | 635 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) { |
631 VisitRR(this, kMips64Float64ExtractLowWord32, node); | 636 VisitRR(this, kMips64Float64ExtractLowWord32, node); |
632 } | 637 } |
633 | 638 |
634 | 639 |
635 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) { | 640 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) { |
636 VisitRR(this, kMips64BitcastDL, node); | 641 VisitRR(this, kMips64BitcastDL, node); |
637 } | 642 } |
638 | 643 |
639 | 644 |
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 MachineOperatorBuilder::kFloat64Max | | 1391 MachineOperatorBuilder::kFloat64Max | |
1387 MachineOperatorBuilder::kFloat32Min | | 1392 MachineOperatorBuilder::kFloat32Min | |
1388 MachineOperatorBuilder::kFloat32Max | | 1393 MachineOperatorBuilder::kFloat32Max | |
1389 MachineOperatorBuilder::kFloat64RoundDown | | 1394 MachineOperatorBuilder::kFloat64RoundDown | |
1390 MachineOperatorBuilder::kFloat64RoundTruncate; | 1395 MachineOperatorBuilder::kFloat64RoundTruncate; |
1391 } | 1396 } |
1392 | 1397 |
1393 } // namespace compiler | 1398 } // namespace compiler |
1394 } // namespace internal | 1399 } // namespace internal |
1395 } // namespace v8 | 1400 } // namespace v8 |
OLD | NEW |