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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) \ |
363 V(WeakProperty_new, 2) \ | 364 V(WeakProperty_new, 2) \ |
364 V(WeakProperty_getKey, 1) \ | 365 V(WeakProperty_getKey, 1) \ |
365 V(WeakProperty_getValue, 1) \ | 366 V(WeakProperty_getValue, 1) \ |
366 V(WeakProperty_setValue, 2) \ | 367 V(WeakProperty_setValue, 2) \ |
367 V(Uri_isWindowsPlatform, 0) \ | 368 V(Uri_isWindowsPlatform, 0) \ |
368 V(LibraryPrefix_load, 1) \ | 369 V(LibraryPrefix_load, 1) \ |
369 V(LibraryPrefix_invalidateDependentCode, 1) \ | 370 V(LibraryPrefix_invalidateDependentCode, 1) \ |
370 V(LibraryPrefix_loadError, 1) \ | 371 V(LibraryPrefix_loadError, 1) \ |
371 V(UserTag_new, 2) \ | 372 V(UserTag_new, 2) \ |
372 V(UserTag_label, 1) \ | 373 V(UserTag_label, 1) \ |
(...skipping 16 matching lines...) Expand all Loading... |
389 static void DN_##name(Dart_NativeArguments args); | 390 static void DN_##name(Dart_NativeArguments args); |
390 | 391 |
391 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 392 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
392 | 393 |
393 #undef DECLARE_BOOTSTRAP_NATIVE | 394 #undef DECLARE_BOOTSTRAP_NATIVE |
394 }; | 395 }; |
395 | 396 |
396 } // namespace dart | 397 } // namespace dart |
397 | 398 |
398 #endif // VM_BOOTSTRAP_NATIVES_H_ | 399 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |