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 "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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 case IrOpcode::kInt32PairMul: | 1025 case IrOpcode::kInt32PairMul: |
1026 case IrOpcode::kWord32PairShl: | 1026 case IrOpcode::kWord32PairShl: |
1027 case IrOpcode::kWord32PairShr: | 1027 case IrOpcode::kWord32PairShr: |
1028 case IrOpcode::kWord32PairSar: | 1028 case IrOpcode::kWord32PairSar: |
1029 case IrOpcode::kLoadStackPointer: | 1029 case IrOpcode::kLoadStackPointer: |
1030 case IrOpcode::kLoadFramePointer: | 1030 case IrOpcode::kLoadFramePointer: |
1031 case IrOpcode::kLoadParentFramePointer: | 1031 case IrOpcode::kLoadParentFramePointer: |
1032 case IrOpcode::kCheckedLoad: | 1032 case IrOpcode::kCheckedLoad: |
1033 case IrOpcode::kCheckedStore: | 1033 case IrOpcode::kCheckedStore: |
1034 case IrOpcode::kAtomicLoad: | 1034 case IrOpcode::kAtomicLoad: |
| 1035 case IrOpcode::kAtomicStore: |
1035 | 1036 |
1036 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: | 1037 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: |
1037 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) | 1038 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) |
1038 #undef SIMD_MACHINE_OP_CASE | 1039 #undef SIMD_MACHINE_OP_CASE |
1039 | 1040 |
1040 // TODO(rossberg): Check. | 1041 // TODO(rossberg): Check. |
1041 break; | 1042 break; |
1042 } | 1043 } |
1043 } // NOLINT(readability/fn_size) | 1044 } // NOLINT(readability/fn_size) |
1044 | 1045 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1359 replacement->op()->EffectOutputCount() > 0); | 1360 replacement->op()->EffectOutputCount() > 0); |
1360 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1361 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1361 replacement->opcode() == IrOpcode::kFrameState); | 1362 replacement->opcode() == IrOpcode::kFrameState); |
1362 } | 1363 } |
1363 | 1364 |
1364 #endif // DEBUG | 1365 #endif // DEBUG |
1365 | 1366 |
1366 } // namespace compiler | 1367 } // namespace compiler |
1367 } // namespace internal | 1368 } // namespace internal |
1368 } // namespace v8 | 1369 } // namespace v8 |
OLD | NEW |