OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |