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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 V(GrowableList_getIndexed, 2) \ | 309 V(GrowableList_getIndexed, 2) \ |
310 V(GrowableList_setIndexed, 3) \ | 310 V(GrowableList_setIndexed, 3) \ |
311 V(GrowableList_getLength, 1) \ | 311 V(GrowableList_getLength, 1) \ |
312 V(GrowableList_getCapacity, 1) \ | 312 V(GrowableList_getCapacity, 1) \ |
313 V(GrowableList_setLength, 2) \ | 313 V(GrowableList_setLength, 2) \ |
314 V(GrowableList_setData, 2) \ | 314 V(GrowableList_setData, 2) \ |
315 V(Internal_makeListFixedLength, 1) \ | 315 V(Internal_makeListFixedLength, 1) \ |
316 V(Internal_makeFixedListUnmodifiable, 1) \ | 316 V(Internal_makeFixedListUnmodifiable, 1) \ |
317 V(Internal_inquireIs64Bit, 0) \ | 317 V(Internal_inquireIs64Bit, 0) \ |
318 V(Internal_prependTypeArguments, 3) \ | 318 V(Internal_prependTypeArguments, 3) \ |
| 319 V(InvocationMirror_unpackTypeArguments, 1) \ |
319 V(LinkedHashMap_getIndex, 1) \ | 320 V(LinkedHashMap_getIndex, 1) \ |
320 V(LinkedHashMap_setIndex, 2) \ | 321 V(LinkedHashMap_setIndex, 2) \ |
321 V(LinkedHashMap_getData, 1) \ | 322 V(LinkedHashMap_getData, 1) \ |
322 V(LinkedHashMap_setData, 2) \ | 323 V(LinkedHashMap_setData, 2) \ |
323 V(LinkedHashMap_getHashMask, 1) \ | 324 V(LinkedHashMap_getHashMask, 1) \ |
324 V(LinkedHashMap_setHashMask, 2) \ | 325 V(LinkedHashMap_setHashMask, 2) \ |
325 V(LinkedHashMap_getUsedData, 1) \ | 326 V(LinkedHashMap_getUsedData, 1) \ |
326 V(LinkedHashMap_setUsedData, 2) \ | 327 V(LinkedHashMap_setUsedData, 2) \ |
327 V(LinkedHashMap_getDeletedKeys, 1) \ | 328 V(LinkedHashMap_getDeletedKeys, 1) \ |
328 V(LinkedHashMap_setDeletedKeys, 2) \ | 329 V(LinkedHashMap_setDeletedKeys, 2) \ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 #if !defined(DART_PRECOMPILED_RUNTIME) | 422 #if !defined(DART_PRECOMPILED_RUNTIME) |
422 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 423 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
423 #endif | 424 #endif |
424 | 425 |
425 #undef DECLARE_BOOTSTRAP_NATIVE | 426 #undef DECLARE_BOOTSTRAP_NATIVE |
426 }; | 427 }; |
427 | 428 |
428 } // namespace dart | 429 } // namespace dart |
429 | 430 |
430 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ | 431 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |