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 #ifndef VM_BOOTSTRAP_NATIVES_H_ | 5 #ifndef VM_BOOTSTRAP_NATIVES_H_ |
6 #define VM_BOOTSTRAP_NATIVES_H_ | 6 #define VM_BOOTSTRAP_NATIVES_H_ |
7 | 7 |
8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
9 | 9 |
10 // bootstrap dart natives used in the core dart library. | 10 // bootstrap dart natives used in the core dart library. |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 V(Uint32x4_select, 3) \ | 233 V(Uint32x4_select, 3) \ |
234 V(Uint32x4_toFloat32x4, 1) \ | 234 V(Uint32x4_toFloat32x4, 1) \ |
235 V(isolate_getPortInternal, 0) \ | 235 V(isolate_getPortInternal, 0) \ |
236 V(isolate_spawnFunction, 2) \ | 236 V(isolate_spawnFunction, 2) \ |
237 V(isolate_spawnUri, 1) \ | 237 V(isolate_spawnUri, 1) \ |
238 V(Mirrors_isLocalPort, 1) \ | 238 V(Mirrors_isLocalPort, 1) \ |
239 V(Mirrors_makeLocalInstanceMirror, 1) \ | 239 V(Mirrors_makeLocalInstanceMirror, 1) \ |
240 V(Mirrors_makeLocalClassMirror, 1) \ | 240 V(Mirrors_makeLocalClassMirror, 1) \ |
241 V(Mirrors_makeLocalMirrorSystem, 0) \ | 241 V(Mirrors_makeLocalMirrorSystem, 0) \ |
242 V(Mirrors_metadata, 1) \ | 242 V(Mirrors_metadata, 1) \ |
243 V(LocalObjectMirrorImpl_invoke, 4) \ | 243 V(InstanceMirror_invoke, 4) \ |
244 V(LocalObjectMirrorImpl_getField, 2) \ | 244 V(InstanceMirror_invokeGetter, 3) \ |
245 V(LocalObjectMirrorImpl_setField, 4) \ | 245 V(InstanceMirror_invokeSetter, 4) \ |
246 V(LocalClosureMirrorImpl_apply, 3) \ | 246 V(ClosureMirror_apply, 2) \ |
247 V(LocalClassMirrorImpl_invokeConstructor, 4) \ | |
248 V(ClassMirror_name, 1) \ | 247 V(ClassMirror_name, 1) \ |
| 248 V(ClassMirror_invoke, 4) \ |
| 249 V(ClassMirror_invokeGetter, 3) \ |
| 250 V(ClassMirror_invokeSetter, 4) \ |
| 251 V(ClassMirror_invokeConstructor, 3) \ |
| 252 V(LibraryMirror_invoke, 4) \ |
| 253 V(LibraryMirror_invokeGetter, 3) \ |
| 254 V(LibraryMirror_invokeSetter, 4) \ |
249 V(MethodMirror_name, 1) \ | 255 V(MethodMirror_name, 1) \ |
250 V(GrowableObjectArray_allocate, 2) \ | 256 V(GrowableObjectArray_allocate, 2) \ |
251 V(GrowableObjectArray_getIndexed, 2) \ | 257 V(GrowableObjectArray_getIndexed, 2) \ |
252 V(GrowableObjectArray_setIndexed, 3) \ | 258 V(GrowableObjectArray_setIndexed, 3) \ |
253 V(GrowableObjectArray_getLength, 1) \ | 259 V(GrowableObjectArray_getLength, 1) \ |
254 V(GrowableObjectArray_getCapacity, 1) \ | 260 V(GrowableObjectArray_getCapacity, 1) \ |
255 V(GrowableObjectArray_setLength, 2) \ | 261 V(GrowableObjectArray_setLength, 2) \ |
256 V(GrowableObjectArray_setData, 2) \ | 262 V(GrowableObjectArray_setData, 2) \ |
257 V(WeakProperty_new, 2) \ | 263 V(WeakProperty_new, 2) \ |
258 V(WeakProperty_getKey, 1) \ | 264 V(WeakProperty_getKey, 1) \ |
259 V(WeakProperty_getValue, 1) \ | 265 V(WeakProperty_getValue, 1) \ |
260 V(WeakProperty_setValue, 2) \ | 266 V(WeakProperty_setValue, 2) \ |
261 | 267 |
262 class BootstrapNatives : public AllStatic { | 268 class BootstrapNatives : public AllStatic { |
263 public: | 269 public: |
264 static Dart_NativeFunction Lookup(Dart_Handle name, int argument_count); | 270 static Dart_NativeFunction Lookup(Dart_Handle name, int argument_count); |
265 | 271 |
266 #define DECLARE_BOOTSTRAP_NATIVE(name, ignored) \ | 272 #define DECLARE_BOOTSTRAP_NATIVE(name, ignored) \ |
267 static void DN_##name(Dart_NativeArguments args); | 273 static void DN_##name(Dart_NativeArguments args); |
268 | 274 |
269 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 275 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
270 | 276 |
271 #undef DECLARE_BOOTSTRAP_NATIVE | 277 #undef DECLARE_BOOTSTRAP_NATIVE |
272 }; | 278 }; |
273 | 279 |
274 } // namespace dart | 280 } // namespace dart |
275 | 281 |
276 #endif // VM_BOOTSTRAP_NATIVES_H_ | 282 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |