| 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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   895     case IrOpcode::kRoundInt64ToFloat32: |   895     case IrOpcode::kRoundInt64ToFloat32: | 
|   896     case IrOpcode::kRoundInt64ToFloat64: |   896     case IrOpcode::kRoundInt64ToFloat64: | 
|   897     case IrOpcode::kRoundUint64ToFloat64: |   897     case IrOpcode::kRoundUint64ToFloat64: | 
|   898     case IrOpcode::kRoundUint64ToFloat32: |   898     case IrOpcode::kRoundUint64ToFloat32: | 
|   899     case IrOpcode::kTruncateFloat64ToFloat32: |   899     case IrOpcode::kTruncateFloat64ToFloat32: | 
|   900     case IrOpcode::kTruncateFloat64ToInt32: |   900     case IrOpcode::kTruncateFloat64ToInt32: | 
|   901     case IrOpcode::kBitcastFloat32ToInt32: |   901     case IrOpcode::kBitcastFloat32ToInt32: | 
|   902     case IrOpcode::kBitcastFloat64ToInt64: |   902     case IrOpcode::kBitcastFloat64ToInt64: | 
|   903     case IrOpcode::kBitcastInt32ToFloat32: |   903     case IrOpcode::kBitcastInt32ToFloat32: | 
|   904     case IrOpcode::kBitcastInt64ToFloat64: |   904     case IrOpcode::kBitcastInt64ToFloat64: | 
 |   905     case IrOpcode::kChangeFloat64ToInt64: | 
|   905     case IrOpcode::kChangeInt32ToInt64: |   906     case IrOpcode::kChangeInt32ToInt64: | 
|   906     case IrOpcode::kChangeUint32ToUint64: |   907     case IrOpcode::kChangeUint32ToUint64: | 
|   907     case IrOpcode::kChangeInt32ToFloat64: |   908     case IrOpcode::kChangeInt32ToFloat64: | 
|   908     case IrOpcode::kChangeUint32ToFloat64: |   909     case IrOpcode::kChangeUint32ToFloat64: | 
|   909     case IrOpcode::kChangeFloat32ToFloat64: |   910     case IrOpcode::kChangeFloat32ToFloat64: | 
|   910     case IrOpcode::kChangeFloat64ToInt32: |   911     case IrOpcode::kChangeFloat64ToInt32: | 
|   911     case IrOpcode::kChangeFloat64ToUint32: |   912     case IrOpcode::kChangeFloat64ToUint32: | 
|   912     case IrOpcode::kFloat64ExtractLowWord32: |   913     case IrOpcode::kFloat64ExtractLowWord32: | 
|   913     case IrOpcode::kFloat64ExtractHighWord32: |   914     case IrOpcode::kFloat64ExtractHighWord32: | 
|   914     case IrOpcode::kFloat64InsertLowWord32: |   915     case IrOpcode::kFloat64InsertLowWord32: | 
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1240          replacement->op()->EffectOutputCount() > 0); |  1241          replacement->op()->EffectOutputCount() > 0); | 
|  1241   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |  1242   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 
|  1242          replacement->opcode() == IrOpcode::kFrameState); |  1243          replacement->opcode() == IrOpcode::kFrameState); | 
|  1243 } |  1244 } | 
|  1244  |  1245  | 
|  1245 #endif  // DEBUG |  1246 #endif  // DEBUG | 
|  1246  |  1247  | 
|  1247 }  // namespace compiler |  1248 }  // namespace compiler | 
|  1248 }  // namespace internal |  1249 }  // namespace internal | 
|  1249 }  // namespace v8 |  1250 }  // namespace v8 | 
| OLD | NEW |