| 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 RUNTIME_VM_BOOTSTRAP_NATIVES_H_ | 5 #ifndef RUNTIME_VM_BOOTSTRAP_NATIVES_H_ |
| 6 #define RUNTIME_VM_BOOTSTRAP_NATIVES_H_ | 6 #define RUNTIME_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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 V(LibraryPrefix_load, 1) \ | 344 V(LibraryPrefix_load, 1) \ |
| 345 V(LibraryPrefix_invalidateDependentCode, 1) \ | 345 V(LibraryPrefix_invalidateDependentCode, 1) \ |
| 346 V(LibraryPrefix_loadError, 1) \ | 346 V(LibraryPrefix_loadError, 1) \ |
| 347 V(LibraryPrefix_isLoaded, 1) \ | 347 V(LibraryPrefix_isLoaded, 1) \ |
| 348 V(UserTag_new, 2) \ | 348 V(UserTag_new, 2) \ |
| 349 V(UserTag_label, 1) \ | 349 V(UserTag_label, 1) \ |
| 350 V(UserTag_defaultTag, 0) \ | 350 V(UserTag_defaultTag, 0) \ |
| 351 V(UserTag_makeCurrent, 1) \ | 351 V(UserTag_makeCurrent, 1) \ |
| 352 V(Profiler_getCurrentTag, 0) \ | 352 V(Profiler_getCurrentTag, 0) \ |
| 353 V(ClassID_getID, 1) \ | 353 V(ClassID_getID, 1) \ |
| 354 V(ClassID_byName, 1) \ | |
| 355 V(VMService_SendIsolateServiceMessage, 2) \ | 354 V(VMService_SendIsolateServiceMessage, 2) \ |
| 356 V(VMService_SendRootServiceMessage, 1) \ | 355 V(VMService_SendRootServiceMessage, 1) \ |
| 357 V(VMService_SendObjectRootServiceMessage, 1) \ | 356 V(VMService_SendObjectRootServiceMessage, 1) \ |
| 358 V(VMService_OnStart, 0) \ | 357 V(VMService_OnStart, 0) \ |
| 359 V(VMService_OnExit, 0) \ | 358 V(VMService_OnExit, 0) \ |
| 360 V(VMService_OnServerAddressChange, 1) \ | 359 V(VMService_OnServerAddressChange, 1) \ |
| 361 V(VMService_ListenStream, 1) \ | 360 V(VMService_ListenStream, 1) \ |
| 362 V(VMService_CancelStream, 1) \ | 361 V(VMService_CancelStream, 1) \ |
| 363 V(VMService_RequestAssets, 0) \ | 362 V(VMService_RequestAssets, 0) \ |
| 364 V(VMService_DecodeAssets, 1) \ | 363 V(VMService_DecodeAssets, 1) \ |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) | 431 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) |
| 433 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 432 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 434 #endif | 433 #endif |
| 435 | 434 |
| 436 #undef DECLARE_BOOTSTRAP_NATIVE | 435 #undef DECLARE_BOOTSTRAP_NATIVE |
| 437 }; | 436 }; |
| 438 | 437 |
| 439 } // namespace dart | 438 } // namespace dart |
| 440 | 439 |
| 441 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ | 440 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |