| 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/ast.h" | 5 #include "src/ast.h" |
| 6 #include "src/ast-numbering.h" | 6 #include "src/ast-numbering.h" |
| 7 #include "src/compiler/access-builder.h" | 7 #include "src/compiler/access-builder.h" |
| 8 #include "src/compiler/ast-graph-builder.h" | 8 #include "src/compiler/ast-graph-builder.h" |
| 9 #include "src/compiler/common-operator.h" | 9 #include "src/compiler/common-operator.h" |
| 10 #include "src/compiler/generic-node-inl.h" | |
| 11 #include "src/compiler/graph-inl.h" | 10 #include "src/compiler/graph-inl.h" |
| 12 #include "src/compiler/graph-visualizer.h" | 11 #include "src/compiler/graph-visualizer.h" |
| 13 #include "src/compiler/js-inlining.h" | 12 #include "src/compiler/js-inlining.h" |
| 14 #include "src/compiler/js-intrinsic-builder.h" | 13 #include "src/compiler/js-intrinsic-builder.h" |
| 15 #include "src/compiler/js-operator.h" | 14 #include "src/compiler/js-operator.h" |
| 16 #include "src/compiler/node-aux-data-inl.h" | 15 #include "src/compiler/node-aux-data-inl.h" |
| 17 #include "src/compiler/node-matchers.h" | 16 #include "src/compiler/node-matchers.h" |
| 18 #include "src/compiler/node-properties-inl.h" | 17 #include "src/compiler/node-properties-inl.h" |
| 19 #include "src/compiler/simplified-operator.h" | 18 #include "src/compiler/simplified-operator.h" |
| 20 #include "src/compiler/typer.h" | 19 #include "src/compiler/typer.h" |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 info_->shared_info()->DebugName()->ToCString().get()); | 486 info_->shared_info()->DebugName()->ToCString().get()); |
| 488 } | 487 } |
| 489 NodeProperties::ReplaceWithValue(call_node, r.first, r.second); | 488 NodeProperties::ReplaceWithValue(call_node, r.first, r.second); |
| 490 call_node->RemoveAllInputs(); | 489 call_node->RemoveAllInputs(); |
| 491 DCHECK_EQ(0, call_node->UseCount()); | 490 DCHECK_EQ(0, call_node->UseCount()); |
| 492 } | 491 } |
| 493 } | 492 } |
| 494 } | 493 } |
| 495 } | 494 } |
| 496 } // namespace v8::internal::compiler | 495 } // namespace v8::internal::compiler |
| OLD | NEW |