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

Side by Side Diff: src/compiler/ppc/instruction-selector-ppc.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
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 "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
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
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/s390/instruction-selector-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698