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

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

Issue 2069883002: PPC: [turbofan] Prevent storing signalling NaNs into holey double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « src/compiler/ppc/instruction-scheduler-ppc.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
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
OLDNEW
« no previous file with comments | « src/compiler/ppc/instruction-scheduler-ppc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698