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 26 matching lines...) Expand all Loading... |
37 V(Integer_truncDivFromInteger, 2) \ | 37 V(Integer_truncDivFromInteger, 2) \ |
38 V(Integer_moduloFromInteger, 2) \ | 38 V(Integer_moduloFromInteger, 2) \ |
39 V(Integer_greaterThanFromInteger, 2) \ | 39 V(Integer_greaterThanFromInteger, 2) \ |
40 V(Integer_equalToInteger, 2) \ | 40 V(Integer_equalToInteger, 2) \ |
41 V(Integer_fromEnvironment, 3) \ | 41 V(Integer_fromEnvironment, 3) \ |
42 V(Integer_parse, 1) \ | 42 V(Integer_parse, 1) \ |
43 V(Integer_leftShiftWithMask32, 3) \ | 43 V(Integer_leftShiftWithMask32, 3) \ |
44 V(Bool_fromEnvironment, 3) \ | 44 V(Bool_fromEnvironment, 3) \ |
45 V(RawReceivePortImpl_factory, 1) \ | 45 V(RawReceivePortImpl_factory, 1) \ |
46 V(RawReceivePortImpl_closeInternal, 1) \ | 46 V(RawReceivePortImpl_closeInternal, 1) \ |
47 V(SendPortImpl_sendInternal_, 3) \ | 47 V(SendPortImpl_sendInternal_, 2) \ |
48 V(Smi_shlFromInt, 2) \ | 48 V(Smi_shlFromInt, 2) \ |
49 V(Smi_shrFromInt, 2) \ | 49 V(Smi_shrFromInt, 2) \ |
50 V(Smi_bitNegate, 1) \ | 50 V(Smi_bitNegate, 1) \ |
51 V(Smi_bitLength, 1) \ | 51 V(Smi_bitLength, 1) \ |
52 V(Mint_bitNegate, 1) \ | 52 V(Mint_bitNegate, 1) \ |
53 V(Mint_bitLength, 1) \ | 53 V(Mint_bitLength, 1) \ |
54 V(Mint_shlFromInt, 2) \ | 54 V(Mint_shlFromInt, 2) \ |
55 V(Bigint_bitNegate, 1) \ | 55 V(Bigint_bitNegate, 1) \ |
56 V(Bigint_bitLength, 1) \ | 56 V(Bigint_bitLength, 1) \ |
57 V(Bigint_shlFromInt, 2) \ | 57 V(Bigint_shlFromInt, 2) \ |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 static void DN_##name(Dart_NativeArguments args); | 325 static void DN_##name(Dart_NativeArguments args); |
326 | 326 |
327 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 327 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
328 | 328 |
329 #undef DECLARE_BOOTSTRAP_NATIVE | 329 #undef DECLARE_BOOTSTRAP_NATIVE |
330 }; | 330 }; |
331 | 331 |
332 } // namespace dart | 332 } // namespace dart |
333 | 333 |
334 #endif // VM_BOOTSTRAP_NATIVES_H_ | 334 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |