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

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

Issue 983703003: Replace Linked{Identity,Custom}Hash{Map,Set} with compact implementation; remove old code and flag. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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 | Annotate | Revision Log
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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 V(LinkedHashMap_allocate, 1) \ 353 V(LinkedHashMap_allocate, 1) \
354 V(LinkedHashMap_getLength, 1) \ 354 V(LinkedHashMap_getLength, 1) \
355 V(LinkedHashMap_insertOrUpdate, 3) \ 355 V(LinkedHashMap_insertOrUpdate, 3) \
356 V(LinkedHashMap_lookUp, 2) \ 356 V(LinkedHashMap_lookUp, 2) \
357 V(LinkedHashMap_containsKey, 2) \ 357 V(LinkedHashMap_containsKey, 2) \
358 V(LinkedHashMap_remove, 2) \ 358 V(LinkedHashMap_remove, 2) \
359 V(LinkedHashMap_clear, 1) \ 359 V(LinkedHashMap_clear, 1) \
360 V(LinkedHashMap_toArray, 1) \ 360 V(LinkedHashMap_toArray, 1) \
361 V(LinkedHashMap_getModMark, 2) \ 361 V(LinkedHashMap_getModMark, 2) \
362 V(LinkedHashMap_useInternal, 0) \ 362 V(LinkedHashMap_useInternal, 0) \
363 V(LinkedHashMap_useCompact, 0) \
364 V(WeakProperty_new, 2) \ 363 V(WeakProperty_new, 2) \
365 V(WeakProperty_getKey, 1) \ 364 V(WeakProperty_getKey, 1) \
366 V(WeakProperty_getValue, 1) \ 365 V(WeakProperty_getValue, 1) \
367 V(WeakProperty_setValue, 2) \ 366 V(WeakProperty_setValue, 2) \
368 V(Uri_isWindowsPlatform, 0) \ 367 V(Uri_isWindowsPlatform, 0) \
369 V(LibraryPrefix_load, 1) \ 368 V(LibraryPrefix_load, 1) \
370 V(LibraryPrefix_invalidateDependentCode, 1) \ 369 V(LibraryPrefix_invalidateDependentCode, 1) \
371 V(LibraryPrefix_loadError, 1) \ 370 V(LibraryPrefix_loadError, 1) \
372 V(UserTag_new, 2) \ 371 V(UserTag_new, 2) \
373 V(UserTag_label, 1) \ 372 V(UserTag_label, 1) \
(...skipping 16 matching lines...) Expand all
390 static void DN_##name(Dart_NativeArguments args); 389 static void DN_##name(Dart_NativeArguments args);
391 390
392 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 391 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
393 392
394 #undef DECLARE_BOOTSTRAP_NATIVE 393 #undef DECLARE_BOOTSTRAP_NATIVE
395 }; 394 };
396 395
397 } // namespace dart 396 } // namespace dart
398 397
399 #endif // VM_BOOTSTRAP_NATIVES_H_ 398 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698