| 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 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1379     case IrOpcode::kWord32PairSar: |  1379     case IrOpcode::kWord32PairSar: | 
|  1380     case IrOpcode::kLoadStackPointer: |  1380     case IrOpcode::kLoadStackPointer: | 
|  1381     case IrOpcode::kLoadFramePointer: |  1381     case IrOpcode::kLoadFramePointer: | 
|  1382     case IrOpcode::kLoadParentFramePointer: |  1382     case IrOpcode::kLoadParentFramePointer: | 
|  1383     case IrOpcode::kUnalignedLoad: |  1383     case IrOpcode::kUnalignedLoad: | 
|  1384     case IrOpcode::kUnalignedStore: |  1384     case IrOpcode::kUnalignedStore: | 
|  1385     case IrOpcode::kCheckedLoad: |  1385     case IrOpcode::kCheckedLoad: | 
|  1386     case IrOpcode::kCheckedStore: |  1386     case IrOpcode::kCheckedStore: | 
|  1387     case IrOpcode::kAtomicLoad: |  1387     case IrOpcode::kAtomicLoad: | 
|  1388     case IrOpcode::kAtomicStore: |  1388     case IrOpcode::kAtomicStore: | 
 |  1389     case IrOpcode::kAtomicExchange: | 
|  1389  |  1390  | 
|  1390 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: |  1391 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: | 
|  1391       MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) |  1392       MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) | 
|  1392 #undef SIMD_MACHINE_OP_CASE |  1393 #undef SIMD_MACHINE_OP_CASE | 
|  1393  |  1394  | 
|  1394       // TODO(rossberg): Check. |  1395       // TODO(rossberg): Check. | 
|  1395       break; |  1396       break; | 
|  1396   } |  1397   } | 
|  1397 }  // NOLINT(readability/fn_size) |  1398 }  // NOLINT(readability/fn_size) | 
|  1398  |  1399  | 
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1712          replacement->op()->EffectOutputCount() > 0); |  1713          replacement->op()->EffectOutputCount() > 0); | 
|  1713   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |  1714   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 
|  1714          replacement->opcode() == IrOpcode::kFrameState); |  1715          replacement->opcode() == IrOpcode::kFrameState); | 
|  1715 } |  1716 } | 
|  1716  |  1717  | 
|  1717 #endif  // DEBUG |  1718 #endif  // DEBUG | 
|  1718  |  1719  | 
|  1719 }  // namespace compiler |  1720 }  // namespace compiler | 
|  1720 }  // namespace internal |  1721 }  // namespace internal | 
|  1721 }  // namespace v8 |  1722 }  // namespace v8 | 
| OLD | NEW |