| 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 27 matching lines...) Expand all Loading... |
| 38 V(Integer_bitXorFromInteger, 2) \ | 38 V(Integer_bitXorFromInteger, 2) \ |
| 39 V(Integer_addFromInteger, 2) \ | 39 V(Integer_addFromInteger, 2) \ |
| 40 V(Integer_subFromInteger, 2) \ | 40 V(Integer_subFromInteger, 2) \ |
| 41 V(Integer_mulFromInteger, 2) \ | 41 V(Integer_mulFromInteger, 2) \ |
| 42 V(Integer_truncDivFromInteger, 2) \ | 42 V(Integer_truncDivFromInteger, 2) \ |
| 43 V(Integer_moduloFromInteger, 2) \ | 43 V(Integer_moduloFromInteger, 2) \ |
| 44 V(Integer_greaterThanFromInteger, 2) \ | 44 V(Integer_greaterThanFromInteger, 2) \ |
| 45 V(Integer_equalToInteger, 2) \ | 45 V(Integer_equalToInteger, 2) \ |
| 46 V(Integer_fromEnvironment, 3) \ | 46 V(Integer_fromEnvironment, 3) \ |
| 47 V(Integer_parse, 1) \ | 47 V(Integer_parse, 1) \ |
| 48 V(Integer_leftShiftWithMask32, 3) \ | |
| 49 V(Bool_fromEnvironment, 3) \ | 48 V(Bool_fromEnvironment, 3) \ |
| 50 V(CapabilityImpl_factory, 1) \ | 49 V(CapabilityImpl_factory, 1) \ |
| 51 V(CapabilityImpl_equals, 2) \ | 50 V(CapabilityImpl_equals, 2) \ |
| 52 V(CapabilityImpl_get_hashcode, 1) \ | 51 V(CapabilityImpl_get_hashcode, 1) \ |
| 53 V(RawReceivePortImpl_factory, 1) \ | 52 V(RawReceivePortImpl_factory, 1) \ |
| 54 V(RawReceivePortImpl_get_id, 1) \ | 53 V(RawReceivePortImpl_get_id, 1) \ |
| 55 V(RawReceivePortImpl_get_sendport, 1) \ | 54 V(RawReceivePortImpl_get_sendport, 1) \ |
| 56 V(RawReceivePortImpl_closeInternal, 1) \ | 55 V(RawReceivePortImpl_closeInternal, 1) \ |
| 57 V(SendPortImpl_get_id, 1) \ | 56 V(SendPortImpl_get_id, 1) \ |
| 58 V(SendPortImpl_get_hashcode, 1) \ | 57 V(SendPortImpl_get_hashcode, 1) \ |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 #ifndef PRODUCT | 429 #ifndef PRODUCT |
| 431 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 430 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 432 #endif | 431 #endif |
| 433 | 432 |
| 434 #undef DECLARE_BOOTSTRAP_NATIVE | 433 #undef DECLARE_BOOTSTRAP_NATIVE |
| 435 }; | 434 }; |
| 436 | 435 |
| 437 } // namespace dart | 436 } // namespace dart |
| 438 | 437 |
| 439 #endif // VM_BOOTSTRAP_NATIVES_H_ | 438 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |