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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 V(LibraryPrefix_loadError, 1) \ | 349 V(LibraryPrefix_loadError, 1) \ |
350 V(LibraryPrefix_isLoaded, 1) \ | 350 V(LibraryPrefix_isLoaded, 1) \ |
351 V(UserTag_new, 2) \ | 351 V(UserTag_new, 2) \ |
352 V(UserTag_label, 1) \ | 352 V(UserTag_label, 1) \ |
353 V(UserTag_defaultTag, 0) \ | 353 V(UserTag_defaultTag, 0) \ |
354 V(UserTag_makeCurrent, 1) \ | 354 V(UserTag_makeCurrent, 1) \ |
355 V(Profiler_getCurrentTag, 0) \ | 355 V(Profiler_getCurrentTag, 0) \ |
356 V(ClassID_getID, 1) \ | 356 V(ClassID_getID, 1) \ |
357 V(VMService_SendIsolateServiceMessage, 2) \ | 357 V(VMService_SendIsolateServiceMessage, 2) \ |
358 V(VMService_SendRootServiceMessage, 1) \ | 358 V(VMService_SendRootServiceMessage, 1) \ |
| 359 V(VMService_SendObjectRootServiceMessage, 1) \ |
359 V(VMService_OnStart, 0) \ | 360 V(VMService_OnStart, 0) \ |
360 V(VMService_OnExit, 0) \ | 361 V(VMService_OnExit, 0) \ |
361 V(VMService_OnServerAddressChange, 1) \ | 362 V(VMService_OnServerAddressChange, 1) \ |
362 V(VMService_ListenStream, 1) \ | 363 V(VMService_ListenStream, 1) \ |
363 V(VMService_CancelStream, 1) \ | 364 V(VMService_CancelStream, 1) \ |
364 V(VMService_RequestAssets, 0) \ | 365 V(VMService_RequestAssets, 0) \ |
365 V(VMService_DecodeAssets, 1) \ | 366 V(VMService_DecodeAssets, 1) \ |
366 | 367 |
367 // List of bootstrap native entry points used in the dart:mirror library. | 368 // List of bootstrap native entry points used in the dart:mirror library. |
368 #define MIRRORS_BOOTSTRAP_NATIVE_LIST(V) \ | 369 #define MIRRORS_BOOTSTRAP_NATIVE_LIST(V) \ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 #ifndef PRODUCT | 432 #ifndef PRODUCT |
432 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 433 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
433 #endif | 434 #endif |
434 | 435 |
435 #undef DECLARE_BOOTSTRAP_NATIVE | 436 #undef DECLARE_BOOTSTRAP_NATIVE |
436 }; | 437 }; |
437 | 438 |
438 } // namespace dart | 439 } // namespace dart |
439 | 440 |
440 #endif // VM_BOOTSTRAP_NATIVES_H_ | 441 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |