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/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 Loading... |
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 Loading... |
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 |
OLD | NEW |