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

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

Issue 2768103002: Debugger support for step-into async and async* functions. (Closed)
Patch Set: tweaks and self review Created 3 years, 9 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 RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef RUNTIME_VM_BOOTSTRAP_NATIVES_H_
6 #define RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 6 #define RUNTIME_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.
11 11
12 namespace dart { 12 namespace dart {
13 13
14 // List of bootstrap native entry points used in the core dart library. 14 // List of bootstrap native entry points used in the core dart library.
15 #define BOOTSTRAP_NATIVE_LIST(V) \ 15 #define BOOTSTRAP_NATIVE_LIST(V) \
16 V(AsyncStarMoveNext_debuggerStepCheck, 1) \
16 V(DartAsync_fatal, 1) \ 17 V(DartAsync_fatal, 1) \
17 V(Object_equals, 2) \ 18 V(Object_equals, 2) \
18 V(Object_getHash, 1) \ 19 V(Object_getHash, 1) \
19 V(Object_setHash, 2) \ 20 V(Object_setHash, 2) \
20 V(Object_toString, 1) \ 21 V(Object_toString, 1) \
21 V(Object_noSuchMethod, 6) \ 22 V(Object_noSuchMethod, 6) \
22 V(Object_runtimeType, 1) \ 23 V(Object_runtimeType, 1) \
23 V(Object_haveSameRuntimeType, 2) \ 24 V(Object_haveSameRuntimeType, 2) \
24 V(Object_instanceOf, 3) \ 25 V(Object_instanceOf, 3) \
25 V(Object_simpleInstanceOf, 2) \ 26 V(Object_simpleInstanceOf, 2) \
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 V(Random_nextState, 1) \ 150 V(Random_nextState, 1) \
150 V(Random_setupSeed, 1) \ 151 V(Random_setupSeed, 1) \
151 V(Random_initialSeed, 0) \ 152 V(Random_initialSeed, 0) \
152 V(SecureRandom_getBytes, 1) \ 153 V(SecureRandom_getBytes, 1) \
153 V(DateTime_currentTimeMicros, 0) \ 154 V(DateTime_currentTimeMicros, 0) \
154 V(DateTime_timeZoneName, 1) \ 155 V(DateTime_timeZoneName, 1) \
155 V(DateTime_timeZoneOffsetInSeconds, 1) \ 156 V(DateTime_timeZoneOffsetInSeconds, 1) \
156 V(DateTime_localTimeZoneAdjustmentInSeconds, 0) \ 157 V(DateTime_localTimeZoneAdjustmentInSeconds, 0) \
157 V(AssertionError_throwNew, 3) \ 158 V(AssertionError_throwNew, 3) \
158 V(Async_rethrow, 2) \ 159 V(Async_rethrow, 2) \
159 V(StackTrace_asyncStackTraceHelper, 0) \ 160 V(StackTrace_asyncStackTraceHelper, 1) \
160 V(StackTrace_clearAsyncThreadStackTrace, 0) \ 161 V(StackTrace_clearAsyncThreadStackTrace, 0) \
161 V(StackTrace_setAsyncThreadStackTrace, 1) \ 162 V(StackTrace_setAsyncThreadStackTrace, 1) \
162 V(StackTrace_current, 0) \ 163 V(StackTrace_current, 0) \
163 V(TypeError_throwNew, 5) \ 164 V(TypeError_throwNew, 5) \
164 V(FallThroughError_throwNew, 1) \ 165 V(FallThroughError_throwNew, 1) \
165 V(AbstractClassInstantiationError_throwNew, 2) \ 166 V(AbstractClassInstantiationError_throwNew, 2) \
166 V(Stopwatch_now, 0) \ 167 V(Stopwatch_now, 0) \
167 V(Stopwatch_frequency, 0) \ 168 V(Stopwatch_frequency, 0) \
168 V(Timeline_getIsolateNum, 0) \ 169 V(Timeline_getIsolateNum, 0) \
169 V(Timeline_getNextAsyncId, 0) \ 170 V(Timeline_getNextAsyncId, 0) \
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) 427 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
427 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 428 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
428 #endif 429 #endif
429 430
430 #undef DECLARE_BOOTSTRAP_NATIVE 431 #undef DECLARE_BOOTSTRAP_NATIVE
431 }; 432 };
432 433
433 } // namespace dart 434 } // namespace dart
434 435
435 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 436 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698