| 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 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 case IrOpcode::kInt64LessThan: | 785 case IrOpcode::kInt64LessThan: |
| 786 case IrOpcode::kInt64LessThanOrEqual: | 786 case IrOpcode::kInt64LessThanOrEqual: |
| 787 case IrOpcode::kUint64Div: | 787 case IrOpcode::kUint64Div: |
| 788 case IrOpcode::kUint64Mod: | 788 case IrOpcode::kUint64Mod: |
| 789 case IrOpcode::kUint64LessThan: | 789 case IrOpcode::kUint64LessThan: |
| 790 case IrOpcode::kFloat64Add: | 790 case IrOpcode::kFloat64Add: |
| 791 case IrOpcode::kFloat64Sub: | 791 case IrOpcode::kFloat64Sub: |
| 792 case IrOpcode::kFloat64Mul: | 792 case IrOpcode::kFloat64Mul: |
| 793 case IrOpcode::kFloat64Div: | 793 case IrOpcode::kFloat64Div: |
| 794 case IrOpcode::kFloat64Mod: | 794 case IrOpcode::kFloat64Mod: |
| 795 case IrOpcode::kFloat64Max: |
| 796 case IrOpcode::kFloat64Min: |
| 795 case IrOpcode::kFloat64Sqrt: | 797 case IrOpcode::kFloat64Sqrt: |
| 796 case IrOpcode::kFloat64RoundDown: | 798 case IrOpcode::kFloat64RoundDown: |
| 797 case IrOpcode::kFloat64RoundTruncate: | 799 case IrOpcode::kFloat64RoundTruncate: |
| 798 case IrOpcode::kFloat64RoundTiesAway: | 800 case IrOpcode::kFloat64RoundTiesAway: |
| 799 case IrOpcode::kFloat64Equal: | 801 case IrOpcode::kFloat64Equal: |
| 800 case IrOpcode::kFloat64LessThan: | 802 case IrOpcode::kFloat64LessThan: |
| 801 case IrOpcode::kFloat64LessThanOrEqual: | 803 case IrOpcode::kFloat64LessThanOrEqual: |
| 802 case IrOpcode::kTruncateInt64ToInt32: | 804 case IrOpcode::kTruncateInt64ToInt32: |
| 803 case IrOpcode::kTruncateFloat64ToFloat32: | 805 case IrOpcode::kTruncateFloat64ToFloat32: |
| 804 case IrOpcode::kTruncateFloat64ToInt32: | 806 case IrOpcode::kTruncateFloat64ToInt32: |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 // Check inputs for all nodes in the block. | 1063 // Check inputs for all nodes in the block. |
| 1062 for (size_t i = 0; i < block->NodeCount(); i++) { | 1064 for (size_t i = 0; i < block->NodeCount(); i++) { |
| 1063 Node* node = block->NodeAt(i); | 1065 Node* node = block->NodeAt(i); |
| 1064 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); | 1066 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); |
| 1065 } | 1067 } |
| 1066 } | 1068 } |
| 1067 } | 1069 } |
| 1068 } | 1070 } |
| 1069 } | 1071 } |
| 1070 } // namespace v8::internal::compiler | 1072 } // namespace v8::internal::compiler |
| OLD | NEW |