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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 case IrOpcode::kBitcastInt32ToFloat32: | 926 case IrOpcode::kBitcastInt32ToFloat32: |
927 case IrOpcode::kBitcastInt64ToFloat64: | 927 case IrOpcode::kBitcastInt64ToFloat64: |
928 case IrOpcode::kChangeInt32ToInt64: | 928 case IrOpcode::kChangeInt32ToInt64: |
929 case IrOpcode::kChangeUint32ToUint64: | 929 case IrOpcode::kChangeUint32ToUint64: |
930 case IrOpcode::kChangeInt32ToFloat64: | 930 case IrOpcode::kChangeInt32ToFloat64: |
931 case IrOpcode::kChangeUint32ToFloat64: | 931 case IrOpcode::kChangeUint32ToFloat64: |
932 case IrOpcode::kChangeFloat32ToFloat64: | 932 case IrOpcode::kChangeFloat32ToFloat64: |
933 case IrOpcode::kChangeFloat64ToInt32: | 933 case IrOpcode::kChangeFloat64ToInt32: |
934 case IrOpcode::kChangeFloat64ToUint32: | 934 case IrOpcode::kChangeFloat64ToUint32: |
935 case IrOpcode::kTruncateFloat32ToInt32: | 935 case IrOpcode::kTruncateFloat32ToInt32: |
| 936 case IrOpcode::kTruncateFloat32ToUint32: |
936 case IrOpcode::kTryTruncateFloat32ToInt64: | 937 case IrOpcode::kTryTruncateFloat32ToInt64: |
937 case IrOpcode::kTryTruncateFloat64ToInt64: | 938 case IrOpcode::kTryTruncateFloat64ToInt64: |
938 case IrOpcode::kTryTruncateFloat32ToUint64: | 939 case IrOpcode::kTryTruncateFloat32ToUint64: |
939 case IrOpcode::kTryTruncateFloat64ToUint64: | 940 case IrOpcode::kTryTruncateFloat64ToUint64: |
940 case IrOpcode::kFloat64ExtractLowWord32: | 941 case IrOpcode::kFloat64ExtractLowWord32: |
941 case IrOpcode::kFloat64ExtractHighWord32: | 942 case IrOpcode::kFloat64ExtractHighWord32: |
942 case IrOpcode::kFloat64InsertLowWord32: | 943 case IrOpcode::kFloat64InsertLowWord32: |
943 case IrOpcode::kFloat64InsertHighWord32: | 944 case IrOpcode::kFloat64InsertHighWord32: |
944 case IrOpcode::kLoadStackPointer: | 945 case IrOpcode::kLoadStackPointer: |
945 case IrOpcode::kLoadFramePointer: | 946 case IrOpcode::kLoadFramePointer: |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1268 replacement->op()->EffectOutputCount() > 0); | 1269 replacement->op()->EffectOutputCount() > 0); |
1269 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1270 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1270 replacement->opcode() == IrOpcode::kFrameState); | 1271 replacement->opcode() == IrOpcode::kFrameState); |
1271 } | 1272 } |
1272 | 1273 |
1273 #endif // DEBUG | 1274 #endif // DEBUG |
1274 | 1275 |
1275 } // namespace compiler | 1276 } // namespace compiler |
1276 } // namespace internal | 1277 } // namespace internal |
1277 } // namespace v8 | 1278 } // namespace v8 |
OLD | NEW |