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/js-inlining.h" | 5 #include "src/compiler/js-inlining.h" |
6 | 6 |
7 #include "src/ast.h" | 7 #include "src/ast.h" |
8 #include "src/ast-numbering.h" | 8 #include "src/ast-numbering.h" |
9 #include "src/compiler/access-builder.h" | 9 #include "src/compiler/access-builder.h" |
10 #include "src/compiler/all-nodes.h" | 10 #include "src/compiler/all-nodes.h" |
11 #include "src/compiler/ast-graph-builder.h" | 11 #include "src/compiler/ast-graph-builder.h" |
12 #include "src/compiler/common-operator.h" | 12 #include "src/compiler/common-operator.h" |
13 #include "src/compiler/graph-visualizer.h" | |
14 #include "src/compiler/js-operator.h" | 13 #include "src/compiler/js-operator.h" |
15 #include "src/compiler/node-matchers.h" | 14 #include "src/compiler/node-matchers.h" |
16 #include "src/compiler/node-properties.h" | 15 #include "src/compiler/node-properties.h" |
17 #include "src/compiler/simplified-operator.h" | 16 #include "src/compiler/simplified-operator.h" |
18 #include "src/compiler/typer.h" | 17 #include "src/compiler/typer.h" |
| 18 #include "src/compiler/visualizer.h" |
19 #include "src/full-codegen.h" | 19 #include "src/full-codegen.h" |
20 #include "src/parser.h" | 20 #include "src/parser.h" |
21 #include "src/rewriter.h" | 21 #include "src/rewriter.h" |
22 #include "src/scopes.h" | 22 #include "src/scopes.h" |
23 | 23 |
24 namespace v8 { | 24 namespace v8 { |
25 namespace internal { | 25 namespace internal { |
26 namespace compiler { | 26 namespace compiler { |
27 | 27 |
28 | 28 |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 } | 380 } |
381 } | 381 } |
382 } | 382 } |
383 | 383 |
384 return inlinee.InlineAtCall(jsgraph_, node); | 384 return inlinee.InlineAtCall(jsgraph_, node); |
385 } | 385 } |
386 | 386 |
387 } // namespace compiler | 387 } // namespace compiler |
388 } // namespace internal | 388 } // namespace internal |
389 } // namespace v8 | 389 } // namespace v8 |
OLD | NEW |