Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/compiler/arm/instruction-selector-arm.cc

Issue 2060233002: [turbofan] Prevent storing signalling NaNs into holey double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Test Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
1998 // static 2002 // static
1999 MachineOperatorBuilder::AlignmentRequirements 2003 MachineOperatorBuilder::AlignmentRequirements
2000 InstructionSelector::AlignmentRequirements() { 2004 InstructionSelector::AlignmentRequirements() {
2001 return MachineOperatorBuilder::AlignmentRequirements:: 2005 return MachineOperatorBuilder::AlignmentRequirements::
2002 FullUnalignedAccessSupport(); 2006 FullUnalignedAccessSupport();
2003 } 2007 }
2004 2008
2005 } // namespace compiler 2009 } // namespace compiler
2006 } // namespace internal 2010 } // namespace internal
2007 } // namespace v8 2011 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698