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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 V(GrowableList_allocate, 2) \ | 315 V(GrowableList_allocate, 2) \ |
316 V(GrowableList_getIndexed, 2) \ | 316 V(GrowableList_getIndexed, 2) \ |
317 V(GrowableList_setIndexed, 3) \ | 317 V(GrowableList_setIndexed, 3) \ |
318 V(GrowableList_getLength, 1) \ | 318 V(GrowableList_getLength, 1) \ |
319 V(GrowableList_getCapacity, 1) \ | 319 V(GrowableList_getCapacity, 1) \ |
320 V(GrowableList_setLength, 2) \ | 320 V(GrowableList_setLength, 2) \ |
321 V(GrowableList_setData, 2) \ | 321 V(GrowableList_setData, 2) \ |
322 V(Internal_makeListFixedLength, 1) \ | 322 V(Internal_makeListFixedLength, 1) \ |
323 V(Internal_makeFixedListUnmodifiable, 1) \ | 323 V(Internal_makeFixedListUnmodifiable, 1) \ |
324 V(Internal_inquireIs64Bit, 0) \ | 324 V(Internal_inquireIs64Bit, 0) \ |
| 325 V(Internal_prependTypeArguments, 3) \ |
325 V(LinkedHashMap_getIndex, 1) \ | 326 V(LinkedHashMap_getIndex, 1) \ |
326 V(LinkedHashMap_setIndex, 2) \ | 327 V(LinkedHashMap_setIndex, 2) \ |
327 V(LinkedHashMap_getData, 1) \ | 328 V(LinkedHashMap_getData, 1) \ |
328 V(LinkedHashMap_setData, 2) \ | 329 V(LinkedHashMap_setData, 2) \ |
329 V(LinkedHashMap_getHashMask, 1) \ | 330 V(LinkedHashMap_getHashMask, 1) \ |
330 V(LinkedHashMap_setHashMask, 2) \ | 331 V(LinkedHashMap_setHashMask, 2) \ |
331 V(LinkedHashMap_getUsedData, 1) \ | 332 V(LinkedHashMap_getUsedData, 1) \ |
332 V(LinkedHashMap_setUsedData, 2) \ | 333 V(LinkedHashMap_setUsedData, 2) \ |
333 V(LinkedHashMap_getDeletedKeys, 1) \ | 334 V(LinkedHashMap_getDeletedKeys, 1) \ |
334 V(LinkedHashMap_setDeletedKeys, 2) \ | 335 V(LinkedHashMap_setDeletedKeys, 2) \ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) | 428 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) |
428 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 429 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
429 #endif | 430 #endif |
430 | 431 |
431 #undef DECLARE_BOOTSTRAP_NATIVE | 432 #undef DECLARE_BOOTSTRAP_NATIVE |
432 }; | 433 }; |
433 | 434 |
434 } // namespace dart | 435 } // namespace dart |
435 | 436 |
436 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ | 437 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |