| 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" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "vm/flow_graph_compiler.h" | 24 #include "vm/flow_graph_compiler.h" |
| 25 #include "vm/flow_graph_inliner.h" | 25 #include "vm/flow_graph_inliner.h" |
| 26 #include "vm/flow_graph_optimizer.h" | 26 #include "vm/flow_graph_optimizer.h" |
| 27 #include "vm/flow_graph_type_propagator.h" | 27 #include "vm/flow_graph_type_propagator.h" |
| 28 #include "vm/il_printer.h" | 28 #include "vm/il_printer.h" |
| 29 #include "vm/longjump.h" | 29 #include "vm/longjump.h" |
| 30 #include "vm/object.h" | 30 #include "vm/object.h" |
| 31 #include "vm/object_store.h" | 31 #include "vm/object_store.h" |
| 32 #include "vm/os.h" | 32 #include "vm/os.h" |
| 33 #include "vm/parser.h" | 33 #include "vm/parser.h" |
| 34 #include "vm/redundancy_elimination.h" |
| 34 #include "vm/regexp_parser.h" | 35 #include "vm/regexp_parser.h" |
| 35 #include "vm/regexp_assembler.h" | 36 #include "vm/regexp_assembler.h" |
| 36 #include "vm/scanner.h" | 37 #include "vm/scanner.h" |
| 37 #include "vm/symbols.h" | 38 #include "vm/symbols.h" |
| 38 #include "vm/tags.h" | 39 #include "vm/tags.h" |
| 39 #include "vm/thread_registry.h" | 40 #include "vm/thread_registry.h" |
| 40 #include "vm/timer.h" | 41 #include "vm/timer.h" |
| 41 | 42 |
| 42 namespace dart { | 43 namespace dart { |
| 43 | 44 |
| (...skipping 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2036 } | 2037 } |
| 2037 | 2038 |
| 2038 | 2039 |
| 2039 void BackgroundCompiler::EnsureInit(Thread* thread) { | 2040 void BackgroundCompiler::EnsureInit(Thread* thread) { |
| 2040 UNREACHABLE(); | 2041 UNREACHABLE(); |
| 2041 } | 2042 } |
| 2042 | 2043 |
| 2043 #endif // DART_PRECOMPILED_RUNTIME | 2044 #endif // DART_PRECOMPILED_RUNTIME |
| 2044 | 2045 |
| 2045 } // namespace dart | 2046 } // namespace dart |
| OLD | NEW |