OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 #include "vm/ast_printer.h" | 8 #include "vm/ast_printer.h" |
9 #include "vm/code_generator.h" | 9 #include "vm/code_generator.h" |
10 #include "vm/code_index_table.h" | 10 #include "vm/code_index_table.h" |
11 #include "vm/code_patcher.h" | 11 #include "vm/code_patcher.h" |
12 #include "vm/dart_entry.h" | 12 #include "vm/dart_entry.h" |
13 #include "vm/disassembler.h" | 13 #include "vm/disassembler.h" |
14 #include "vm/flags.h" | 14 #include "vm/flags.h" |
15 #include "vm/ic_stubs.h" | |
16 #include "vm/object.h" | 15 #include "vm/object.h" |
17 #include "vm/object_store.h" | 16 #include "vm/object_store.h" |
18 #include "vm/opt_code_generator.h" | 17 #include "vm/opt_code_generator.h" |
19 #include "vm/os.h" | 18 #include "vm/os.h" |
20 #include "vm/parser.h" | 19 #include "vm/parser.h" |
21 #include "vm/scanner.h" | 20 #include "vm/scanner.h" |
22 #include "vm/timer.h" | 21 #include "vm/timer.h" |
23 | 22 |
24 namespace dart { | 23 namespace dart { |
25 | 24 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 kNoArgumentNames)); | 267 kNoArgumentNames)); |
269 if (result.IsUnhandledException()) { | 268 if (result.IsUnhandledException()) { |
270 // TODO(srdjan): implement proper exit from compiler. | 269 // TODO(srdjan): implement proper exit from compiler. |
271 UNIMPLEMENTED(); | 270 UNIMPLEMENTED(); |
272 } | 271 } |
273 return result.raw(); | 272 return result.raw(); |
274 } | 273 } |
275 | 274 |
276 | 275 |
277 } // namespace dart | 276 } // namespace dart |
OLD | NEW |