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

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

Issue 1283183002: Realize IWYU pattern for frames-inl.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/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 10
10 namespace v8 { 11 namespace v8 {
11 namespace internal { 12 namespace internal {
12 namespace compiler { 13 namespace compiler {
13 14
14 enum ImmediateMode { 15 enum ImmediateMode {
15 kInt16Imm, 16 kInt16Imm,
16 kInt16Imm_Unsigned, 17 kInt16Imm_Unsigned,
17 kInt16Imm_Negate, 18 kInt16Imm_Negate,
18 kInt16Imm_4ByteAligned, 19 kInt16Imm_4ByteAligned,
(...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 InstructionSelector::SupportedMachineOperatorFlags() { 1659 InstructionSelector::SupportedMachineOperatorFlags() {
1659 return MachineOperatorBuilder::kFloat64RoundDown | 1660 return MachineOperatorBuilder::kFloat64RoundDown |
1660 MachineOperatorBuilder::kFloat64RoundTruncate | 1661 MachineOperatorBuilder::kFloat64RoundTruncate |
1661 MachineOperatorBuilder::kFloat64RoundTiesAway; 1662 MachineOperatorBuilder::kFloat64RoundTiesAway;
1662 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. 1663 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f.
1663 } 1664 }
1664 1665
1665 } // namespace compiler 1666 } // namespace compiler
1666 } // namespace internal 1667 } // namespace internal
1667 } // namespace v8 1668 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698