| 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/cha.h" | 11 #include "vm/cha.h" |
| 12 #include "vm/code_generator.h" | 12 #include "vm/code_generator.h" |
| 13 #include "vm/code_patcher.h" | 13 #include "vm/code_patcher.h" |
| 14 #include "vm/constant_propagator.h" |
| 14 #include "vm/dart_entry.h" | 15 #include "vm/dart_entry.h" |
| 15 #include "vm/debugger.h" | 16 #include "vm/debugger.h" |
| 16 #include "vm/deopt_instructions.h" | 17 #include "vm/deopt_instructions.h" |
| 17 #include "vm/exceptions.h" | 18 #include "vm/exceptions.h" |
| 18 #include "vm/flags.h" | 19 #include "vm/flags.h" |
| 19 #include "vm/flow_graph.h" | 20 #include "vm/flow_graph.h" |
| 20 #include "vm/flow_graph_allocator.h" | 21 #include "vm/flow_graph_allocator.h" |
| 21 #include "vm/flow_graph_builder.h" | 22 #include "vm/flow_graph_builder.h" |
| 22 #include "vm/flow_graph_compiler.h" | 23 #include "vm/flow_graph_compiler.h" |
| 23 #include "vm/flow_graph_inliner.h" | 24 #include "vm/flow_graph_inliner.h" |
| (...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 const Object& result = | 1190 const Object& result = |
| 1190 PassiveObject::Handle(isolate->object_store()->sticky_error()); | 1191 PassiveObject::Handle(isolate->object_store()->sticky_error()); |
| 1191 isolate->object_store()->clear_sticky_error(); | 1192 isolate->object_store()->clear_sticky_error(); |
| 1192 return result.raw(); | 1193 return result.raw(); |
| 1193 } | 1194 } |
| 1194 UNREACHABLE(); | 1195 UNREACHABLE(); |
| 1195 return Object::null(); | 1196 return Object::null(); |
| 1196 } | 1197 } |
| 1197 | 1198 |
| 1198 } // namespace dart | 1199 } // namespace dart |
| OLD | NEW |