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/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 #include "src/compiler/node-properties.h" | 7 #include "src/compiler/node-properties.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 2725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2736 MachineOperatorBuilder::kFloat64RoundUp | | 2736 MachineOperatorBuilder::kFloat64RoundUp | |
2737 MachineOperatorBuilder::kFloat32RoundTruncate | | 2737 MachineOperatorBuilder::kFloat32RoundTruncate | |
2738 MachineOperatorBuilder::kFloat64RoundTruncate | | 2738 MachineOperatorBuilder::kFloat64RoundTruncate | |
2739 MachineOperatorBuilder::kFloat64RoundTiesAway | | 2739 MachineOperatorBuilder::kFloat64RoundTiesAway | |
2740 MachineOperatorBuilder::kFloat32RoundTiesEven | | 2740 MachineOperatorBuilder::kFloat32RoundTiesEven | |
2741 MachineOperatorBuilder::kFloat64RoundTiesEven | | 2741 MachineOperatorBuilder::kFloat64RoundTiesEven | |
2742 MachineOperatorBuilder::kWord32ShiftIsSafe | | 2742 MachineOperatorBuilder::kWord32ShiftIsSafe | |
2743 MachineOperatorBuilder::kInt32DivIsSafe | | 2743 MachineOperatorBuilder::kInt32DivIsSafe | |
2744 MachineOperatorBuilder::kUint32DivIsSafe | | 2744 MachineOperatorBuilder::kUint32DivIsSafe | |
2745 MachineOperatorBuilder::kWord32ReverseBits | | 2745 MachineOperatorBuilder::kWord32ReverseBits | |
2746 MachineOperatorBuilder::kWord64ReverseBits | | 2746 MachineOperatorBuilder::kWord64ReverseBits; |
2747 MachineOperatorBuilder::kFloat32Neg | | |
2748 MachineOperatorBuilder::kFloat64Neg; | |
2749 } | 2747 } |
2750 | 2748 |
2751 // static | 2749 // static |
2752 MachineOperatorBuilder::AlignmentRequirements | 2750 MachineOperatorBuilder::AlignmentRequirements |
2753 InstructionSelector::AlignmentRequirements() { | 2751 InstructionSelector::AlignmentRequirements() { |
2754 return MachineOperatorBuilder::AlignmentRequirements:: | 2752 return MachineOperatorBuilder::AlignmentRequirements:: |
2755 FullUnalignedAccessSupport(); | 2753 FullUnalignedAccessSupport(); |
2756 } | 2754 } |
2757 | 2755 |
2758 } // namespace compiler | 2756 } // namespace compiler |
2759 } // namespace internal | 2757 } // namespace internal |
2760 } // namespace v8 | 2758 } // namespace v8 |
OLD | NEW |