| 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/cha.h" | 12 #include "vm/cha.h" |
| 12 #include "vm/code_generator.h" | 13 #include "vm/code_generator.h" |
| 13 #include "vm/code_patcher.h" | 14 #include "vm/code_patcher.h" |
| 14 #include "vm/constant_propagator.h" | 15 #include "vm/constant_propagator.h" |
| 15 #include "vm/dart_entry.h" | 16 #include "vm/dart_entry.h" |
| 16 #include "vm/debugger.h" | 17 #include "vm/debugger.h" |
| 17 #include "vm/deopt_instructions.h" | 18 #include "vm/deopt_instructions.h" |
| 18 #include "vm/exceptions.h" | 19 #include "vm/exceptions.h" |
| 19 #include "vm/flags.h" | 20 #include "vm/flags.h" |
| 20 #include "vm/flow_graph.h" | 21 #include "vm/flow_graph.h" |
| (...skipping 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2035 } | 2036 } |
| 2036 | 2037 |
| 2037 | 2038 |
| 2038 void BackgroundCompiler::EnsureInit(Thread* thread) { | 2039 void BackgroundCompiler::EnsureInit(Thread* thread) { |
| 2039 UNREACHABLE(); | 2040 UNREACHABLE(); |
| 2040 } | 2041 } |
| 2041 | 2042 |
| 2042 #endif // DART_PRECOMPILED_RUNTIME | 2043 #endif // DART_PRECOMPILED_RUNTIME |
| 2043 | 2044 |
| 2044 } // namespace dart | 2045 } // namespace dart |
| OLD | NEW |