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

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

Issue 1474963002: [turbofan] Implemented the optional Float32RoundUp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@f32rounddown
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
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 982
983 983
984 void InstructionSelector::VisitFloat32RoundDown(Node* node) { UNIMPLEMENTED(); } 984 void InstructionSelector::VisitFloat32RoundDown(Node* node) { UNIMPLEMENTED(); }
985 985
986 986
987 void InstructionSelector::VisitFloat64RoundDown(Node* node) { 987 void InstructionSelector::VisitFloat64RoundDown(Node* node) {
988 VisitRR(this, kMips64Float64RoundDown, node); 988 VisitRR(this, kMips64Float64RoundDown, node);
989 } 989 }
990 990
991 991
992 void InstructionSelector::VisitFloat32RoundUp(Node* node) { UNIMPLEMENTED(); }
993
994
992 void InstructionSelector::VisitFloat64RoundUp(Node* node) { 995 void InstructionSelector::VisitFloat64RoundUp(Node* node) {
993 VisitRR(this, kMips64Float64RoundUp, node); 996 VisitRR(this, kMips64Float64RoundUp, node);
994 } 997 }
995 998
996 999
997 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { 1000 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) {
998 VisitRR(this, kMips64Float64RoundTruncate, node); 1001 VisitRR(this, kMips64Float64RoundTruncate, node);
999 } 1002 }
1000 1003
1001 1004
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 MachineOperatorBuilder::kFloat32Max | 1593 MachineOperatorBuilder::kFloat32Max |
1591 MachineOperatorBuilder::kFloat64RoundDown | 1594 MachineOperatorBuilder::kFloat64RoundDown |
1592 MachineOperatorBuilder::kFloat64RoundUp | 1595 MachineOperatorBuilder::kFloat64RoundUp |
1593 MachineOperatorBuilder::kFloat64RoundTruncate | 1596 MachineOperatorBuilder::kFloat64RoundTruncate |
1594 MachineOperatorBuilder::kFloat64RoundTiesEven; 1597 MachineOperatorBuilder::kFloat64RoundTiesEven;
1595 } 1598 }
1596 1599
1597 } // namespace compiler 1600 } // namespace compiler
1598 } // namespace internal 1601 } // namespace internal
1599 } // namespace v8 1602 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698