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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 V(Int32x4_getFlagX, 1) \ | 284 V(Int32x4_getFlagX, 1) \ |
285 V(Int32x4_getFlagY, 1) \ | 285 V(Int32x4_getFlagY, 1) \ |
286 V(Int32x4_getFlagZ, 1) \ | 286 V(Int32x4_getFlagZ, 1) \ |
287 V(Int32x4_getFlagW, 1) \ | 287 V(Int32x4_getFlagW, 1) \ |
288 V(Int32x4_setFlagX, 2) \ | 288 V(Int32x4_setFlagX, 2) \ |
289 V(Int32x4_setFlagY, 2) \ | 289 V(Int32x4_setFlagY, 2) \ |
290 V(Int32x4_setFlagZ, 2) \ | 290 V(Int32x4_setFlagZ, 2) \ |
291 V(Int32x4_setFlagW, 2) \ | 291 V(Int32x4_setFlagW, 2) \ |
292 V(Int32x4_select, 3) \ | 292 V(Int32x4_select, 3) \ |
293 V(Isolate_spawnFunction, 3) \ | 293 V(Isolate_spawnFunction, 3) \ |
294 V(Isolate_spawnUri, 5) \ | 294 V(Isolate_spawnUri, 4) \ |
295 V(Isolate_sendOOB, 2) \ | 295 V(Isolate_sendOOB, 2) \ |
296 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ | 296 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ |
297 V(Mirrors_makeLocalClassMirror, 1) \ | 297 V(Mirrors_makeLocalClassMirror, 1) \ |
298 V(Mirrors_makeLocalTypeMirror, 1) \ | 298 V(Mirrors_makeLocalTypeMirror, 1) \ |
299 V(Mirrors_makeLocalMirrorSystem, 0) \ | 299 V(Mirrors_makeLocalMirrorSystem, 0) \ |
300 V(Mirrors_mangleName, 2) \ | 300 V(Mirrors_mangleName, 2) \ |
301 V(MirrorReference_equals, 2) \ | 301 V(MirrorReference_equals, 2) \ |
302 V(InstanceMirror_invoke, 5) \ | 302 V(InstanceMirror_invoke, 5) \ |
303 V(InstanceMirror_invokeGetter, 3) \ | 303 V(InstanceMirror_invokeGetter, 3) \ |
304 V(InstanceMirror_invokeSetter, 4) \ | 304 V(InstanceMirror_invokeSetter, 4) \ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 static void DN_##name(Dart_NativeArguments args); | 388 static void DN_##name(Dart_NativeArguments args); |
389 | 389 |
390 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 390 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
391 | 391 |
392 #undef DECLARE_BOOTSTRAP_NATIVE | 392 #undef DECLARE_BOOTSTRAP_NATIVE |
393 }; | 393 }; |
394 | 394 |
395 } // namespace dart | 395 } // namespace dart |
396 | 396 |
397 #endif // VM_BOOTSTRAP_NATIVES_H_ | 397 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |