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

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

Issue 773803003: [turbofan] Enable DivIsSafe flag for arm64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « no previous file | 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/compiler/instruction-selector-impl.h" 5 #include "src/compiler/instruction-selector-impl.h"
6 #include "src/compiler/node-matchers.h" 6 #include "src/compiler/node-matchers.h"
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 1510 matching lines...) Expand 10 before | Expand all | Expand 10 after
1521 } 1521 }
1522 1522
1523 1523
1524 // static 1524 // static
1525 MachineOperatorBuilder::Flags 1525 MachineOperatorBuilder::Flags
1526 InstructionSelector::SupportedMachineOperatorFlags() { 1526 InstructionSelector::SupportedMachineOperatorFlags() {
1527 return MachineOperatorBuilder::kFloat64Floor | 1527 return MachineOperatorBuilder::kFloat64Floor |
1528 MachineOperatorBuilder::kFloat64Ceil | 1528 MachineOperatorBuilder::kFloat64Ceil |
1529 MachineOperatorBuilder::kFloat64RoundTruncate | 1529 MachineOperatorBuilder::kFloat64RoundTruncate |
1530 MachineOperatorBuilder::kFloat64RoundTiesAway | 1530 MachineOperatorBuilder::kFloat64RoundTiesAway |
1531 MachineOperatorBuilder::kWord32ShiftIsSafe; 1531 MachineOperatorBuilder::kWord32ShiftIsSafe |
1532 MachineOperatorBuilder::kInt32DivIsSafe |
1533 MachineOperatorBuilder::kUint32DivIsSafe;
1532 } 1534 }
1533 } // namespace compiler 1535 } // namespace compiler
1534 } // namespace internal 1536 } // namespace internal
1535 } // namespace v8 1537 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698