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

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: 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
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 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 case IrOpcode::kFloat64InsertHighWord32: 1171 case IrOpcode::kFloat64InsertHighWord32:
1172 case IrOpcode::kInt32PairAdd: 1172 case IrOpcode::kInt32PairAdd:
1173 case IrOpcode::kInt32PairSub: 1173 case IrOpcode::kInt32PairSub:
1174 case IrOpcode::kInt32PairMul: 1174 case IrOpcode::kInt32PairMul:
1175 case IrOpcode::kWord32PairShl: 1175 case IrOpcode::kWord32PairShl:
1176 case IrOpcode::kWord32PairShr: 1176 case IrOpcode::kWord32PairShr:
1177 case IrOpcode::kWord32PairSar: 1177 case IrOpcode::kWord32PairSar:
1178 case IrOpcode::kLoadStackPointer: 1178 case IrOpcode::kLoadStackPointer:
1179 case IrOpcode::kLoadFramePointer: 1179 case IrOpcode::kLoadFramePointer:
1180 case IrOpcode::kLoadParentFramePointer: 1180 case IrOpcode::kLoadParentFramePointer:
1181 case IrOpcode::kUnalignedLoad:
1182 case IrOpcode::kUnalignedStore:
1181 case IrOpcode::kCheckedLoad: 1183 case IrOpcode::kCheckedLoad:
1182 case IrOpcode::kCheckedStore: 1184 case IrOpcode::kCheckedStore:
1183 case IrOpcode::kAtomicLoad: 1185 case IrOpcode::kAtomicLoad:
1184 case IrOpcode::kAtomicStore: 1186 case IrOpcode::kAtomicStore:
1185 1187
1186 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: 1188 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name:
1187 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) 1189 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE)
1188 #undef SIMD_MACHINE_OP_CASE 1190 #undef SIMD_MACHINE_OP_CASE
1189 1191
1190 // TODO(rossberg): Check. 1192 // TODO(rossberg): Check.
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1509 replacement->op()->EffectOutputCount() > 0); 1511 replacement->op()->EffectOutputCount() > 0);
1510 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1512 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1511 replacement->opcode() == IrOpcode::kFrameState); 1513 replacement->opcode() == IrOpcode::kFrameState);
1512 } 1514 }
1513 1515
1514 #endif // DEBUG 1516 #endif // DEBUG
1515 1517
1516 } // namespace compiler 1518 } // namespace compiler
1517 } // namespace internal 1519 } // namespace internal
1518 } // namespace v8 1520 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698