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

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

Issue 2646443005: Track async causal stack traces (Closed)
Patch Set: rebase Created 3 years, 10 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.
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 V(Random_nextState, 1) \ 154 V(Random_nextState, 1) \
155 V(Random_setupSeed, 1) \ 155 V(Random_setupSeed, 1) \
156 V(Random_initialSeed, 0) \ 156 V(Random_initialSeed, 0) \
157 V(SecureRandom_getBytes, 1) \ 157 V(SecureRandom_getBytes, 1) \
158 V(DateTime_currentTimeMicros, 0) \ 158 V(DateTime_currentTimeMicros, 0) \
159 V(DateTime_timeZoneName, 1) \ 159 V(DateTime_timeZoneName, 1) \
160 V(DateTime_timeZoneOffsetInSeconds, 1) \ 160 V(DateTime_timeZoneOffsetInSeconds, 1) \
161 V(DateTime_localTimeZoneAdjustmentInSeconds, 0) \ 161 V(DateTime_localTimeZoneAdjustmentInSeconds, 0) \
162 V(AssertionError_throwNew, 3) \ 162 V(AssertionError_throwNew, 3) \
163 V(Async_rethrow, 2) \ 163 V(Async_rethrow, 2) \
164 V(StackTrace_asyncStackTraceHelper, 0) \
165 V(StackTrace_clearAsyncThreadStackTrace, 0) \
166 V(StackTrace_setAsyncThreadStackTrace, 1) \
164 V(StackTrace_current, 0) \ 167 V(StackTrace_current, 0) \
165 V(TypeError_throwNew, 5) \ 168 V(TypeError_throwNew, 5) \
166 V(FallThroughError_throwNew, 1) \ 169 V(FallThroughError_throwNew, 1) \
167 V(AbstractClassInstantiationError_throwNew, 2) \ 170 V(AbstractClassInstantiationError_throwNew, 2) \
168 V(Stopwatch_now, 0) \ 171 V(Stopwatch_now, 0) \
169 V(Stopwatch_frequency, 0) \ 172 V(Stopwatch_frequency, 0) \
170 V(Timeline_getIsolateNum, 0) \ 173 V(Timeline_getIsolateNum, 0) \
171 V(Timeline_getNextAsyncId, 0) \ 174 V(Timeline_getNextAsyncId, 0) \
172 V(Timeline_getTraceClock, 0) \ 175 V(Timeline_getTraceClock, 0) \
173 V(Timeline_getThreadCpuClock, 0) \ 176 V(Timeline_getThreadCpuClock, 0) \
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME) 432 #if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
430 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 433 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
431 #endif 434 #endif
432 435
433 #undef DECLARE_BOOTSTRAP_NATIVE 436 #undef DECLARE_BOOTSTRAP_NATIVE
434 }; 437 };
435 438
436 } // namespace dart 439 } // namespace dart
437 440
438 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 441 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/causal_async_star_stack_presence_test.dart ('k') | runtime/vm/dart.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698