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/object.h" | 8 #include "vm/object.h" |
9 #include "vm/snapshot_ids.h" | 9 #include "vm/snapshot_ids.h" |
10 | 10 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 V(RedirectionData, "RedirectionData") \ | 143 V(RedirectionData, "RedirectionData") \ |
144 V(Field, "Field") \ | 144 V(Field, "Field") \ |
145 V(LiteralToken, "LiteralToken") \ | 145 V(LiteralToken, "LiteralToken") \ |
146 V(TokenStream, "TokenStream") \ | 146 V(TokenStream, "TokenStream") \ |
147 V(Script, "Script") \ | 147 V(Script, "Script") \ |
148 V(LibraryClass, "Library") \ | 148 V(LibraryClass, "Library") \ |
149 V(LibraryPrefix, "LibraryPrefix") \ | 149 V(LibraryPrefix, "LibraryPrefix") \ |
150 V(Namespace, "Namespace") \ | 150 V(Namespace, "Namespace") \ |
151 V(Code, "Code") \ | 151 V(Code, "Code") \ |
152 V(Instructions, "Instructions") \ | 152 V(Instructions, "Instructions") \ |
| 153 V(ObjectPool, "ObjectPool") \ |
153 V(PcDescriptors, "PcDescriptors") \ | 154 V(PcDescriptors, "PcDescriptors") \ |
154 V(Stackmap, "Stackmap") \ | 155 V(Stackmap, "Stackmap") \ |
155 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 156 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
156 V(ExceptionHandlers, "ExceptionHandlers") \ | 157 V(ExceptionHandlers, "ExceptionHandlers") \ |
157 V(DeoptInfo, "DeoptInfo") \ | 158 V(DeoptInfo, "DeoptInfo") \ |
158 V(Context, "Context") \ | 159 V(Context, "Context") \ |
159 V(ContextScope, "ContextScope") \ | 160 V(ContextScope, "ContextScope") \ |
160 V(ICData, "ICData") \ | 161 V(ICData, "ICData") \ |
161 V(MegamorphicCache, "MegamorphicCache") \ | 162 V(MegamorphicCache, "MegamorphicCache") \ |
162 V(SubtypeTestCache, "SubtypeTestCache") \ | 163 V(SubtypeTestCache, "SubtypeTestCache") \ |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 friend class SnapshotReader; | 621 friend class SnapshotReader; |
621 friend class SnapshotWriter; | 622 friend class SnapshotWriter; |
622 friend class ApiMessageReader; | 623 friend class ApiMessageReader; |
623 | 624 |
624 DISALLOW_COPY_AND_ASSIGN(Symbols); | 625 DISALLOW_COPY_AND_ASSIGN(Symbols); |
625 }; | 626 }; |
626 | 627 |
627 } // namespace dart | 628 } // namespace dart |
628 | 629 |
629 #endif // VM_SYMBOLS_H_ | 630 #endif // VM_SYMBOLS_H_ |
OLD | NEW |