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

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

Issue 2523053002: Implement rewind: drop one or more frames from the debugger. (Closed)
Patch Set: code review Created 4 years, 1 month 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/raw_object.h ('k') | runtime/vm/service.cc » ('j') | 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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_RUNTIME_ENTRY_LIST_H_ 5 #ifndef RUNTIME_VM_RUNTIME_ENTRY_LIST_H_
6 #define RUNTIME_VM_RUNTIME_ENTRY_LIST_H_ 6 #define RUNTIME_VM_RUNTIME_ENTRY_LIST_H_
7 7
8 namespace dart { 8 namespace dart {
9 9
10 #define RUNTIME_ENTRY_LIST(V) \ 10 #define RUNTIME_ENTRY_LIST(V) \
(...skipping 22 matching lines...) Expand all
33 V(OptimizeInvokedFunction) \ 33 V(OptimizeInvokedFunction) \
34 V(TraceICCall) \ 34 V(TraceICCall) \
35 V(PatchStaticCall) \ 35 V(PatchStaticCall) \
36 V(RangeError) \ 36 V(RangeError) \
37 V(ReThrow) \ 37 V(ReThrow) \
38 V(StackOverflow) \ 38 V(StackOverflow) \
39 V(Throw) \ 39 V(Throw) \
40 V(TraceFunctionEntry) \ 40 V(TraceFunctionEntry) \
41 V(TraceFunctionExit) \ 41 V(TraceFunctionExit) \
42 V(DeoptimizeMaterialize) \ 42 V(DeoptimizeMaterialize) \
43 V(RewindPostDeopt) \
43 V(UpdateFieldCid) \ 44 V(UpdateFieldCid) \
44 V(InitStaticField) \ 45 V(InitStaticField) \
45 V(GrowRegExpStack) \ 46 V(GrowRegExpStack) \
46 V(CompileFunction) \ 47 V(CompileFunction) \
47 V(MonomorphicMiss) \ 48 V(MonomorphicMiss) \
48 V(SingleTargetMiss) \ 49 V(SingleTargetMiss) \
49 V(UnlinkedCall) 50 V(UnlinkedCall)
50 51
51 #define LEAF_RUNTIME_ENTRY_LIST(V) \ 52 #define LEAF_RUNTIME_ENTRY_LIST(V) \
52 V(void, PrintStopMessage, const char*) \ 53 V(void, PrintStopMessage, const char*) \
(...skipping 12 matching lines...) Expand all
65 V(double, LibcTan, double) \ 66 V(double, LibcTan, double) \
66 V(double, LibcAcos, double) \ 67 V(double, LibcAcos, double) \
67 V(double, LibcAsin, double) \ 68 V(double, LibcAsin, double) \
68 V(double, LibcAtan, double) \ 69 V(double, LibcAtan, double) \
69 V(double, LibcAtan2, double, double) \ 70 V(double, LibcAtan2, double, double) \
70 V(RawBool*, CaseInsensitiveCompareUC16, RawString*, RawSmi*, RawSmi*, RawSmi*) 71 V(RawBool*, CaseInsensitiveCompareUC16, RawString*, RawSmi*, RawSmi*, RawSmi*)
71 72
72 } // namespace dart 73 } // namespace dart
73 74
74 #endif // RUNTIME_VM_RUNTIME_ENTRY_LIST_H_ 75 #endif // RUNTIME_VM_RUNTIME_ENTRY_LIST_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object.h ('k') | runtime/vm/service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698