| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 V(Int32x4_shuffleMix, 3) \ | 304 V(Int32x4_shuffleMix, 3) \ |
| 305 V(Int32x4_getFlagX, 1) \ | 305 V(Int32x4_getFlagX, 1) \ |
| 306 V(Int32x4_getFlagY, 1) \ | 306 V(Int32x4_getFlagY, 1) \ |
| 307 V(Int32x4_getFlagZ, 1) \ | 307 V(Int32x4_getFlagZ, 1) \ |
| 308 V(Int32x4_getFlagW, 1) \ | 308 V(Int32x4_getFlagW, 1) \ |
| 309 V(Int32x4_setFlagX, 2) \ | 309 V(Int32x4_setFlagX, 2) \ |
| 310 V(Int32x4_setFlagY, 2) \ | 310 V(Int32x4_setFlagY, 2) \ |
| 311 V(Int32x4_setFlagZ, 2) \ | 311 V(Int32x4_setFlagZ, 2) \ |
| 312 V(Int32x4_setFlagW, 2) \ | 312 V(Int32x4_setFlagW, 2) \ |
| 313 V(Int32x4_select, 3) \ | 313 V(Int32x4_select, 3) \ |
| 314 V(Isolate_spawnFunction, 9) \ | 314 V(Isolate_spawnFunction, 10) \ |
| 315 V(Isolate_spawnUri, 12) \ | 315 V(Isolate_spawnUri, 12) \ |
| 316 V(Isolate_getPortAndCapabilitiesOfCurrentIsolate, 0) \ | 316 V(Isolate_getPortAndCapabilitiesOfCurrentIsolate, 0) \ |
| 317 V(Isolate_getCurrentRootUriStr, 0) \ | 317 V(Isolate_getCurrentRootUriStr, 0) \ |
| 318 V(Isolate_sendOOB, 2) \ | 318 V(Isolate_sendOOB, 2) \ |
| 319 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ | 319 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ |
| 320 V(Mirrors_makeLocalClassMirror, 1) \ | 320 V(Mirrors_makeLocalClassMirror, 1) \ |
| 321 V(Mirrors_makeLocalTypeMirror, 1) \ | 321 V(Mirrors_makeLocalTypeMirror, 1) \ |
| 322 V(Mirrors_mangleName, 2) \ | 322 V(Mirrors_mangleName, 2) \ |
| 323 V(MirrorReference_equals, 2) \ | 323 V(MirrorReference_equals, 2) \ |
| 324 V(MirrorSystem_libraries, 0) \ | 324 V(MirrorSystem_libraries, 0) \ |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 static void DN_##name(Dart_NativeArguments args); | 423 static void DN_##name(Dart_NativeArguments args); |
| 424 | 424 |
| 425 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 425 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 426 | 426 |
| 427 #undef DECLARE_BOOTSTRAP_NATIVE | 427 #undef DECLARE_BOOTSTRAP_NATIVE |
| 428 }; | 428 }; |
| 429 | 429 |
| 430 } // namespace dart | 430 } // namespace dart |
| 431 | 431 |
| 432 #endif // VM_BOOTSTRAP_NATIVES_H_ | 432 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |