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/bootstrap.h" | 5 #include "vm/bootstrap.h" |
6 | 6 |
7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
8 | 8 |
9 #include "vm/bootstrap_natives.h" | 9 #include "vm/bootstrap_natives.h" |
10 #include "vm/dart_api_impl.h" | 10 #include "vm/dart_api_impl.h" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 library = Library::MathLibrary(); | 114 library = Library::MathLibrary(); |
115 ASSERT(!library.IsNull()); | 115 ASSERT(!library.IsNull()); |
116 library.set_native_entry_resolver(resolver); | 116 library.set_native_entry_resolver(resolver); |
117 library.set_native_entry_symbol_resolver(symbol_resolver); | 117 library.set_native_entry_symbol_resolver(symbol_resolver); |
118 | 118 |
119 library = Library::MirrorsLibrary(); | 119 library = Library::MirrorsLibrary(); |
120 ASSERT(!library.IsNull()); | 120 ASSERT(!library.IsNull()); |
121 library.set_native_entry_resolver(resolver); | 121 library.set_native_entry_resolver(resolver); |
122 library.set_native_entry_symbol_resolver(symbol_resolver); | 122 library.set_native_entry_symbol_resolver(symbol_resolver); |
123 | 123 |
| 124 library = Library::ProfilerLibrary(); |
| 125 ASSERT(!library.IsNull()); |
| 126 library.set_native_entry_resolver(resolver); |
| 127 library.set_native_entry_symbol_resolver(symbol_resolver); |
| 128 |
124 library = Library::TypedDataLibrary(); | 129 library = Library::TypedDataLibrary(); |
125 ASSERT(!library.IsNull()); | 130 ASSERT(!library.IsNull()); |
126 library.set_native_entry_resolver(resolver); | 131 library.set_native_entry_resolver(resolver); |
127 library.set_native_entry_symbol_resolver(symbol_resolver); | 132 library.set_native_entry_symbol_resolver(symbol_resolver); |
128 | 133 |
129 library = Library::VMServiceLibrary(); | 134 library = Library::VMServiceLibrary(); |
130 ASSERT(!library.IsNull()); | 135 ASSERT(!library.IsNull()); |
131 library.set_native_entry_resolver(resolver); | 136 library.set_native_entry_resolver(resolver); |
132 library.set_native_entry_symbol_resolver(symbol_resolver); | 137 library.set_native_entry_symbol_resolver(symbol_resolver); |
133 } | 138 } |
134 | 139 |
135 | 140 |
136 bool Bootstrap::IsBootstapResolver(Dart_NativeEntryResolver resolver) { | 141 bool Bootstrap::IsBootstapResolver(Dart_NativeEntryResolver resolver) { |
137 return (resolver == | 142 return (resolver == |
138 reinterpret_cast<Dart_NativeEntryResolver>(BootstrapNatives::Lookup)); | 143 reinterpret_cast<Dart_NativeEntryResolver>(BootstrapNatives::Lookup)); |
139 } | 144 } |
140 | 145 |
141 } // namespace dart | 146 } // namespace dart |
OLD | NEW |