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

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

Issue 1928513002: Implement UnalignedLoad and UnalignedStore in WASM using LoadByte/Shift/Or and StoreByte/Shift/And. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix nits. Fix compilation error on Windows compiler Created 4 years, 7 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
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | src/compiler/x87/instruction-selector-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <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
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
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | src/compiler/x87/instruction-selector-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698