| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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/intermediate_language.h" | 5 #include "vm/intermediate_language.h" |
| 6 | 6 |
| 7 #include "vm/bit_vector.h" | 7 #include "vm/bit_vector.h" |
| 8 #include "vm/bootstrap.h" | 8 #include "vm/bootstrap.h" |
| 9 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
| 10 #include "vm/constant_propagator.h" | 10 #include "vm/constant_propagator.h" |
| 11 #include "vm/cpu.h" | 11 #include "vm/cpu.h" |
| 12 #include "vm/dart_entry.h" | 12 #include "vm/dart_entry.h" |
| 13 #include "vm/flow_graph_allocator.h" | 13 #include "vm/flow_graph_allocator.h" |
| 14 #include "vm/flow_graph_builder.h" | 14 #include "vm/flow_graph_builder.h" |
| 15 #include "vm/flow_graph_compiler.h" | 15 #include "vm/flow_graph_compiler.h" |
| 16 #include "vm/flow_graph_optimizer.h" | |
| 17 #include "vm/flow_graph_range_analysis.h" | 16 #include "vm/flow_graph_range_analysis.h" |
| 18 #include "vm/locations.h" | 17 #include "vm/locations.h" |
| 19 #include "vm/method_recognizer.h" | 18 #include "vm/method_recognizer.h" |
| 20 #include "vm/object.h" | 19 #include "vm/object.h" |
| 21 #include "vm/object_store.h" | 20 #include "vm/object_store.h" |
| 22 #include "vm/os.h" | 21 #include "vm/os.h" |
| 23 #include "vm/regexp_assembler_ir.h" | 22 #include "vm/regexp_assembler_ir.h" |
| 24 #include "vm/resolver.h" | 23 #include "vm/resolver.h" |
| 25 #include "vm/scopes.h" | 24 #include "vm/scopes.h" |
| 26 #include "vm/stub_code.h" | 25 #include "vm/stub_code.h" |
| (...skipping 3703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3730 set_native_c_function(native_function); | 3729 set_native_c_function(native_function); |
| 3731 function().SetIsNativeAutoSetupScope(auto_setup_scope); | 3730 function().SetIsNativeAutoSetupScope(auto_setup_scope); |
| 3732 Dart_NativeEntryResolver resolver = library.native_entry_resolver(); | 3731 Dart_NativeEntryResolver resolver = library.native_entry_resolver(); |
| 3733 bool is_bootstrap_native = Bootstrap::IsBootstapResolver(resolver); | 3732 bool is_bootstrap_native = Bootstrap::IsBootstapResolver(resolver); |
| 3734 set_is_bootstrap_native(is_bootstrap_native); | 3733 set_is_bootstrap_native(is_bootstrap_native); |
| 3735 } | 3734 } |
| 3736 | 3735 |
| 3737 #undef __ | 3736 #undef __ |
| 3738 | 3737 |
| 3739 } // namespace dart | 3738 } // namespace dart |
| OLD | NEW |