Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(887)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 2485993002: VM: Support bootstrapping core libraries from Kernel binaries instead of source. (Closed)
Patch Set: Done Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 V(LibraryPrefix_load, 1) \ 339 V(LibraryPrefix_load, 1) \
340 V(LibraryPrefix_invalidateDependentCode, 1) \ 340 V(LibraryPrefix_invalidateDependentCode, 1) \
341 V(LibraryPrefix_loadError, 1) \ 341 V(LibraryPrefix_loadError, 1) \
342 V(LibraryPrefix_isLoaded, 1) \ 342 V(LibraryPrefix_isLoaded, 1) \
343 V(UserTag_new, 2) \ 343 V(UserTag_new, 2) \
344 V(UserTag_label, 1) \ 344 V(UserTag_label, 1) \
345 V(UserTag_defaultTag, 0) \ 345 V(UserTag_defaultTag, 0) \
346 V(UserTag_makeCurrent, 1) \ 346 V(UserTag_makeCurrent, 1) \
347 V(Profiler_getCurrentTag, 0) \ 347 V(Profiler_getCurrentTag, 0) \
348 V(ClassID_getID, 1) \ 348 V(ClassID_getID, 1) \
349 V(ClassID_byName, 1) \
349 V(VMService_SendIsolateServiceMessage, 2) \ 350 V(VMService_SendIsolateServiceMessage, 2) \
350 V(VMService_SendRootServiceMessage, 1) \ 351 V(VMService_SendRootServiceMessage, 1) \
351 V(VMService_SendObjectRootServiceMessage, 1) \ 352 V(VMService_SendObjectRootServiceMessage, 1) \
352 V(VMService_OnStart, 0) \ 353 V(VMService_OnStart, 0) \
353 V(VMService_OnExit, 0) \ 354 V(VMService_OnExit, 0) \
354 V(VMService_OnServerAddressChange, 1) \ 355 V(VMService_OnServerAddressChange, 1) \
355 V(VMService_ListenStream, 1) \ 356 V(VMService_ListenStream, 1) \
356 V(VMService_CancelStream, 1) \ 357 V(VMService_CancelStream, 1) \
357 V(VMService_RequestAssets, 0) \ 358 V(VMService_RequestAssets, 0) \
358 V(VMService_DecodeAssets, 1) \ 359 V(VMService_DecodeAssets, 1) \
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 #ifndef PRODUCT 426 #ifndef PRODUCT
426 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 427 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
427 #endif 428 #endif
428 429
429 #undef DECLARE_BOOTSTRAP_NATIVE 430 #undef DECLARE_BOOTSTRAP_NATIVE
430 }; 431 };
431 432
432 } // namespace dart 433 } // namespace dart
433 434
434 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 435 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698