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

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

Issue 1553233002: Add package config support to dart:isolate (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Addressed review comments. Created 4 years, 11 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
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 V(Int32x4_shuffleMix, 3) \ 304 V(Int32x4_shuffleMix, 3) \
305 V(Int32x4_getFlagX, 1) \ 305 V(Int32x4_getFlagX, 1) \
306 V(Int32x4_getFlagY, 1) \ 306 V(Int32x4_getFlagY, 1) \
307 V(Int32x4_getFlagZ, 1) \ 307 V(Int32x4_getFlagZ, 1) \
308 V(Int32x4_getFlagW, 1) \ 308 V(Int32x4_getFlagW, 1) \
309 V(Int32x4_setFlagX, 2) \ 309 V(Int32x4_setFlagX, 2) \
310 V(Int32x4_setFlagY, 2) \ 310 V(Int32x4_setFlagY, 2) \
311 V(Int32x4_setFlagZ, 2) \ 311 V(Int32x4_setFlagZ, 2) \
312 V(Int32x4_setFlagW, 2) \ 312 V(Int32x4_setFlagW, 2) \
313 V(Int32x4_select, 3) \ 313 V(Int32x4_select, 3) \
314 V(Isolate_spawnFunction, 7) \ 314 V(Isolate_spawnFunction, 9) \
315 V(Isolate_spawnUri, 12) \ 315 V(Isolate_spawnUri, 12) \
316 V(Isolate_getPortAndCapabilitiesOfCurrentIsolate, 0) \ 316 V(Isolate_getPortAndCapabilitiesOfCurrentIsolate, 0) \
317 V(Isolate_getCurrentRootUriStr, 0) \
317 V(Isolate_sendOOB, 2) \ 318 V(Isolate_sendOOB, 2) \
318 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ 319 V(Mirrors_evalInLibraryWithPrivateKey, 2) \
319 V(Mirrors_makeLocalClassMirror, 1) \ 320 V(Mirrors_makeLocalClassMirror, 1) \
320 V(Mirrors_makeLocalTypeMirror, 1) \ 321 V(Mirrors_makeLocalTypeMirror, 1) \
321 V(Mirrors_mangleName, 2) \ 322 V(Mirrors_mangleName, 2) \
322 V(MirrorReference_equals, 2) \ 323 V(MirrorReference_equals, 2) \
323 V(MirrorSystem_libraries, 0) \ 324 V(MirrorSystem_libraries, 0) \
324 V(MirrorSystem_isolate, 0) \ 325 V(MirrorSystem_isolate, 0) \
325 V(InstanceMirror_invoke, 5) \ 326 V(InstanceMirror_invoke, 5) \
326 V(InstanceMirror_invokeGetter, 3) \ 327 V(InstanceMirror_invokeGetter, 3) \
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 static void DN_##name(Dart_NativeArguments args); 423 static void DN_##name(Dart_NativeArguments args);
423 424
424 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 425 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
425 426
426 #undef DECLARE_BOOTSTRAP_NATIVE 427 #undef DECLARE_BOOTSTRAP_NATIVE
427 }; 428 };
428 429
429 } // namespace dart 430 } // namespace dart
430 431
431 #endif // VM_BOOTSTRAP_NATIVES_H_ 432 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698