Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 14118011: - Implement reflectClass. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 V(Uint32x4_setFlagY, 2) \ 216 V(Uint32x4_setFlagY, 2) \
217 V(Uint32x4_setFlagZ, 2) \ 217 V(Uint32x4_setFlagZ, 2) \
218 V(Uint32x4_setFlagW, 2) \ 218 V(Uint32x4_setFlagW, 2) \
219 V(Uint32x4_select, 3) \ 219 V(Uint32x4_select, 3) \
220 V(Uint32x4_toFloat32x4, 1) \ 220 V(Uint32x4_toFloat32x4, 1) \
221 V(isolate_getPortInternal, 0) \ 221 V(isolate_getPortInternal, 0) \
222 V(isolate_spawnFunction, 2) \ 222 V(isolate_spawnFunction, 2) \
223 V(isolate_spawnUri, 1) \ 223 V(isolate_spawnUri, 1) \
224 V(Mirrors_isLocalPort, 1) \ 224 V(Mirrors_isLocalPort, 1) \
225 V(Mirrors_makeLocalInstanceMirror, 1) \ 225 V(Mirrors_makeLocalInstanceMirror, 1) \
226 V(Mirrors_makeLocalClassMirror, 1) \
226 V(Mirrors_makeLocalMirrorSystem, 0) \ 227 V(Mirrors_makeLocalMirrorSystem, 0) \
227 V(LocalObjectMirrorImpl_invoke, 4) \ 228 V(LocalObjectMirrorImpl_invoke, 4) \
228 V(LocalObjectMirrorImpl_getField, 2) \ 229 V(LocalObjectMirrorImpl_getField, 2) \
229 V(LocalObjectMirrorImpl_setField, 4) \ 230 V(LocalObjectMirrorImpl_setField, 4) \
230 V(LocalClosureMirrorImpl_apply, 3) \ 231 V(LocalClosureMirrorImpl_apply, 3) \
231 V(LocalClassMirrorImpl_invokeConstructor, 4) \ 232 V(LocalClassMirrorImpl_invokeConstructor, 4) \
232 V(GrowableObjectArray_allocate, 2) \ 233 V(GrowableObjectArray_allocate, 2) \
233 V(GrowableObjectArray_getIndexed, 2) \ 234 V(GrowableObjectArray_getIndexed, 2) \
234 V(GrowableObjectArray_setIndexed, 3) \ 235 V(GrowableObjectArray_setIndexed, 3) \
235 V(GrowableObjectArray_getLength, 1) \ 236 V(GrowableObjectArray_getLength, 1) \
(...skipping 13 matching lines...) Expand all
249 static void DN_##name(Dart_NativeArguments args); 250 static void DN_##name(Dart_NativeArguments args);
250 251
251 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 252 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
252 253
253 #undef DECLARE_BOOTSTRAP_NATIVE 254 #undef DECLARE_BOOTSTRAP_NATIVE
254 }; 255 };
255 256
256 } // namespace dart 257 } // namespace dart
257 258
258 #endif // VM_BOOTSTRAP_NATIVES_H_ 259 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698