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

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

Issue 1151523002: VM-internalize the default Map implementation. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix fingerprints. Created 5 years, 6 months 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
« no previous file with comments | « runtime/vm/benchmark_test.cc ('k') | runtime/vm/class_finalizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 V(GrowableList_getIndexed, 2) \ 350 V(GrowableList_getIndexed, 2) \
351 V(GrowableList_setIndexed, 3) \ 351 V(GrowableList_setIndexed, 3) \
352 V(GrowableList_getLength, 1) \ 352 V(GrowableList_getLength, 1) \
353 V(GrowableList_getCapacity, 1) \ 353 V(GrowableList_getCapacity, 1) \
354 V(GrowableList_setLength, 2) \ 354 V(GrowableList_setLength, 2) \
355 V(GrowableList_setData, 2) \ 355 V(GrowableList_setData, 2) \
356 V(Internal_makeListFixedLength, 1) \ 356 V(Internal_makeListFixedLength, 1) \
357 V(Internal_makeFixedListUnmodifiable, 1) \ 357 V(Internal_makeFixedListUnmodifiable, 1) \
358 V(Internal_inquireIs64Bit, 0) \ 358 V(Internal_inquireIs64Bit, 0) \
359 V(LinkedHashMap_allocate, 1) \ 359 V(LinkedHashMap_allocate, 1) \
360 V(LinkedHashMap_getLength, 1) \ 360 V(LinkedHashMap_getIndex, 1) \
361 V(LinkedHashMap_insertOrUpdate, 3) \ 361 V(LinkedHashMap_setIndex, 2) \
362 V(LinkedHashMap_lookUp, 2) \ 362 V(LinkedHashMap_getData, 1) \
363 V(LinkedHashMap_containsKey, 2) \ 363 V(LinkedHashMap_setData, 2) \
364 V(LinkedHashMap_remove, 2) \ 364 V(LinkedHashMap_getHashMask, 1) \
365 V(LinkedHashMap_clear, 1) \ 365 V(LinkedHashMap_setHashMask, 2) \
366 V(LinkedHashMap_toArray, 1) \ 366 V(LinkedHashMap_getUsedData, 1) \
367 V(LinkedHashMap_getModMark, 2) \ 367 V(LinkedHashMap_setUsedData, 2) \
368 V(LinkedHashMap_useInternal, 0) \ 368 V(LinkedHashMap_getDeletedKeys, 1) \
369 V(LinkedHashMap_setDeletedKeys, 2) \
369 V(WeakProperty_new, 2) \ 370 V(WeakProperty_new, 2) \
370 V(WeakProperty_getKey, 1) \ 371 V(WeakProperty_getKey, 1) \
371 V(WeakProperty_getValue, 1) \ 372 V(WeakProperty_getValue, 1) \
372 V(WeakProperty_setValue, 2) \ 373 V(WeakProperty_setValue, 2) \
373 V(Uri_isWindowsPlatform, 0) \ 374 V(Uri_isWindowsPlatform, 0) \
374 V(LibraryPrefix_load, 1) \ 375 V(LibraryPrefix_load, 1) \
375 V(LibraryPrefix_invalidateDependentCode, 1) \ 376 V(LibraryPrefix_invalidateDependentCode, 1) \
376 V(LibraryPrefix_loadError, 1) \ 377 V(LibraryPrefix_loadError, 1) \
377 V(UserTag_new, 2) \ 378 V(UserTag_new, 2) \
378 V(UserTag_label, 1) \ 379 V(UserTag_label, 1) \
(...skipping 16 matching lines...) Expand all
395 static void DN_##name(Dart_NativeArguments args); 396 static void DN_##name(Dart_NativeArguments args);
396 397
397 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 398 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
398 399
399 #undef DECLARE_BOOTSTRAP_NATIVE 400 #undef DECLARE_BOOTSTRAP_NATIVE
400 }; 401 };
401 402
402 } // namespace dart 403 } // namespace dart
403 404
404 #endif // VM_BOOTSTRAP_NATIVES_H_ 405 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/vm/benchmark_test.cc ('k') | runtime/vm/class_finalizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698