| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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/compiler.h" | 5 #include "vm/compiler.h" |
| 6 | 6 |
| 7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
| 8 | 8 |
| 9 #include "vm/ast_printer.h" | 9 #include "vm/ast_printer.h" |
| 10 #include "vm/block_scheduler.h" | 10 #include "vm/block_scheduler.h" |
| 11 #include "vm/branch_optimizer.h" | 11 #include "vm/branch_optimizer.h" |
| 12 #include "vm/cha.h" | 12 #include "vm/cha.h" |
| 13 #include "vm/code_generator.h" | |
| 14 #include "vm/code_patcher.h" | 13 #include "vm/code_patcher.h" |
| 15 #include "vm/constant_propagator.h" | 14 #include "vm/constant_propagator.h" |
| 16 #include "vm/dart_entry.h" | 15 #include "vm/dart_entry.h" |
| 17 #include "vm/debugger.h" | 16 #include "vm/debugger.h" |
| 18 #include "vm/deopt_instructions.h" | 17 #include "vm/deopt_instructions.h" |
| 19 #include "vm/kernel.h" | |
| 20 #include "vm/kernel_to_il.h" | |
| 21 #include "vm/disassembler.h" | 18 #include "vm/disassembler.h" |
| 22 #include "vm/exceptions.h" | 19 #include "vm/exceptions.h" |
| 23 #include "vm/flags.h" | 20 #include "vm/flags.h" |
| 24 #include "vm/flow_graph.h" | 21 #include "vm/flow_graph.h" |
| 25 #include "vm/flow_graph_allocator.h" | 22 #include "vm/flow_graph_allocator.h" |
| 26 #include "vm/flow_graph_builder.h" | 23 #include "vm/flow_graph_builder.h" |
| 27 #include "vm/flow_graph_compiler.h" | 24 #include "vm/flow_graph_compiler.h" |
| 28 #include "vm/flow_graph_inliner.h" | 25 #include "vm/flow_graph_inliner.h" |
| 29 #include "vm/flow_graph_range_analysis.h" | 26 #include "vm/flow_graph_range_analysis.h" |
| 30 #include "vm/flow_graph_type_propagator.h" | 27 #include "vm/flow_graph_type_propagator.h" |
| 31 #include "vm/il_printer.h" | 28 #include "vm/il_printer.h" |
| 32 #include "vm/jit_optimizer.h" | 29 #include "vm/jit_optimizer.h" |
| 30 #include "vm/kernel.h" |
| 31 #include "vm/kernel_to_il.h" |
| 33 #include "vm/longjump.h" | 32 #include "vm/longjump.h" |
| 34 #include "vm/object.h" | 33 #include "vm/object.h" |
| 35 #include "vm/object_store.h" | 34 #include "vm/object_store.h" |
| 36 #include "vm/os.h" | 35 #include "vm/os.h" |
| 37 #include "vm/parser.h" | 36 #include "vm/parser.h" |
| 38 #include "vm/precompiler.h" | 37 #include "vm/precompiler.h" |
| 39 #include "vm/redundancy_elimination.h" | 38 #include "vm/redundancy_elimination.h" |
| 39 #include "vm/regexp_assembler.h" |
| 40 #include "vm/regexp_parser.h" | 40 #include "vm/regexp_parser.h" |
| 41 #include "vm/regexp_assembler.h" | 41 #include "vm/runtime_entry.h" |
| 42 #include "vm/symbols.h" | 42 #include "vm/symbols.h" |
| 43 #include "vm/tags.h" | 43 #include "vm/tags.h" |
| 44 #include "vm/thread_registry.h" | 44 #include "vm/thread_registry.h" |
| 45 #include "vm/timeline.h" | 45 #include "vm/timeline.h" |
| 46 #include "vm/timer.h" | 46 #include "vm/timer.h" |
| 47 | 47 |
| 48 namespace dart { | 48 namespace dart { |
| 49 | 49 |
| 50 DEFINE_FLAG(bool, | 50 DEFINE_FLAG(bool, |
| 51 allocation_sinking, | 51 allocation_sinking, |
| (...skipping 2258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2310 | 2310 |
| 2311 | 2311 |
| 2312 bool BackgroundCompiler::IsDisabled() { | 2312 bool BackgroundCompiler::IsDisabled() { |
| 2313 UNREACHABLE(); | 2313 UNREACHABLE(); |
| 2314 return true; | 2314 return true; |
| 2315 } | 2315 } |
| 2316 | 2316 |
| 2317 #endif // DART_PRECOMPILED_RUNTIME | 2317 #endif // DART_PRECOMPILED_RUNTIME |
| 2318 | 2318 |
| 2319 } // namespace dart | 2319 } // namespace dart |
| OLD | NEW |