| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 V(Uint32x4_setFlagY, 2) \ | 228 V(Uint32x4_setFlagY, 2) \ |
| 229 V(Uint32x4_setFlagZ, 2) \ | 229 V(Uint32x4_setFlagZ, 2) \ |
| 230 V(Uint32x4_setFlagW, 2) \ | 230 V(Uint32x4_setFlagW, 2) \ |
| 231 V(Uint32x4_select, 3) \ | 231 V(Uint32x4_select, 3) \ |
| 232 V(Uint32x4_toFloat32x4, 1) \ | 232 V(Uint32x4_toFloat32x4, 1) \ |
| 233 V(isolate_getPortInternal, 0) \ | 233 V(isolate_getPortInternal, 0) \ |
| 234 V(isolate_spawnFunction, 2) \ | 234 V(isolate_spawnFunction, 2) \ |
| 235 V(isolate_spawnUri, 1) \ | 235 V(isolate_spawnUri, 1) \ |
| 236 V(Mirrors_isLocalPort, 1) \ | 236 V(Mirrors_isLocalPort, 1) \ |
| 237 V(Mirrors_makeLocalInstanceMirror, 1) \ | 237 V(Mirrors_makeLocalInstanceMirror, 1) \ |
| 238 V(Mirrors_makeLocalClassMirror, 1) \ | 238 V(Mirrors_makeLocalClassMirror, 1) \ |
| 239 V(Mirrors_makeLocalMirrorSystem, 0) \ | 239 V(Mirrors_makeLocalMirrorSystem, 0) \ |
| 240 V(Mirrors_metadata, 1) \ |
| 240 V(LocalObjectMirrorImpl_invoke, 4) \ | 241 V(LocalObjectMirrorImpl_invoke, 4) \ |
| 241 V(LocalObjectMirrorImpl_getField, 2) \ | 242 V(LocalObjectMirrorImpl_getField, 2) \ |
| 242 V(LocalObjectMirrorImpl_setField, 4) \ | 243 V(LocalObjectMirrorImpl_setField, 4) \ |
| 243 V(LocalClosureMirrorImpl_apply, 3) \ | 244 V(LocalClosureMirrorImpl_apply, 3) \ |
| 244 V(LocalClassMirrorImpl_invokeConstructor, 4) \ | 245 V(LocalClassMirrorImpl_invokeConstructor, 4) \ |
| 245 V(GrowableObjectArray_allocate, 2) \ | 246 V(GrowableObjectArray_allocate, 2) \ |
| 246 V(GrowableObjectArray_getIndexed, 2) \ | 247 V(GrowableObjectArray_getIndexed, 2) \ |
| 247 V(GrowableObjectArray_setIndexed, 3) \ | 248 V(GrowableObjectArray_setIndexed, 3) \ |
| 248 V(GrowableObjectArray_getLength, 1) \ | 249 V(GrowableObjectArray_getLength, 1) \ |
| 249 V(GrowableObjectArray_getCapacity, 1) \ | 250 V(GrowableObjectArray_getCapacity, 1) \ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 262 static void DN_##name(Dart_NativeArguments args); | 263 static void DN_##name(Dart_NativeArguments args); |
| 263 | 264 |
| 264 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 265 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 265 | 266 |
| 266 #undef DECLARE_BOOTSTRAP_NATIVE | 267 #undef DECLARE_BOOTSTRAP_NATIVE |
| 267 }; | 268 }; |
| 268 | 269 |
| 269 } // namespace dart | 270 } // namespace dart |
| 270 | 271 |
| 271 #endif // VM_BOOTSTRAP_NATIVES_H_ | 272 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |