OLD | NEW |
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 Loading... |
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 |
OLD | NEW |