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

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

Issue 1477753002: [turbofan] Implemented the optional Float32RoundTiesEven operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@f32trunc
Patch Set: Merging with the changed codebase 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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { 1005 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) {
1006 VisitRR(this, kMips64Float64RoundTruncate, node); 1006 VisitRR(this, kMips64Float64RoundTruncate, node);
1007 } 1007 }
1008 1008
1009 1009
1010 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { 1010 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) {
1011 UNREACHABLE(); 1011 UNREACHABLE();
1012 } 1012 }
1013 1013
1014 1014
1015 void InstructionSelector::VisitFloat32RoundTiesEven(Node* node) {
1016 UNREACHABLE();
1017 }
1018
1019
1015 void InstructionSelector::VisitFloat64RoundTiesEven(Node* node) { 1020 void InstructionSelector::VisitFloat64RoundTiesEven(Node* node) {
1016 VisitRR(this, kMips64Float64RoundTiesEven, node); 1021 VisitRR(this, kMips64Float64RoundTiesEven, node);
1017 } 1022 }
1018 1023
1019 1024
1020 void InstructionSelector::EmitPrepareArguments(NodeVector* arguments, 1025 void InstructionSelector::EmitPrepareArguments(NodeVector* arguments,
1021 const CallDescriptor* descriptor, 1026 const CallDescriptor* descriptor,
1022 Node* node) { 1027 Node* node) {
1023 Mips64OperandGenerator g(this); 1028 Mips64OperandGenerator g(this);
1024 1029
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 MachineOperatorBuilder::kFloat32Max | 1603 MachineOperatorBuilder::kFloat32Max |
1599 MachineOperatorBuilder::kFloat64RoundDown | 1604 MachineOperatorBuilder::kFloat64RoundDown |
1600 MachineOperatorBuilder::kFloat64RoundUp | 1605 MachineOperatorBuilder::kFloat64RoundUp |
1601 MachineOperatorBuilder::kFloat64RoundTruncate | 1606 MachineOperatorBuilder::kFloat64RoundTruncate |
1602 MachineOperatorBuilder::kFloat64RoundTiesEven; 1607 MachineOperatorBuilder::kFloat64RoundTiesEven;
1603 } 1608 }
1604 1609
1605 } // namespace compiler 1610 } // namespace compiler
1606 } // namespace internal 1611 } // namespace internal
1607 } // namespace v8 1612 } // 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