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

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

Issue 1634863002: Introduce CodeSourceMap object to hold pc -> token position mappings (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « runtime/vm/snapshot.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 VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 V(LiteralToken, "LiteralToken") \ 154 V(LiteralToken, "LiteralToken") \
155 V(TokenStream, "TokenStream") \ 155 V(TokenStream, "TokenStream") \
156 V(Script, "Script") \ 156 V(Script, "Script") \
157 V(LibraryClass, "Library") \ 157 V(LibraryClass, "Library") \
158 V(LibraryPrefix, "LibraryPrefix") \ 158 V(LibraryPrefix, "LibraryPrefix") \
159 V(Namespace, "Namespace") \ 159 V(Namespace, "Namespace") \
160 V(Code, "Code") \ 160 V(Code, "Code") \
161 V(Instructions, "Instructions") \ 161 V(Instructions, "Instructions") \
162 V(ObjectPool, "ObjectPool") \ 162 V(ObjectPool, "ObjectPool") \
163 V(PcDescriptors, "PcDescriptors") \ 163 V(PcDescriptors, "PcDescriptors") \
164 V(CodeSourceMap, "CodeSourceMap") \
164 V(Stackmap, "Stackmap") \ 165 V(Stackmap, "Stackmap") \
165 V(LocalVarDescriptors, "LocalVarDescriptors") \ 166 V(LocalVarDescriptors, "LocalVarDescriptors") \
166 V(ExceptionHandlers, "ExceptionHandlers") \ 167 V(ExceptionHandlers, "ExceptionHandlers") \
167 V(DeoptInfo, "DeoptInfo") \ 168 V(DeoptInfo, "DeoptInfo") \
168 V(Context, "Context") \ 169 V(Context, "Context") \
169 V(ContextScope, "ContextScope") \ 170 V(ContextScope, "ContextScope") \
170 V(ICData, "ICData") \ 171 V(ICData, "ICData") \
171 V(MegamorphicCache, "MegamorphicCache") \ 172 V(MegamorphicCache, "MegamorphicCache") \
172 V(SubtypeTestCache, "SubtypeTestCache") \ 173 V(SubtypeTestCache, "SubtypeTestCache") \
173 V(Error, "Error") \ 174 V(Error, "Error") \
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 friend class SnapshotReader; 657 friend class SnapshotReader;
657 friend class SnapshotWriter; 658 friend class SnapshotWriter;
658 friend class ApiMessageReader; 659 friend class ApiMessageReader;
659 660
660 DISALLOW_COPY_AND_ASSIGN(Symbols); 661 DISALLOW_COPY_AND_ASSIGN(Symbols);
661 }; 662 };
662 663
663 } // namespace dart 664 } // namespace dart
664 665
665 #endif // VM_SYMBOLS_H_ 666 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698