Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: src/compiler/mips64/instruction-selector-mips64.cc

Issue 1495213003: [turbofan] Changed TruncateFloat64ToInt64 to TryTruncateFloat64ToInt64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 759 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 void InstructionSelector::VisitChangeFloat64ToUint32(Node* node) { 770 void InstructionSelector::VisitChangeFloat64ToUint32(Node* node) {
771 VisitRR(this, kMips64TruncUwD, node); 771 VisitRR(this, kMips64TruncUwD, node);
772 } 772 }
773 773
774 774
775 void InstructionSelector::VisitTruncateFloat32ToInt64(Node* node) { 775 void InstructionSelector::VisitTruncateFloat32ToInt64(Node* node) {
776 VisitRR(this, kMips64TruncLS, node); 776 VisitRR(this, kMips64TruncLS, node);
777 } 777 }
778 778
779 779
780 void InstructionSelector::VisitTruncateFloat64ToInt64(Node* node) { 780 void InstructionSelector::VisitTryTruncateFloat64ToInt64(Node* node) {
781 if (NodeProperties::FindProjection(node, 1)) {
782 // TODO(mips): implement the second return value.
783 UNIMPLEMENTED();
784 }
781 VisitRR(this, kMips64TruncLD, node); 785 VisitRR(this, kMips64TruncLD, node);
782 } 786 }
783 787
784 788
785 void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) { 789 void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) {
786 VisitRR(this, kMips64TruncUlS, node); 790 VisitRR(this, kMips64TruncUlS, node);
787 } 791 }
788 792
789 793
790 void InstructionSelector::VisitTruncateFloat64ToUint64(Node* node) { 794 void InstructionSelector::VisitTruncateFloat64ToUint64(Node* node) {
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 MachineOperatorBuilder::kFloat32RoundUp | 1667 MachineOperatorBuilder::kFloat32RoundUp |
1664 MachineOperatorBuilder::kFloat64RoundTruncate | 1668 MachineOperatorBuilder::kFloat64RoundTruncate |
1665 MachineOperatorBuilder::kFloat32RoundTruncate | 1669 MachineOperatorBuilder::kFloat32RoundTruncate |
1666 MachineOperatorBuilder::kFloat64RoundTiesEven | 1670 MachineOperatorBuilder::kFloat64RoundTiesEven |
1667 MachineOperatorBuilder::kFloat32RoundTiesEven; 1671 MachineOperatorBuilder::kFloat32RoundTiesEven;
1668 } 1672 }
1669 1673
1670 } // namespace compiler 1674 } // namespace compiler
1671 } // namespace internal 1675 } // namespace internal
1672 } // namespace v8 1676 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698