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

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

Issue 732103002: [turbofan] remove redundant '& 0x1F' for shifts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments + ror fix Created 6 years, 1 month 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 | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | 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 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 VisitFloat64Compare(this, node, &cont); 1407 VisitFloat64Compare(this, node, &cont);
1408 } 1408 }
1409 1409
1410 1410
1411 // static 1411 // static
1412 MachineOperatorBuilder::Flags 1412 MachineOperatorBuilder::Flags
1413 InstructionSelector::SupportedMachineOperatorFlags() { 1413 InstructionSelector::SupportedMachineOperatorFlags() {
1414 return MachineOperatorBuilder::kFloat64Floor | 1414 return MachineOperatorBuilder::kFloat64Floor |
1415 MachineOperatorBuilder::kFloat64Ceil | 1415 MachineOperatorBuilder::kFloat64Ceil |
1416 MachineOperatorBuilder::kFloat64RoundTruncate | 1416 MachineOperatorBuilder::kFloat64RoundTruncate |
1417 MachineOperatorBuilder::kFloat64RoundTiesAway; 1417 MachineOperatorBuilder::kFloat64RoundTiesAway |
1418 MachineOperatorBuilder::kWord32ShiftIsSafe;
1418 } 1419 }
1419 } // namespace compiler 1420 } // namespace compiler
1420 } // namespace internal 1421 } // namespace internal
1421 } // namespace v8 1422 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698