| 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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 case IrOpcode::kWord32PairSar: | 1389 case IrOpcode::kWord32PairSar: |
| 1390 case IrOpcode::kLoadStackPointer: | 1390 case IrOpcode::kLoadStackPointer: |
| 1391 case IrOpcode::kLoadFramePointer: | 1391 case IrOpcode::kLoadFramePointer: |
| 1392 case IrOpcode::kLoadParentFramePointer: | 1392 case IrOpcode::kLoadParentFramePointer: |
| 1393 case IrOpcode::kUnalignedLoad: | 1393 case IrOpcode::kUnalignedLoad: |
| 1394 case IrOpcode::kUnalignedStore: | 1394 case IrOpcode::kUnalignedStore: |
| 1395 case IrOpcode::kCheckedLoad: | 1395 case IrOpcode::kCheckedLoad: |
| 1396 case IrOpcode::kCheckedStore: | 1396 case IrOpcode::kCheckedStore: |
| 1397 case IrOpcode::kAtomicLoad: | 1397 case IrOpcode::kAtomicLoad: |
| 1398 case IrOpcode::kAtomicStore: | 1398 case IrOpcode::kAtomicStore: |
| 1399 case IrOpcode::kAtomicExchange: |
| 1399 | 1400 |
| 1400 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: | 1401 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: |
| 1401 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) | 1402 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) |
| 1402 #undef SIMD_MACHINE_OP_CASE | 1403 #undef SIMD_MACHINE_OP_CASE |
| 1403 | 1404 |
| 1404 // TODO(rossberg): Check. | 1405 // TODO(rossberg): Check. |
| 1405 break; | 1406 break; |
| 1406 } | 1407 } |
| 1407 } // NOLINT(readability/fn_size) | 1408 } // NOLINT(readability/fn_size) |
| 1408 | 1409 |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1722 replacement->op()->EffectOutputCount() > 0); | 1723 replacement->op()->EffectOutputCount() > 0); |
| 1723 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1724 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
| 1724 replacement->opcode() == IrOpcode::kFrameState); | 1725 replacement->opcode() == IrOpcode::kFrameState); |
| 1725 } | 1726 } |
| 1726 | 1727 |
| 1727 #endif // DEBUG | 1728 #endif // DEBUG |
| 1728 | 1729 |
| 1729 } // namespace compiler | 1730 } // namespace compiler |
| 1730 } // namespace internal | 1731 } // namespace internal |
| 1731 } // namespace v8 | 1732 } // namespace v8 |
| OLD | NEW |