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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1050 case IrOpcode::kWord64Clz: | 1050 case IrOpcode::kWord64Clz: |
1051 case IrOpcode::kWord64Popcnt: | 1051 case IrOpcode::kWord64Popcnt: |
1052 case IrOpcode::kWord64Ctz: | 1052 case IrOpcode::kWord64Ctz: |
1053 case IrOpcode::kWord64ReverseBits: | 1053 case IrOpcode::kWord64ReverseBits: |
1054 case IrOpcode::kWord64Equal: | 1054 case IrOpcode::kWord64Equal: |
1055 case IrOpcode::kInt32Add: | 1055 case IrOpcode::kInt32Add: |
1056 case IrOpcode::kInt32AddWithOverflow: | 1056 case IrOpcode::kInt32AddWithOverflow: |
1057 case IrOpcode::kInt32Sub: | 1057 case IrOpcode::kInt32Sub: |
1058 case IrOpcode::kInt32SubWithOverflow: | 1058 case IrOpcode::kInt32SubWithOverflow: |
1059 case IrOpcode::kInt32Mul: | 1059 case IrOpcode::kInt32Mul: |
| 1060 case IrOpcode::kInt32MulWithOverflow: |
1060 case IrOpcode::kInt32MulHigh: | 1061 case IrOpcode::kInt32MulHigh: |
1061 case IrOpcode::kInt32Div: | 1062 case IrOpcode::kInt32Div: |
1062 case IrOpcode::kInt32Mod: | 1063 case IrOpcode::kInt32Mod: |
1063 case IrOpcode::kInt32LessThan: | 1064 case IrOpcode::kInt32LessThan: |
1064 case IrOpcode::kInt32LessThanOrEqual: | 1065 case IrOpcode::kInt32LessThanOrEqual: |
1065 case IrOpcode::kUint32Div: | 1066 case IrOpcode::kUint32Div: |
1066 case IrOpcode::kUint32Mod: | 1067 case IrOpcode::kUint32Mod: |
1067 case IrOpcode::kUint32MulHigh: | 1068 case IrOpcode::kUint32MulHigh: |
1068 case IrOpcode::kUint32LessThan: | 1069 case IrOpcode::kUint32LessThan: |
1069 case IrOpcode::kUint32LessThanOrEqual: | 1070 case IrOpcode::kUint32LessThanOrEqual: |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 replacement->op()->EffectOutputCount() > 0); | 1512 replacement->op()->EffectOutputCount() > 0); |
1512 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || | 1513 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || |
1513 replacement->opcode() == IrOpcode::kFrameState); | 1514 replacement->opcode() == IrOpcode::kFrameState); |
1514 } | 1515 } |
1515 | 1516 |
1516 #endif // DEBUG | 1517 #endif // DEBUG |
1517 | 1518 |
1518 } // namespace compiler | 1519 } // namespace compiler |
1519 } // namespace internal | 1520 } // namespace internal |
1520 } // namespace v8 | 1521 } // namespace v8 |
OLD | NEW |