| 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> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "src/bit-vector.h" | 13 #include "src/bit-vector.h" |
| 14 #include "src/compiler/all-nodes.h" | 14 #include "src/compiler/all-nodes.h" |
| 15 #include "src/compiler/common-operator.h" |
| 15 #include "src/compiler/graph.h" | 16 #include "src/compiler/graph.h" |
| 16 #include "src/compiler/node.h" | 17 #include "src/compiler/node.h" |
| 17 #include "src/compiler/node-properties-inl.h" | |
| 18 #include "src/compiler/node-properties.h" | 18 #include "src/compiler/node-properties.h" |
| 19 #include "src/compiler/opcodes.h" | 19 #include "src/compiler/opcodes.h" |
| 20 #include "src/compiler/operator.h" | 20 #include "src/compiler/operator.h" |
| 21 #include "src/compiler/operator-properties.h" |
| 21 #include "src/compiler/schedule.h" | 22 #include "src/compiler/schedule.h" |
| 22 #include "src/compiler/simplified-operator.h" | 23 #include "src/compiler/simplified-operator.h" |
| 23 #include "src/ostreams.h" | 24 #include "src/ostreams.h" |
| 24 | 25 |
| 25 namespace v8 { | 26 namespace v8 { |
| 26 namespace internal { | 27 namespace internal { |
| 27 namespace compiler { | 28 namespace compiler { |
| 28 | 29 |
| 29 | 30 |
| 30 static bool IsDefUseChainLinkPresent(Node* def, Node* use) { | 31 static bool IsDefUseChainLinkPresent(Node* def, Node* use) { |
| (...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 // Check inputs for all nodes in the block. | 1001 // Check inputs for all nodes in the block. |
| 1001 for (size_t i = 0; i < block->NodeCount(); i++) { | 1002 for (size_t i = 0; i < block->NodeCount(); i++) { |
| 1002 Node* node = block->NodeAt(i); | 1003 Node* node = block->NodeAt(i); |
| 1003 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); | 1004 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); |
| 1004 } | 1005 } |
| 1005 } | 1006 } |
| 1006 } | 1007 } |
| 1007 } | 1008 } |
| 1008 } | 1009 } |
| 1009 } // namespace v8::internal::compiler | 1010 } // namespace v8::internal::compiler |
| OLD | NEW |