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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
968 case IrOpcode::kRoundInt64ToFloat64: | 968 case IrOpcode::kRoundInt64ToFloat64: |
969 case IrOpcode::kRoundUint32ToFloat32: | 969 case IrOpcode::kRoundUint32ToFloat32: |
970 case IrOpcode::kRoundUint64ToFloat64: | 970 case IrOpcode::kRoundUint64ToFloat64: |
971 case IrOpcode::kRoundUint64ToFloat32: | 971 case IrOpcode::kRoundUint64ToFloat32: |
972 case IrOpcode::kTruncateFloat64ToFloat32: | 972 case IrOpcode::kTruncateFloat64ToFloat32: |
973 case IrOpcode::kTruncateFloat64ToInt32: | 973 case IrOpcode::kTruncateFloat64ToInt32: |
974 case IrOpcode::kBitcastFloat32ToInt32: | 974 case IrOpcode::kBitcastFloat32ToInt32: |
975 case IrOpcode::kBitcastFloat64ToInt64: | 975 case IrOpcode::kBitcastFloat64ToInt64: |
976 case IrOpcode::kBitcastInt32ToFloat32: | 976 case IrOpcode::kBitcastInt32ToFloat32: |
977 case IrOpcode::kBitcastInt64ToFloat64: | 977 case IrOpcode::kBitcastInt64ToFloat64: |
| 978 case IrOpcode::kBitcastWordToTagged: |
978 case IrOpcode::kChangeInt32ToInt64: | 979 case IrOpcode::kChangeInt32ToInt64: |
979 case IrOpcode::kChangeUint32ToUint64: | 980 case IrOpcode::kChangeUint32ToUint64: |
980 case IrOpcode::kChangeInt32ToFloat64: | 981 case IrOpcode::kChangeInt32ToFloat64: |
981 case IrOpcode::kChangeUint32ToFloat64: | 982 case IrOpcode::kChangeUint32ToFloat64: |
982 case IrOpcode::kChangeFloat32ToFloat64: | 983 case IrOpcode::kChangeFloat32ToFloat64: |
983 case IrOpcode::kChangeFloat64ToInt32: | 984 case IrOpcode::kChangeFloat64ToInt32: |
984 case IrOpcode::kChangeFloat64ToUint32: | 985 case IrOpcode::kChangeFloat64ToUint32: |
985 case IrOpcode::kTruncateFloat64ToUint32: | 986 case IrOpcode::kTruncateFloat64ToUint32: |
986 case IrOpcode::kTruncateFloat32ToInt32: | 987 case IrOpcode::kTruncateFloat32ToInt32: |
987 case IrOpcode::kTruncateFloat32ToUint32: | 988 case IrOpcode::kTruncateFloat32ToUint32: |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 replacement->op()->EffectOutputCount() > 0); | 1329 replacement->op()->EffectOutputCount() > 0); |
1329 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1330 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1330 replacement->opcode() == IrOpcode::kFrameState); | 1331 replacement->opcode() == IrOpcode::kFrameState); |
1331 } | 1332 } |
1332 | 1333 |
1333 #endif // DEBUG | 1334 #endif // DEBUG |
1334 | 1335 |
1335 } // namespace compiler | 1336 } // namespace compiler |
1336 } // namespace internal | 1337 } // namespace internal |
1337 } // namespace v8 | 1338 } // namespace v8 |
OLD | NEW |