| 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 #include "src/ppc/frames-ppc.h" |
| 10 | 10 |
| (...skipping 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1984 MachineOperatorBuilder::kFloat32RoundUp | | 1984 MachineOperatorBuilder::kFloat32RoundUp | |
| 1985 MachineOperatorBuilder::kFloat64RoundUp | | 1985 MachineOperatorBuilder::kFloat64RoundUp | |
| 1986 MachineOperatorBuilder::kFloat32RoundTruncate | | 1986 MachineOperatorBuilder::kFloat32RoundTruncate | |
| 1987 MachineOperatorBuilder::kFloat64RoundTruncate | | 1987 MachineOperatorBuilder::kFloat64RoundTruncate | |
| 1988 MachineOperatorBuilder::kFloat64RoundTiesAway | | 1988 MachineOperatorBuilder::kFloat64RoundTiesAway | |
| 1989 MachineOperatorBuilder::kWord32Popcnt | | 1989 MachineOperatorBuilder::kWord32Popcnt | |
| 1990 MachineOperatorBuilder::kWord64Popcnt; | 1990 MachineOperatorBuilder::kWord64Popcnt; |
| 1991 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. | 1991 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. |
| 1992 } | 1992 } |
| 1993 | 1993 |
| 1994 // static |
| 1995 MachineOperatorBuilder::AlignmentRequirements |
| 1996 InstructionSelector::AlignmentRequirements() { |
| 1997 return MachineOperatorBuilder::AlignmentRequirements:: |
| 1998 FullUnalignedAccessSupport(); |
| 1999 } |
| 2000 |
| 1994 } // namespace compiler | 2001 } // namespace compiler |
| 1995 } // namespace internal | 2002 } // namespace internal |
| 1996 } // namespace v8 | 2003 } // namespace v8 |
| OLD | NEW |