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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 case IrOpcode::kWord64Clz: | 1025 case IrOpcode::kWord64Clz: |
1026 case IrOpcode::kWord64Popcnt: | 1026 case IrOpcode::kWord64Popcnt: |
1027 case IrOpcode::kWord64Ctz: | 1027 case IrOpcode::kWord64Ctz: |
1028 case IrOpcode::kWord64ReverseBits: | 1028 case IrOpcode::kWord64ReverseBits: |
1029 case IrOpcode::kWord64Equal: | 1029 case IrOpcode::kWord64Equal: |
1030 case IrOpcode::kInt32Add: | 1030 case IrOpcode::kInt32Add: |
1031 case IrOpcode::kInt32AddWithOverflow: | 1031 case IrOpcode::kInt32AddWithOverflow: |
1032 case IrOpcode::kInt32Sub: | 1032 case IrOpcode::kInt32Sub: |
1033 case IrOpcode::kInt32SubWithOverflow: | 1033 case IrOpcode::kInt32SubWithOverflow: |
1034 case IrOpcode::kInt32Mul: | 1034 case IrOpcode::kInt32Mul: |
| 1035 case IrOpcode::kInt32MulWithOverflow: |
1035 case IrOpcode::kInt32MulHigh: | 1036 case IrOpcode::kInt32MulHigh: |
1036 case IrOpcode::kInt32Div: | 1037 case IrOpcode::kInt32Div: |
1037 case IrOpcode::kInt32Mod: | 1038 case IrOpcode::kInt32Mod: |
1038 case IrOpcode::kInt32LessThan: | 1039 case IrOpcode::kInt32LessThan: |
1039 case IrOpcode::kInt32LessThanOrEqual: | 1040 case IrOpcode::kInt32LessThanOrEqual: |
1040 case IrOpcode::kUint32Div: | 1041 case IrOpcode::kUint32Div: |
1041 case IrOpcode::kUint32Mod: | 1042 case IrOpcode::kUint32Mod: |
1042 case IrOpcode::kUint32MulHigh: | 1043 case IrOpcode::kUint32MulHigh: |
1043 case IrOpcode::kUint32LessThan: | 1044 case IrOpcode::kUint32LessThan: |
1044 case IrOpcode::kUint32LessThanOrEqual: | 1045 case IrOpcode::kUint32LessThanOrEqual: |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1486 replacement->op()->EffectOutputCount() > 0); | 1487 replacement->op()->EffectOutputCount() > 0); |
1487 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1488 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1488 replacement->opcode() == IrOpcode::kFrameState); | 1489 replacement->opcode() == IrOpcode::kFrameState); |
1489 } | 1490 } |
1490 | 1491 |
1491 #endif // DEBUG | 1492 #endif // DEBUG |
1492 | 1493 |
1493 } // namespace compiler | 1494 } // namespace compiler |
1494 } // namespace internal | 1495 } // namespace internal |
1495 } // namespace v8 | 1496 } // namespace v8 |
OLD | NEW |