| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   883     case IrOpcode::kFloat64RoundTruncate: |   883     case IrOpcode::kFloat64RoundTruncate: | 
|   884     case IrOpcode::kFloat64RoundTiesAway: |   884     case IrOpcode::kFloat64RoundTiesAway: | 
|   885     case IrOpcode::kFloat64RoundTiesEven: |   885     case IrOpcode::kFloat64RoundTiesEven: | 
|   886     case IrOpcode::kFloat64Equal: |   886     case IrOpcode::kFloat64Equal: | 
|   887     case IrOpcode::kFloat64LessThan: |   887     case IrOpcode::kFloat64LessThan: | 
|   888     case IrOpcode::kFloat64LessThanOrEqual: |   888     case IrOpcode::kFloat64LessThanOrEqual: | 
|   889     case IrOpcode::kTruncateInt64ToInt32: |   889     case IrOpcode::kTruncateInt64ToInt32: | 
|   890     case IrOpcode::kRoundInt64ToFloat32: |   890     case IrOpcode::kRoundInt64ToFloat32: | 
|   891     case IrOpcode::kRoundInt64ToFloat64: |   891     case IrOpcode::kRoundInt64ToFloat64: | 
|   892     case IrOpcode::kRoundUint64ToFloat64: |   892     case IrOpcode::kRoundUint64ToFloat64: | 
 |   893     case IrOpcode::kRoundUint64ToFloat32: | 
|   893     case IrOpcode::kTruncateFloat64ToFloat32: |   894     case IrOpcode::kTruncateFloat64ToFloat32: | 
|   894     case IrOpcode::kTruncateFloat64ToInt32: |   895     case IrOpcode::kTruncateFloat64ToInt32: | 
|   895     case IrOpcode::kBitcastFloat32ToInt32: |   896     case IrOpcode::kBitcastFloat32ToInt32: | 
|   896     case IrOpcode::kBitcastFloat64ToInt64: |   897     case IrOpcode::kBitcastFloat64ToInt64: | 
|   897     case IrOpcode::kBitcastInt32ToFloat32: |   898     case IrOpcode::kBitcastInt32ToFloat32: | 
|   898     case IrOpcode::kBitcastInt64ToFloat64: |   899     case IrOpcode::kBitcastInt64ToFloat64: | 
|   899     case IrOpcode::kChangeInt32ToInt64: |   900     case IrOpcode::kChangeInt32ToInt64: | 
|   900     case IrOpcode::kChangeUint32ToUint64: |   901     case IrOpcode::kChangeUint32ToUint64: | 
|   901     case IrOpcode::kChangeInt32ToFloat64: |   902     case IrOpcode::kChangeInt32ToFloat64: | 
|   902     case IrOpcode::kChangeUint32ToFloat64: |   903     case IrOpcode::kChangeUint32ToFloat64: | 
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1234          replacement->op()->EffectOutputCount() > 0); |  1235          replacement->op()->EffectOutputCount() > 0); | 
|  1235   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |  1236   DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 
|  1236          replacement->opcode() == IrOpcode::kFrameState); |  1237          replacement->opcode() == IrOpcode::kFrameState); | 
|  1237 } |  1238 } | 
|  1238  |  1239  | 
|  1239 #endif  // DEBUG |  1240 #endif  // DEBUG | 
|  1240  |  1241  | 
|  1241 }  // namespace compiler |  1242 }  // namespace compiler | 
|  1242 }  // namespace internal |  1243 }  // namespace internal | 
|  1243 }  // namespace v8 |  1244 }  // namespace v8 | 
| OLD | NEW |