| 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 case IrOpcode::kInt64Add: | 818 case IrOpcode::kInt64Add: |
| 819 case IrOpcode::kInt64Sub: | 819 case IrOpcode::kInt64Sub: |
| 820 case IrOpcode::kInt64Mul: | 820 case IrOpcode::kInt64Mul: |
| 821 case IrOpcode::kInt64Div: | 821 case IrOpcode::kInt64Div: |
| 822 case IrOpcode::kInt64Mod: | 822 case IrOpcode::kInt64Mod: |
| 823 case IrOpcode::kInt64LessThan: | 823 case IrOpcode::kInt64LessThan: |
| 824 case IrOpcode::kInt64LessThanOrEqual: | 824 case IrOpcode::kInt64LessThanOrEqual: |
| 825 case IrOpcode::kUint64Div: | 825 case IrOpcode::kUint64Div: |
| 826 case IrOpcode::kUint64Mod: | 826 case IrOpcode::kUint64Mod: |
| 827 case IrOpcode::kUint64LessThan: | 827 case IrOpcode::kUint64LessThan: |
| 828 case IrOpcode::kUint64LessThanOrEqual: |
| 828 case IrOpcode::kFloat32Add: | 829 case IrOpcode::kFloat32Add: |
| 829 case IrOpcode::kFloat32Sub: | 830 case IrOpcode::kFloat32Sub: |
| 830 case IrOpcode::kFloat32Mul: | 831 case IrOpcode::kFloat32Mul: |
| 831 case IrOpcode::kFloat32Div: | 832 case IrOpcode::kFloat32Div: |
| 832 case IrOpcode::kFloat32Max: | 833 case IrOpcode::kFloat32Max: |
| 833 case IrOpcode::kFloat32Min: | 834 case IrOpcode::kFloat32Min: |
| 834 case IrOpcode::kFloat32Abs: | 835 case IrOpcode::kFloat32Abs: |
| 835 case IrOpcode::kFloat32Sqrt: | 836 case IrOpcode::kFloat32Sqrt: |
| 836 case IrOpcode::kFloat32Equal: | 837 case IrOpcode::kFloat32Equal: |
| 837 case IrOpcode::kFloat32LessThan: | 838 case IrOpcode::kFloat32LessThan: |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 // Check inputs for all nodes in the block. | 1131 // Check inputs for all nodes in the block. |
| 1131 for (size_t i = 0; i < block->NodeCount(); i++) { | 1132 for (size_t i = 0; i < block->NodeCount(); i++) { |
| 1132 Node* node = block->NodeAt(i); | 1133 Node* node = block->NodeAt(i); |
| 1133 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); | 1134 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); |
| 1134 } | 1135 } |
| 1135 } | 1136 } |
| 1136 } | 1137 } |
| 1137 } // namespace compiler | 1138 } // namespace compiler |
| 1138 } // namespace internal | 1139 } // namespace internal |
| 1139 } // namespace v8 | 1140 } // namespace v8 |
| OLD | NEW |