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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 case IrOpcode::kBitcastFloat64ToInt64: | 917 case IrOpcode::kBitcastFloat64ToInt64: |
918 case IrOpcode::kBitcastInt32ToFloat32: | 918 case IrOpcode::kBitcastInt32ToFloat32: |
919 case IrOpcode::kBitcastInt64ToFloat64: | 919 case IrOpcode::kBitcastInt64ToFloat64: |
920 case IrOpcode::kChangeInt32ToInt64: | 920 case IrOpcode::kChangeInt32ToInt64: |
921 case IrOpcode::kChangeUint32ToUint64: | 921 case IrOpcode::kChangeUint32ToUint64: |
922 case IrOpcode::kChangeInt32ToFloat64: | 922 case IrOpcode::kChangeInt32ToFloat64: |
923 case IrOpcode::kChangeUint32ToFloat64: | 923 case IrOpcode::kChangeUint32ToFloat64: |
924 case IrOpcode::kChangeFloat32ToFloat64: | 924 case IrOpcode::kChangeFloat32ToFloat64: |
925 case IrOpcode::kChangeFloat64ToInt32: | 925 case IrOpcode::kChangeFloat64ToInt32: |
926 case IrOpcode::kChangeFloat64ToUint32: | 926 case IrOpcode::kChangeFloat64ToUint32: |
| 927 case IrOpcode::kTruncateFloat32ToInt32: |
927 case IrOpcode::kTryTruncateFloat32ToInt64: | 928 case IrOpcode::kTryTruncateFloat32ToInt64: |
928 case IrOpcode::kTryTruncateFloat64ToInt64: | 929 case IrOpcode::kTryTruncateFloat64ToInt64: |
929 case IrOpcode::kTryTruncateFloat32ToUint64: | 930 case IrOpcode::kTryTruncateFloat32ToUint64: |
930 case IrOpcode::kTryTruncateFloat64ToUint64: | 931 case IrOpcode::kTryTruncateFloat64ToUint64: |
931 case IrOpcode::kFloat64ExtractLowWord32: | 932 case IrOpcode::kFloat64ExtractLowWord32: |
932 case IrOpcode::kFloat64ExtractHighWord32: | 933 case IrOpcode::kFloat64ExtractHighWord32: |
933 case IrOpcode::kFloat64InsertLowWord32: | 934 case IrOpcode::kFloat64InsertLowWord32: |
934 case IrOpcode::kFloat64InsertHighWord32: | 935 case IrOpcode::kFloat64InsertHighWord32: |
935 case IrOpcode::kLoadStackPointer: | 936 case IrOpcode::kLoadStackPointer: |
936 case IrOpcode::kLoadFramePointer: | 937 case IrOpcode::kLoadFramePointer: |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1259 replacement->op()->EffectOutputCount() > 0); | 1260 replacement->op()->EffectOutputCount() > 0); |
1260 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1261 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1261 replacement->opcode() == IrOpcode::kFrameState); | 1262 replacement->opcode() == IrOpcode::kFrameState); |
1262 } | 1263 } |
1263 | 1264 |
1264 #endif // DEBUG | 1265 #endif // DEBUG |
1265 | 1266 |
1266 } // namespace compiler | 1267 } // namespace compiler |
1267 } // namespace internal | 1268 } // namespace internal |
1268 } // namespace v8 | 1269 } // namespace v8 |
OLD | NEW |