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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) { | 630 void InstructionSelector::VisitRoundUint64ToFloat64(Node* node) { |
631 UNIMPLEMENTED(); | 631 VisitRR(this, kMips64CvtDUl, node); |
632 } | 632 } |
633 | 633 |
634 | 634 |
635 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) { | 635 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) { |
636 VisitRR(this, kMips64Float64ExtractLowWord32, node); | 636 VisitRR(this, kMips64Float64ExtractLowWord32, node); |
637 } | 637 } |
638 | 638 |
639 | 639 |
640 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) { | 640 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) { |
641 VisitRR(this, kMips64BitcastDL, node); | 641 VisitRR(this, kMips64BitcastDL, node); |
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1391 MachineOperatorBuilder::kFloat64Max | | 1391 MachineOperatorBuilder::kFloat64Max | |
1392 MachineOperatorBuilder::kFloat32Min | | 1392 MachineOperatorBuilder::kFloat32Min | |
1393 MachineOperatorBuilder::kFloat32Max | | 1393 MachineOperatorBuilder::kFloat32Max | |
1394 MachineOperatorBuilder::kFloat64RoundDown | | 1394 MachineOperatorBuilder::kFloat64RoundDown | |
1395 MachineOperatorBuilder::kFloat64RoundTruncate; | 1395 MachineOperatorBuilder::kFloat64RoundTruncate; |
1396 } | 1396 } |
1397 | 1397 |
1398 } // namespace compiler | 1398 } // namespace compiler |
1399 } // namespace internal | 1399 } // namespace internal |
1400 } // namespace v8 | 1400 } // namespace v8 |
OLD | NEW |