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 <algorithm> | 5 #include <algorithm> |
6 | 6 |
7 #include "src/base/adapters.h" | 7 #include "src/base/adapters.h" |
8 #include "src/compiler/instruction-selector-impl.h" | 8 #include "src/compiler/instruction-selector-impl.h" |
9 #include "src/compiler/node-matchers.h" | 9 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
(...skipping 2138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2149 MachineOperatorBuilder::kFloat32RoundUp | | 2149 MachineOperatorBuilder::kFloat32RoundUp | |
2150 MachineOperatorBuilder::kFloat64RoundUp | | 2150 MachineOperatorBuilder::kFloat64RoundUp | |
2151 MachineOperatorBuilder::kFloat32RoundTruncate | | 2151 MachineOperatorBuilder::kFloat32RoundTruncate | |
2152 MachineOperatorBuilder::kFloat64RoundTruncate | | 2152 MachineOperatorBuilder::kFloat64RoundTruncate | |
2153 MachineOperatorBuilder::kFloat32RoundTiesEven | | 2153 MachineOperatorBuilder::kFloat32RoundTiesEven | |
2154 MachineOperatorBuilder::kFloat64RoundTiesEven; | 2154 MachineOperatorBuilder::kFloat64RoundTiesEven; |
2155 } | 2155 } |
2156 return flags; | 2156 return flags; |
2157 } | 2157 } |
2158 | 2158 |
| 2159 // static |
| 2160 MachineOperatorBuilder::AlignmentRequirements |
| 2161 InstructionSelector::AlignmentRequirements() { |
| 2162 return MachineOperatorBuilder::AlignmentRequirements:: |
| 2163 FullUnalignedAccessSupport(); |
| 2164 } |
| 2165 |
2159 } // namespace compiler | 2166 } // namespace compiler |
2160 } // namespace internal | 2167 } // namespace internal |
2161 } // namespace v8 | 2168 } // namespace v8 |
OLD | NEW |