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

Side by Side Diff: src/compiler/verifier.cc

Issue 2122853002: Implement UnaligedLoad and UnaligedStore turbofan operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Nits. Fixes some errors Created 4 years, 5 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/typer.cc ('k') | src/compiler/wasm-compiler.h » ('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 "src/compiler/verifier.h" 5 #include "src/compiler/verifier.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <sstream> 10 #include <sstream>
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1177 case IrOpcode::kFloat64InsertHighWord32: 1177 case IrOpcode::kFloat64InsertHighWord32:
1178 case IrOpcode::kInt32PairAdd: 1178 case IrOpcode::kInt32PairAdd:
1179 case IrOpcode::kInt32PairSub: 1179 case IrOpcode::kInt32PairSub:
1180 case IrOpcode::kInt32PairMul: 1180 case IrOpcode::kInt32PairMul:
1181 case IrOpcode::kWord32PairShl: 1181 case IrOpcode::kWord32PairShl:
1182 case IrOpcode::kWord32PairShr: 1182 case IrOpcode::kWord32PairShr:
1183 case IrOpcode::kWord32PairSar: 1183 case IrOpcode::kWord32PairSar:
1184 case IrOpcode::kLoadStackPointer: 1184 case IrOpcode::kLoadStackPointer:
1185 case IrOpcode::kLoadFramePointer: 1185 case IrOpcode::kLoadFramePointer:
1186 case IrOpcode::kLoadParentFramePointer: 1186 case IrOpcode::kLoadParentFramePointer:
1187 case IrOpcode::kUnalignedLoad:
1188 case IrOpcode::kUnalignedStore:
1187 case IrOpcode::kCheckedLoad: 1189 case IrOpcode::kCheckedLoad:
1188 case IrOpcode::kCheckedStore: 1190 case IrOpcode::kCheckedStore:
1189 case IrOpcode::kAtomicLoad: 1191 case IrOpcode::kAtomicLoad:
1190 case IrOpcode::kAtomicStore: 1192 case IrOpcode::kAtomicStore:
1191 1193
1192 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: 1194 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name:
1193 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) 1195 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE)
1194 #undef SIMD_MACHINE_OP_CASE 1196 #undef SIMD_MACHINE_OP_CASE
1195 1197
1196 // TODO(rossberg): Check. 1198 // TODO(rossberg): Check.
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1515 replacement->op()->EffectOutputCount() > 0); 1517 replacement->op()->EffectOutputCount() > 0);
1516 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1518 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1517 replacement->opcode() == IrOpcode::kFrameState); 1519 replacement->opcode() == IrOpcode::kFrameState);
1518 } 1520 }
1519 1521
1520 #endif // DEBUG 1522 #endif // DEBUG
1521 1523
1522 } // namespace compiler 1524 } // namespace compiler
1523 } // namespace internal 1525 } // namespace internal
1524 } // namespace v8 1526 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/wasm-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698