| 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/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 #include "src/ppc/frames-ppc.h" | 9 #include "src/ppc/frames-ppc.h" |
| 10 | 10 |
| (...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1287 g.UseFixed(node->InputAt(0), d1), | 1287 g.UseFixed(node->InputAt(0), d1), |
| 1288 g.UseFixed(node->InputAt(1), d2))->MarkAsCall(); | 1288 g.UseFixed(node->InputAt(1), d2))->MarkAsCall(); |
| 1289 } | 1289 } |
| 1290 | 1290 |
| 1291 | 1291 |
| 1292 void InstructionSelector::VisitFloat32Max(Node* node) { UNREACHABLE(); } | 1292 void InstructionSelector::VisitFloat32Max(Node* node) { UNREACHABLE(); } |
| 1293 | 1293 |
| 1294 | 1294 |
| 1295 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); } | 1295 void InstructionSelector::VisitFloat64Max(Node* node) { UNREACHABLE(); } |
| 1296 | 1296 |
| 1297 void InstructionSelector::VisitFloat64SilenceNaN(Node* node) { |
| 1298 VisitRR(this, kPPC_Float64SilenceNaN, node); |
| 1299 } |
| 1300 |
| 1297 | 1301 |
| 1298 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); } | 1302 void InstructionSelector::VisitFloat32Min(Node* node) { UNREACHABLE(); } |
| 1299 | 1303 |
| 1300 | 1304 |
| 1301 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); } | 1305 void InstructionSelector::VisitFloat64Min(Node* node) { UNREACHABLE(); } |
| 1302 | 1306 |
| 1303 | 1307 |
| 1304 void InstructionSelector::VisitFloat32Abs(Node* node) { | 1308 void InstructionSelector::VisitFloat32Abs(Node* node) { |
| 1305 VisitRR(this, kPPC_AbsDouble | MiscField::encode(1), node); | 1309 VisitRR(this, kPPC_AbsDouble | MiscField::encode(1), node); |
| 1306 } | 1310 } |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2010 // static | 2014 // static |
| 2011 MachineOperatorBuilder::AlignmentRequirements | 2015 MachineOperatorBuilder::AlignmentRequirements |
| 2012 InstructionSelector::AlignmentRequirements() { | 2016 InstructionSelector::AlignmentRequirements() { |
| 2013 return MachineOperatorBuilder::AlignmentRequirements:: | 2017 return MachineOperatorBuilder::AlignmentRequirements:: |
| 2014 FullUnalignedAccessSupport(); | 2018 FullUnalignedAccessSupport(); |
| 2015 } | 2019 } |
| 2016 | 2020 |
| 2017 } // namespace compiler | 2021 } // namespace compiler |
| 2018 } // namespace internal | 2022 } // namespace internal |
| 2019 } // namespace v8 | 2023 } // namespace v8 |
| OLD | NEW |