| 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 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 case IrOpcode::kTryTruncateFloat32ToInt64: | 951 case IrOpcode::kTryTruncateFloat32ToInt64: |
| 952 case IrOpcode::kTryTruncateFloat64ToInt64: | 952 case IrOpcode::kTryTruncateFloat64ToInt64: |
| 953 case IrOpcode::kTryTruncateFloat32ToUint64: | 953 case IrOpcode::kTryTruncateFloat32ToUint64: |
| 954 case IrOpcode::kTryTruncateFloat64ToUint64: | 954 case IrOpcode::kTryTruncateFloat64ToUint64: |
| 955 case IrOpcode::kFloat64ExtractLowWord32: | 955 case IrOpcode::kFloat64ExtractLowWord32: |
| 956 case IrOpcode::kFloat64ExtractHighWord32: | 956 case IrOpcode::kFloat64ExtractHighWord32: |
| 957 case IrOpcode::kFloat64InsertLowWord32: | 957 case IrOpcode::kFloat64InsertLowWord32: |
| 958 case IrOpcode::kFloat64InsertHighWord32: | 958 case IrOpcode::kFloat64InsertHighWord32: |
| 959 case IrOpcode::kInt32PairAdd: | 959 case IrOpcode::kInt32PairAdd: |
| 960 case IrOpcode::kInt32PairSub: | 960 case IrOpcode::kInt32PairSub: |
| 961 case IrOpcode::kInt32PairMul: |
| 961 case IrOpcode::kWord32PairShl: | 962 case IrOpcode::kWord32PairShl: |
| 962 case IrOpcode::kWord32PairShr: | 963 case IrOpcode::kWord32PairShr: |
| 963 case IrOpcode::kWord32PairSar: | 964 case IrOpcode::kWord32PairSar: |
| 964 case IrOpcode::kLoadStackPointer: | 965 case IrOpcode::kLoadStackPointer: |
| 965 case IrOpcode::kLoadFramePointer: | 966 case IrOpcode::kLoadFramePointer: |
| 966 case IrOpcode::kLoadParentFramePointer: | 967 case IrOpcode::kLoadParentFramePointer: |
| 967 case IrOpcode::kCheckedLoad: | 968 case IrOpcode::kCheckedLoad: |
| 968 case IrOpcode::kCheckedStore: | 969 case IrOpcode::kCheckedStore: |
| 969 // TODO(rossberg): Check. | 970 // TODO(rossberg): Check. |
| 970 break; | 971 break; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 replacement->op()->EffectOutputCount() > 0); | 1290 replacement->op()->EffectOutputCount() > 0); |
| 1290 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1291 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
| 1291 replacement->opcode() == IrOpcode::kFrameState); | 1292 replacement->opcode() == IrOpcode::kFrameState); |
| 1292 } | 1293 } |
| 1293 | 1294 |
| 1294 #endif // DEBUG | 1295 #endif // DEBUG |
| 1295 | 1296 |
| 1296 } // namespace compiler | 1297 } // namespace compiler |
| 1297 } // namespace internal | 1298 } // namespace internal |
| 1298 } // namespace v8 | 1299 } // namespace v8 |
| OLD | NEW |