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

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

Issue 1066393002: [turbofan] Add new Float32Abs and Float64Abs operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 5 years, 8 months 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/node-matchers.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/bits.h" 5 #include "src/base/bits.h"
6 #include "src/compiler/instruction-selector-impl.h" 6 #include "src/compiler/instruction-selector-impl.h"
7 #include "src/compiler/node-matchers.h" 7 #include "src/compiler/node-matchers.h"
8 #include "src/compiler/node-properties.h" 8 #include "src/compiler/node-properties.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 605
606 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); } 606 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); }
607 607
608 608
609 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); } 609 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); }
610 610
611 611
612 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); } 612 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); }
613 613
614 614
615 void InstructionSelector::VisitFloat32Abs(Node* node) { UNREACHABLE(); }
616
617
618 void InstructionSelector::VisitFloat64Abs(Node* node) { UNREACHABLE(); }
619
620
615 void InstructionSelector::VisitFloat32Sqrt(Node* node) { 621 void InstructionSelector::VisitFloat32Sqrt(Node* node) {
616 VisitRR(this, kMips64SqrtS, node); 622 VisitRR(this, kMips64SqrtS, node);
617 } 623 }
618 624
619 625
620 void InstructionSelector::VisitFloat64Sqrt(Node* node) { 626 void InstructionSelector::VisitFloat64Sqrt(Node* node) {
621 VisitRR(this, kMips64SqrtD, node); 627 VisitRR(this, kMips64SqrtD, node);
622 } 628 }
623 629
624 630
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1176 // static 1182 // static
1177 MachineOperatorBuilder::Flags 1183 MachineOperatorBuilder::Flags
1178 InstructionSelector::SupportedMachineOperatorFlags() { 1184 InstructionSelector::SupportedMachineOperatorFlags() {
1179 return MachineOperatorBuilder::kFloat64RoundDown | 1185 return MachineOperatorBuilder::kFloat64RoundDown |
1180 MachineOperatorBuilder::kFloat64RoundTruncate; 1186 MachineOperatorBuilder::kFloat64RoundTruncate;
1181 } 1187 }
1182 1188
1183 } // namespace compiler 1189 } // namespace compiler
1184 } // namespace internal 1190 } // namespace internal
1185 } // namespace v8 1191 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/node-matchers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698