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 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 case IrOpcode::kRoundInt64ToFloat64: | 1225 case IrOpcode::kRoundInt64ToFloat64: |
1226 case IrOpcode::kRoundUint32ToFloat32: | 1226 case IrOpcode::kRoundUint32ToFloat32: |
1227 case IrOpcode::kRoundUint64ToFloat64: | 1227 case IrOpcode::kRoundUint64ToFloat64: |
1228 case IrOpcode::kRoundUint64ToFloat32: | 1228 case IrOpcode::kRoundUint64ToFloat32: |
1229 case IrOpcode::kTruncateFloat64ToFloat32: | 1229 case IrOpcode::kTruncateFloat64ToFloat32: |
1230 case IrOpcode::kTruncateFloat64ToWord32: | 1230 case IrOpcode::kTruncateFloat64ToWord32: |
1231 case IrOpcode::kBitcastFloat32ToInt32: | 1231 case IrOpcode::kBitcastFloat32ToInt32: |
1232 case IrOpcode::kBitcastFloat64ToInt64: | 1232 case IrOpcode::kBitcastFloat64ToInt64: |
1233 case IrOpcode::kBitcastInt32ToFloat32: | 1233 case IrOpcode::kBitcastInt32ToFloat32: |
1234 case IrOpcode::kBitcastInt64ToFloat64: | 1234 case IrOpcode::kBitcastInt64ToFloat64: |
| 1235 case IrOpcode::kBitcastTaggedToWord: |
1235 case IrOpcode::kBitcastWordToTagged: | 1236 case IrOpcode::kBitcastWordToTagged: |
| 1237 case IrOpcode::kBitcastWordToTaggedSigned: |
1236 case IrOpcode::kChangeInt32ToInt64: | 1238 case IrOpcode::kChangeInt32ToInt64: |
1237 case IrOpcode::kChangeUint32ToUint64: | 1239 case IrOpcode::kChangeUint32ToUint64: |
1238 case IrOpcode::kChangeInt32ToFloat64: | 1240 case IrOpcode::kChangeInt32ToFloat64: |
1239 case IrOpcode::kChangeUint32ToFloat64: | 1241 case IrOpcode::kChangeUint32ToFloat64: |
1240 case IrOpcode::kChangeFloat32ToFloat64: | 1242 case IrOpcode::kChangeFloat32ToFloat64: |
1241 case IrOpcode::kChangeFloat64ToInt32: | 1243 case IrOpcode::kChangeFloat64ToInt32: |
1242 case IrOpcode::kChangeFloat64ToUint32: | 1244 case IrOpcode::kChangeFloat64ToUint32: |
1243 case IrOpcode::kFloat64SilenceNaN: | 1245 case IrOpcode::kFloat64SilenceNaN: |
1244 case IrOpcode::kTruncateFloat64ToUint32: | 1246 case IrOpcode::kTruncateFloat64ToUint32: |
1245 case IrOpcode::kTruncateFloat32ToInt32: | 1247 case IrOpcode::kTruncateFloat32ToInt32: |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 replacement->op()->EffectOutputCount() > 0); | 1595 replacement->op()->EffectOutputCount() > 0); |
1594 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1596 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1595 replacement->opcode() == IrOpcode::kFrameState); | 1597 replacement->opcode() == IrOpcode::kFrameState); |
1596 } | 1598 } |
1597 | 1599 |
1598 #endif // DEBUG | 1600 #endif // DEBUG |
1599 | 1601 |
1600 } // namespace compiler | 1602 } // namespace compiler |
1601 } // namespace internal | 1603 } // namespace internal |
1602 } // namespace v8 | 1604 } // namespace v8 |
OLD | NEW |