| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/flow_graph_inliner.h" | 5 #include "vm/flow_graph_inliner.h" |
| 6 | 6 |
| 7 #include "vm/compiler.h" | 7 #include "vm/compiler.h" |
| 8 #include "vm/flags.h" | 8 #include "vm/flags.h" |
| 9 #include "vm/flow_graph.h" | 9 #include "vm/flow_graph.h" |
| 10 #include "vm/flow_graph_builder.h" | 10 #include "vm/flow_graph_builder.h" |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 Array& ic_data_array = Array::Handle(); | 487 Array& ic_data_array = Array::Handle(); |
| 488 if (function.HasCode()) { | 488 if (function.HasCode()) { |
| 489 const Code& unoptimized_code = | 489 const Code& unoptimized_code = |
| 490 Code::Handle(function.unoptimized_code()); | 490 Code::Handle(function.unoptimized_code()); |
| 491 ic_data_array = unoptimized_code.ExtractTypeFeedbackArray(); | 491 ic_data_array = unoptimized_code.ExtractTypeFeedbackArray(); |
| 492 } | 492 } |
| 493 | 493 |
| 494 // Build the callee graph. | 494 // Build the callee graph. |
| 495 InlineExitCollector* exit_collector = | 495 InlineExitCollector* exit_collector = |
| 496 new InlineExitCollector(caller_graph_, call); | 496 new InlineExitCollector(caller_graph_, call); |
| 497 FlowGraphBuilder builder(parsed_function, | 497 FlowGraphBuilder builder(parsed_function, ic_data_array, exit_collector); |
| 498 ic_data_array, | |
| 499 exit_collector, | |
| 500 Isolate::kNoDeoptId); | |
| 501 builder.SetInitialBlockId(caller_graph_->max_block_id()); | 498 builder.SetInitialBlockId(caller_graph_->max_block_id()); |
| 502 FlowGraph* callee_graph; | 499 FlowGraph* callee_graph; |
| 503 { | 500 { |
| 504 TimerScope timer(FLAG_compiler_stats, | 501 TimerScope timer(FLAG_compiler_stats, |
| 505 &CompilerStats::graphinliner_build_timer, | 502 &CompilerStats::graphinliner_build_timer, |
| 506 isolate); | 503 isolate); |
| 507 callee_graph = builder.BuildGraph(); | 504 callee_graph = builder.BuildGraph(); |
| 508 } | 505 } |
| 509 | 506 |
| 510 // The parameter stubs are a copy of the actual arguments providing | 507 // The parameter stubs are a copy of the actual arguments providing |
| (...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 OS::Print("After Inlining of %s\n", flow_graph_-> | 1338 OS::Print("After Inlining of %s\n", flow_graph_-> |
| 1342 parsed_function().function().ToFullyQualifiedCString()); | 1339 parsed_function().function().ToFullyQualifiedCString()); |
| 1343 FlowGraphPrinter printer(*flow_graph_); | 1340 FlowGraphPrinter printer(*flow_graph_); |
| 1344 printer.PrintBlocks(); | 1341 printer.PrintBlocks(); |
| 1345 } | 1342 } |
| 1346 } | 1343 } |
| 1347 } | 1344 } |
| 1348 } | 1345 } |
| 1349 | 1346 |
| 1350 } // namespace dart | 1347 } // namespace dart |
| OLD | NEW |