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.h" |
9 #include "src/compiler/all-nodes.h" | 10 #include "src/compiler/all-nodes.h" |
10 #include "src/compiler/ast-graph-builder.h" | 11 #include "src/compiler/ast-graph-builder.h" |
11 #include "src/compiler/common-operator.h" | 12 #include "src/compiler/common-operator.h" |
12 #include "src/compiler/js-operator.h" | 13 #include "src/compiler/js-operator.h" |
13 #include "src/compiler/node-matchers.h" | 14 #include "src/compiler/node-matchers.h" |
14 #include "src/compiler/node-properties.h" | 15 #include "src/compiler/node-properties.h" |
15 #include "src/compiler/operator-properties.h" | 16 #include "src/compiler/operator-properties.h" |
16 #include "src/full-codegen/full-codegen.h" | 17 #include "src/full-codegen/full-codegen.h" |
17 #include "src/parser.h" | 18 #include "src/parser.h" |
18 #include "src/rewriter.h" | 19 #include "src/rewriter.h" |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 345 |
345 // Remember that we inlined this function. | 346 // Remember that we inlined this function. |
346 info_->AddInlinedFunction(info.shared_info()); | 347 info_->AddInlinedFunction(info.shared_info()); |
347 | 348 |
348 return InlineCall(node, context, frame_state, start, end); | 349 return InlineCall(node, context, frame_state, start, end); |
349 } | 350 } |
350 | 351 |
351 } // namespace compiler | 352 } // namespace compiler |
352 } // namespace internal | 353 } // namespace internal |
353 } // namespace v8 | 354 } // namespace v8 |
OLD | NEW |