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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 V(Int32x4_getFlagZ, 1) \ | 277 V(Int32x4_getFlagZ, 1) \ |
278 V(Int32x4_getFlagW, 1) \ | 278 V(Int32x4_getFlagW, 1) \ |
279 V(Int32x4_setFlagX, 2) \ | 279 V(Int32x4_setFlagX, 2) \ |
280 V(Int32x4_setFlagY, 2) \ | 280 V(Int32x4_setFlagY, 2) \ |
281 V(Int32x4_setFlagZ, 2) \ | 281 V(Int32x4_setFlagZ, 2) \ |
282 V(Int32x4_setFlagW, 2) \ | 282 V(Int32x4_setFlagW, 2) \ |
283 V(Int32x4_select, 3) \ | 283 V(Int32x4_select, 3) \ |
284 V(Isolate_mainPort, 0) \ | 284 V(Isolate_mainPort, 0) \ |
285 V(Isolate_spawnFunction, 1) \ | 285 V(Isolate_spawnFunction, 1) \ |
286 V(Isolate_spawnUri, 1) \ | 286 V(Isolate_spawnUri, 1) \ |
| 287 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ |
287 V(Mirrors_makeLocalClassMirror, 1) \ | 288 V(Mirrors_makeLocalClassMirror, 1) \ |
288 V(Mirrors_makeLocalTypeMirror, 1) \ | 289 V(Mirrors_makeLocalTypeMirror, 1) \ |
289 V(Mirrors_makeLocalMirrorSystem, 0) \ | 290 V(Mirrors_makeLocalMirrorSystem, 0) \ |
290 V(Mirrors_mangleName, 2) \ | 291 V(Mirrors_mangleName, 2) \ |
291 V(MirrorReference_equals, 2) \ | 292 V(MirrorReference_equals, 2) \ |
292 V(InstanceMirror_invoke, 5) \ | 293 V(InstanceMirror_invoke, 5) \ |
293 V(InstanceMirror_invokeGetter, 3) \ | 294 V(InstanceMirror_invokeGetter, 3) \ |
294 V(InstanceMirror_invokeSetter, 4) \ | 295 V(InstanceMirror_invokeSetter, 4) \ |
295 V(InstanceMirror_computeType, 1) \ | 296 V(InstanceMirror_computeType, 1) \ |
296 V(ClosureMirror_find_in_context, 2) \ | 297 V(ClosureMirror_find_in_context, 2) \ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 static void DN_##name(Dart_NativeArguments args); | 353 static void DN_##name(Dart_NativeArguments args); |
353 | 354 |
354 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 355 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
355 | 356 |
356 #undef DECLARE_BOOTSTRAP_NATIVE | 357 #undef DECLARE_BOOTSTRAP_NATIVE |
357 }; | 358 }; |
358 | 359 |
359 } // namespace dart | 360 } // namespace dart |
360 | 361 |
361 #endif // VM_BOOTSTRAP_NATIVES_H_ | 362 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |