| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 V(Smi_bitNegate, 1) \ | 64 V(Smi_bitNegate, 1) \ |
| 65 V(Smi_bitLength, 1) \ | 65 V(Smi_bitLength, 1) \ |
| 66 V(Mint_bitNegate, 1) \ | 66 V(Mint_bitNegate, 1) \ |
| 67 V(Mint_bitLength, 1) \ | 67 V(Mint_bitLength, 1) \ |
| 68 V(Mint_shlFromInt, 2) \ | 68 V(Mint_shlFromInt, 2) \ |
| 69 V(Bigint_getNeg, 1) \ | 69 V(Bigint_getNeg, 1) \ |
| 70 V(Bigint_getUsed, 1) \ | 70 V(Bigint_getUsed, 1) \ |
| 71 V(Bigint_getDigits, 1) \ | 71 V(Bigint_getDigits, 1) \ |
| 72 V(Bigint_allocate, 4) \ | 72 V(Bigint_allocate, 4) \ |
| 73 V(Developer_debugger, 2) \ | 73 V(Developer_debugger, 2) \ |
| 74 V(Developer_getIsolateIdFromSendPort, 1) \ |
| 74 V(Developer_getServerInfo, 1) \ | 75 V(Developer_getServerInfo, 1) \ |
| 75 V(Developer_getServiceMajorVersion, 0) \ | 76 V(Developer_getServiceMajorVersion, 0) \ |
| 76 V(Developer_getServiceMinorVersion, 0) \ | 77 V(Developer_getServiceMinorVersion, 0) \ |
| 77 V(Developer_inspect, 1) \ | 78 V(Developer_inspect, 1) \ |
| 78 V(Developer_lookupExtension, 1) \ | 79 V(Developer_lookupExtension, 1) \ |
| 79 V(Developer_registerExtension, 2) \ | 80 V(Developer_registerExtension, 2) \ |
| 80 V(Developer_log, 8) \ | 81 V(Developer_log, 8) \ |
| 81 V(Developer_postEvent, 2) \ | 82 V(Developer_postEvent, 2) \ |
| 82 V(Developer_webServerControl, 2) \ | 83 V(Developer_webServerControl, 2) \ |
| 83 V(Double_getIsNegative, 1) \ | 84 V(Double_getIsNegative, 1) \ |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 #ifndef PRODUCT | 428 #ifndef PRODUCT |
| 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 |