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

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

Issue 2718353002: Revert "Track the 'awaiter return' call stack..." (Closed)
Patch Set: 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
« no previous file with comments | « runtime/vm/scopes.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_SYMBOLS_H_ 5 #ifndef RUNTIME_VM_SYMBOLS_H_
6 #define RUNTIME_VM_SYMBOLS_H_ 6 #define RUNTIME_VM_SYMBOLS_H_
7 7
8 #include "vm/growable_array.h" 8 #include "vm/growable_array.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/snapshot_ids.h" 10 #include "vm/snapshot_ids.h"
(...skipping 29 matching lines...) Expand all
40 V(IsYieldEach, "isYieldEach") \ 40 V(IsYieldEach, "isYieldEach") \
41 V(Value, "value") \ 41 V(Value, "value") \
42 V(_EnumHelper, "_EnumHelper") \ 42 V(_EnumHelper, "_EnumHelper") \
43 V(_SyncIterable, "_SyncIterable") \ 43 V(_SyncIterable, "_SyncIterable") \
44 V(_SyncIterableConstructor, "_SyncIterable.") \ 44 V(_SyncIterableConstructor, "_SyncIterable.") \
45 V(_SyncIterator, "_SyncIterator") \ 45 V(_SyncIterator, "_SyncIterator") \
46 V(IteratorParameter, ":iterator") \ 46 V(IteratorParameter, ":iterator") \
47 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ 47 V(_AsyncStarStreamController, "_AsyncStarStreamController") \
48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ 48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \
49 V(Controller, ":controller") \ 49 V(Controller, ":controller") \
50 V(ControllerStream, ":controller_stream") \
51 V(Controller2, "controller") \
52 V(Stream, "stream") \ 50 V(Stream, "stream") \
53 V(_StreamImpl, "_StreamImpl") \
54 V(isPaused, "isPaused") \ 51 V(isPaused, "isPaused") \
55 V(AddError, "addError") \ 52 V(AddError, "addError") \
56 V(AddStream, "addStream") \ 53 V(AddStream, "addStream") \
57 V(Cancel, "cancel") \ 54 V(Cancel, "cancel") \
58 V(Close, "close") \ 55 V(Close, "close") \
59 V(Values, "values") \ 56 V(Values, "values") \
60 V(_EnumNames, "_enum_names") \ 57 V(_EnumNames, "_enum_names") \
61 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ 58 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \
62 V(_DeletedEnumPrefix, "Deleted enum value from ") \ 59 V(_DeletedEnumPrefix, "Deleted enum value from ") \
63 V(ExprTemp, ":expr_temp") \ 60 V(ExprTemp, ":expr_temp") \
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ 120 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \
124 V(AsyncStackTraceVar, ":async_stack_trace") \ 121 V(AsyncStackTraceVar, ":async_stack_trace") \
125 V(ClearAsyncThreadStackTrace, "_clearAsyncThreadStackTrace") \ 122 V(ClearAsyncThreadStackTrace, "_clearAsyncThreadStackTrace") \
126 V(SetAsyncThreadStackTrace, "_setAsyncThreadStackTrace") \ 123 V(SetAsyncThreadStackTrace, "_setAsyncThreadStackTrace") \
127 V(AsyncCatchHelper, "_asyncCatchHelper") \ 124 V(AsyncCatchHelper, "_asyncCatchHelper") \
128 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \ 125 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \
129 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \ 126 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \
130 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \ 127 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \
131 V(AsyncAwaitHelper, "_awaitHelper") \ 128 V(AsyncAwaitHelper, "_awaitHelper") \
132 V(Await, "await") \ 129 V(Await, "await") \
133 V(_Awaiter, "_awaiter") \
134 V(AwaitTempVarPrefix, ":await_temp_var_") \ 130 V(AwaitTempVarPrefix, ":await_temp_var_") \
135 V(AwaitContextVar, ":await_ctx_var") \ 131 V(AwaitContextVar, ":await_ctx_var") \
136 V(AwaitJumpVar, ":await_jump_var") \ 132 V(AwaitJumpVar, ":await_jump_var") \
137 V(Future, "Future") \ 133 V(Future, "Future") \
138 V(FutureOr, "FutureOr") \ 134 V(FutureOr, "FutureOr") \
139 V(FutureMicrotask, "Future.microtask") \ 135 V(FutureMicrotask, "Future.microtask") \
140 V(FutureValue, "Future.value") \ 136 V(FutureValue, "Future.value") \
141 V(FutureThen, "then") \ 137 V(FutureThen, "then") \
142 V(FutureCatchError, "catchError") \ 138 V(FutureCatchError, "catchError") \
143 V(Completer, "Completer") \ 139 V(Completer, "Completer") \
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 V(TwoByteString, "_TwoByteString") \ 211 V(TwoByteString, "_TwoByteString") \
216 V(ExternalOneByteString, "_ExternalOneByteString") \ 212 V(ExternalOneByteString, "_ExternalOneByteString") \
217 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 213 V(ExternalTwoByteString, "_ExternalTwoByteString") \
218 V(_CapabilityImpl, "_CapabilityImpl") \ 214 V(_CapabilityImpl, "_CapabilityImpl") \
219 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 215 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
220 V(_SendPortImpl, "_SendPortImpl") \ 216 V(_SendPortImpl, "_SendPortImpl") \
221 V(_StackTrace, "_StackTrace") \ 217 V(_StackTrace, "_StackTrace") \
222 V(_RegExp, "_RegExp") \ 218 V(_RegExp, "_RegExp") \
223 V(RegExp, "RegExp") \ 219 V(RegExp, "RegExp") \
224 V(ColonMatcher, ":matcher") \ 220 V(ColonMatcher, ":matcher") \
225 V(ColonStream, ":stream") \
226 V(Object, "Object") \ 221 V(Object, "Object") \
227 V(Int, "int") \ 222 V(Int, "int") \
228 V(Double, "double") \ 223 V(Double, "double") \
229 V(Float32x4, "Float32x4") \ 224 V(Float32x4, "Float32x4") \
230 V(Float64x2, "Float64x2") \ 225 V(Float64x2, "Float64x2") \
231 V(Int32x4, "Int32x4") \ 226 V(Int32x4, "Int32x4") \
232 V(_Float32x4, "_Float32x4") \ 227 V(_Float32x4, "_Float32x4") \
233 V(_Float64x2, "_Float64x2") \ 228 V(_Float64x2, "_Float64x2") \
234 V(_Int32x4, "_Int32x4") \ 229 V(_Int32x4, "_Int32x4") \
235 V(Int8List, "Int8List") \ 230 V(Int8List, "Int8List") \
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 V(ConstructorClosurePrefix, "new#") \ 422 V(ConstructorClosurePrefix, "new#") \
428 V(_runExtension, "_runExtension") \ 423 V(_runExtension, "_runExtension") \
429 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ 424 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \
430 V(DartLibrary, "dart.library.") \ 425 V(DartLibrary, "dart.library.") \
431 V(DartLibraryMirrors, "dart.library.mirrors") \ 426 V(DartLibraryMirrors, "dart.library.mirrors") \
432 V(_name, "_name") \ 427 V(_name, "_name") \
433 V(_classRangeCheck, "_classRangeCheck") \ 428 V(_classRangeCheck, "_classRangeCheck") \
434 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ 429 V(_classRangeCheckNegative, "_classRangeCheckNegative") \
435 V(GetRuntimeType, "get:runtimeType") \ 430 V(GetRuntimeType, "get:runtimeType") \
436 V(HaveSameRuntimeType, "_haveSameRuntimeType") \ 431 V(HaveSameRuntimeType, "_haveSameRuntimeType") \
437 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks") \ 432 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks")
438 V(_AsyncStarListenHelper, "_asyncStarListenHelper")
439 433
440 434
441 // Contains a list of frequently used strings in a canonicalized form. This 435 // Contains a list of frequently used strings in a canonicalized form. This
442 // list is kept in the vm_isolate in order to share the copy across isolates 436 // list is kept in the vm_isolate in order to share the copy across isolates
443 // without having to maintain copies in each isolate. 437 // without having to maintain copies in each isolate.
444 class Symbols : public AllStatic { 438 class Symbols : public AllStatic {
445 public: 439 public:
446 enum { kMaxOneCharCodeSymbol = 0xFF }; 440 enum { kMaxOneCharCodeSymbol = 0xFF };
447 441
448 // List of strings that are pre created in the vm isolate. 442 // List of strings that are pre created in the vm isolate.
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 friend class Serializer; 688 friend class Serializer;
695 friend class Deserializer; 689 friend class Deserializer;
696 friend class ApiMessageReader; 690 friend class ApiMessageReader;
697 691
698 DISALLOW_COPY_AND_ASSIGN(Symbols); 692 DISALLOW_COPY_AND_ASSIGN(Symbols);
699 }; 693 };
700 694
701 } // namespace dart 695 } // namespace dart
702 696
703 #endif // RUNTIME_VM_SYMBOLS_H_ 697 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/scopes.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698