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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
914 case IrOpcode::kBitcastInt64ToFloat64: | 914 case IrOpcode::kBitcastInt64ToFloat64: |
915 case IrOpcode::kChangeInt32ToInt64: | 915 case IrOpcode::kChangeInt32ToInt64: |
916 case IrOpcode::kChangeUint32ToUint64: | 916 case IrOpcode::kChangeUint32ToUint64: |
917 case IrOpcode::kChangeInt32ToFloat64: | 917 case IrOpcode::kChangeInt32ToFloat64: |
918 case IrOpcode::kChangeUint32ToFloat64: | 918 case IrOpcode::kChangeUint32ToFloat64: |
919 case IrOpcode::kChangeFloat32ToFloat64: | 919 case IrOpcode::kChangeFloat32ToFloat64: |
920 case IrOpcode::kChangeFloat64ToInt32: | 920 case IrOpcode::kChangeFloat64ToInt32: |
921 case IrOpcode::kChangeFloat64ToUint32: | 921 case IrOpcode::kChangeFloat64ToUint32: |
922 case IrOpcode::kTruncateFloat32ToInt64: | 922 case IrOpcode::kTruncateFloat32ToInt64: |
923 case IrOpcode::kTruncateFloat64ToInt64: | 923 case IrOpcode::kTruncateFloat64ToInt64: |
| 924 case IrOpcode::kTruncateFloat32ToUint64: |
924 case IrOpcode::kTruncateFloat64ToUint64: | 925 case IrOpcode::kTruncateFloat64ToUint64: |
925 case IrOpcode::kFloat64ExtractLowWord32: | 926 case IrOpcode::kFloat64ExtractLowWord32: |
926 case IrOpcode::kFloat64ExtractHighWord32: | 927 case IrOpcode::kFloat64ExtractHighWord32: |
927 case IrOpcode::kFloat64InsertLowWord32: | 928 case IrOpcode::kFloat64InsertLowWord32: |
928 case IrOpcode::kFloat64InsertHighWord32: | 929 case IrOpcode::kFloat64InsertHighWord32: |
929 case IrOpcode::kLoadStackPointer: | 930 case IrOpcode::kLoadStackPointer: |
930 case IrOpcode::kLoadFramePointer: | 931 case IrOpcode::kLoadFramePointer: |
931 case IrOpcode::kCheckedLoad: | 932 case IrOpcode::kCheckedLoad: |
932 case IrOpcode::kCheckedStore: | 933 case IrOpcode::kCheckedStore: |
933 // TODO(rossberg): Check. | 934 // TODO(rossberg): Check. |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1253 replacement->op()->EffectOutputCount() > 0); | 1254 replacement->op()->EffectOutputCount() > 0); |
1254 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1255 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1255 replacement->opcode() == IrOpcode::kFrameState); | 1256 replacement->opcode() == IrOpcode::kFrameState); |
1256 } | 1257 } |
1257 | 1258 |
1258 #endif // DEBUG | 1259 #endif // DEBUG |
1259 | 1260 |
1260 } // namespace compiler | 1261 } // namespace compiler |
1261 } // namespace internal | 1262 } // namespace internal |
1262 } // namespace v8 | 1263 } // namespace v8 |
OLD | NEW |