| 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/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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 | 656 |
| 657 | 657 |
| 658 void InstructionSelector::VisitFloat32RoundUp(Node* node) { UNREACHABLE(); } | 658 void InstructionSelector::VisitFloat32RoundUp(Node* node) { UNREACHABLE(); } |
| 659 | 659 |
| 660 | 660 |
| 661 void InstructionSelector::VisitFloat64RoundUp(Node* node) { | 661 void InstructionSelector::VisitFloat64RoundUp(Node* node) { |
| 662 VisitRR(this, kMipsFloat64RoundUp, node); | 662 VisitRR(this, kMipsFloat64RoundUp, node); |
| 663 } | 663 } |
| 664 | 664 |
| 665 | 665 |
| 666 void InstructionSelector::VisitFloat32RoundTruncate(Node* node) { |
| 667 UNREACHABLE(); |
| 668 } |
| 669 |
| 670 |
| 666 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { | 671 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { |
| 667 VisitRR(this, kMipsFloat64RoundTruncate, node); | 672 VisitRR(this, kMipsFloat64RoundTruncate, node); |
| 668 } | 673 } |
| 669 | 674 |
| 670 | 675 |
| 671 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { | 676 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { |
| 672 UNREACHABLE(); | 677 UNREACHABLE(); |
| 673 } | 678 } |
| 674 | 679 |
| 675 | 680 |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1188 } | 1193 } |
| 1189 return flags | MachineOperatorBuilder::kFloat64Min | | 1194 return flags | MachineOperatorBuilder::kFloat64Min | |
| 1190 MachineOperatorBuilder::kFloat64Max | | 1195 MachineOperatorBuilder::kFloat64Max | |
| 1191 MachineOperatorBuilder::kFloat32Min | | 1196 MachineOperatorBuilder::kFloat32Min | |
| 1192 MachineOperatorBuilder::kFloat32Max; | 1197 MachineOperatorBuilder::kFloat32Max; |
| 1193 } | 1198 } |
| 1194 | 1199 |
| 1195 } // namespace compiler | 1200 } // namespace compiler |
| 1196 } // namespace internal | 1201 } // namespace internal |
| 1197 } // namespace v8 | 1202 } // namespace v8 |
| OLD | NEW |