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