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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 | 456 |
457 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); } | 457 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); } |
458 | 458 |
459 | 459 |
460 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); } | 460 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); } |
461 | 461 |
462 | 462 |
463 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); } | 463 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); } |
464 | 464 |
465 | 465 |
| 466 void InstructionSelector::VisitFloat32Abs(Node* node) { UNREACHABLE(); } |
| 467 |
| 468 |
| 469 void InstructionSelector::VisitFloat64Abs(Node* node) { UNREACHABLE(); } |
| 470 |
| 471 |
466 void InstructionSelector::VisitFloat32Sqrt(Node* node) { | 472 void InstructionSelector::VisitFloat32Sqrt(Node* node) { |
467 VisitRR(this, kMipsSqrtS, node); | 473 VisitRR(this, kMipsSqrtS, node); |
468 } | 474 } |
469 | 475 |
470 | 476 |
471 void InstructionSelector::VisitFloat64Sqrt(Node* node) { | 477 void InstructionSelector::VisitFloat64Sqrt(Node* node) { |
472 VisitRR(this, kMipsSqrtD, node); | 478 VisitRR(this, kMipsSqrtD, node); |
473 } | 479 } |
474 | 480 |
475 | 481 |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 if (IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)) { | 973 if (IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)) { |
968 return MachineOperatorBuilder::kFloat64RoundDown | | 974 return MachineOperatorBuilder::kFloat64RoundDown | |
969 MachineOperatorBuilder::kFloat64RoundTruncate; | 975 MachineOperatorBuilder::kFloat64RoundTruncate; |
970 } | 976 } |
971 return MachineOperatorBuilder::kNoFlags; | 977 return MachineOperatorBuilder::kNoFlags; |
972 } | 978 } |
973 | 979 |
974 } // namespace compiler | 980 } // namespace compiler |
975 } // namespace internal | 981 } // namespace internal |
976 } // namespace v8 | 982 } // namespace v8 |
OLD | NEW |