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