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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1367 void InstructionSelector::VisitFloat32Max(Node* node) { | 1367 void InstructionSelector::VisitFloat32Max(Node* node) { |
1368 DCHECK(IsSupported(ARMv8)); | 1368 DCHECK(IsSupported(ARMv8)); |
1369 VisitRRR(this, kArmFloat32Max, node); | 1369 VisitRRR(this, kArmFloat32Max, node); |
1370 } | 1370 } |
1371 | 1371 |
1372 void InstructionSelector::VisitFloat64Max(Node* node) { | 1372 void InstructionSelector::VisitFloat64Max(Node* node) { |
1373 DCHECK(IsSupported(ARMv8)); | 1373 DCHECK(IsSupported(ARMv8)); |
1374 VisitRRR(this, kArmFloat64Max, node); | 1374 VisitRRR(this, kArmFloat64Max, node); |
1375 } | 1375 } |
1376 | 1376 |
| 1377 void InstructionSelector::VisitFloat64SilenceNaN(Node* node) { |
| 1378 VisitRR(this, kArmFloat64SilenceNaN, node); |
| 1379 } |
| 1380 |
1377 void InstructionSelector::VisitFloat32Min(Node* node) { | 1381 void InstructionSelector::VisitFloat32Min(Node* node) { |
1378 DCHECK(IsSupported(ARMv8)); | 1382 DCHECK(IsSupported(ARMv8)); |
1379 VisitRRR(this, kArmFloat32Min, node); | 1383 VisitRRR(this, kArmFloat32Min, node); |
1380 } | 1384 } |
1381 | 1385 |
1382 void InstructionSelector::VisitFloat64Min(Node* node) { | 1386 void InstructionSelector::VisitFloat64Min(Node* node) { |
1383 DCHECK(IsSupported(ARMv8)); | 1387 DCHECK(IsSupported(ARMv8)); |
1384 VisitRRR(this, kArmFloat64Min, node); | 1388 VisitRRR(this, kArmFloat64Min, node); |
1385 } | 1389 } |
1386 | 1390 |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2006 // static | 2010 // static |
2007 MachineOperatorBuilder::AlignmentRequirements | 2011 MachineOperatorBuilder::AlignmentRequirements |
2008 InstructionSelector::AlignmentRequirements() { | 2012 InstructionSelector::AlignmentRequirements() { |
2009 return MachineOperatorBuilder::AlignmentRequirements:: | 2013 return MachineOperatorBuilder::AlignmentRequirements:: |
2010 FullUnalignedAccessSupport(); | 2014 FullUnalignedAccessSupport(); |
2011 } | 2015 } |
2012 | 2016 |
2013 } // namespace compiler | 2017 } // namespace compiler |
2014 } // namespace internal | 2018 } // namespace internal |
2015 } // namespace v8 | 2019 } // namespace v8 |
OLD | NEW |