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 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 V(TokenStream, "TokenStream") \ | 163 V(TokenStream, "TokenStream") \ |
164 V(Script, "Script") \ | 164 V(Script, "Script") \ |
165 V(LibraryClass, "Library") \ | 165 V(LibraryClass, "Library") \ |
166 V(LibraryPrefix, "LibraryPrefix") \ | 166 V(LibraryPrefix, "LibraryPrefix") \ |
167 V(Namespace, "Namespace") \ | 167 V(Namespace, "Namespace") \ |
168 V(Code, "Code") \ | 168 V(Code, "Code") \ |
169 V(Instructions, "Instructions") \ | 169 V(Instructions, "Instructions") \ |
170 V(ObjectPool, "ObjectPool") \ | 170 V(ObjectPool, "ObjectPool") \ |
171 V(PcDescriptors, "PcDescriptors") \ | 171 V(PcDescriptors, "PcDescriptors") \ |
172 V(CodeSourceMap, "CodeSourceMap") \ | 172 V(CodeSourceMap, "CodeSourceMap") \ |
173 V(Stackmap, "Stackmap") \ | 173 V(StackMap, "StackMap") \ |
174 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 174 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
175 V(ExceptionHandlers, "ExceptionHandlers") \ | 175 V(ExceptionHandlers, "ExceptionHandlers") \ |
176 V(DeoptInfo, "DeoptInfo") \ | 176 V(DeoptInfo, "DeoptInfo") \ |
177 V(Context, "Context") \ | 177 V(Context, "Context") \ |
178 V(ContextScope, "ContextScope") \ | 178 V(ContextScope, "ContextScope") \ |
179 V(SingleTargetCache, "SingleTargetCache") \ | 179 V(SingleTargetCache, "SingleTargetCache") \ |
180 V(UnlinkedCall, "UnlinkedCall") \ | 180 V(UnlinkedCall, "UnlinkedCall") \ |
181 V(ICData, "ICData") \ | 181 V(ICData, "ICData") \ |
182 V(MegamorphicCache, "MegamorphicCache") \ | 182 V(MegamorphicCache, "MegamorphicCache") \ |
183 V(SubtypeTestCache, "SubtypeTestCache") \ | 183 V(SubtypeTestCache, "SubtypeTestCache") \ |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 friend class Serializer; | 665 friend class Serializer; |
666 friend class Deserializer; | 666 friend class Deserializer; |
667 friend class ApiMessageReader; | 667 friend class ApiMessageReader; |
668 | 668 |
669 DISALLOW_COPY_AND_ASSIGN(Symbols); | 669 DISALLOW_COPY_AND_ASSIGN(Symbols); |
670 }; | 670 }; |
671 | 671 |
672 } // namespace dart | 672 } // namespace dart |
673 | 673 |
674 #endif // RUNTIME_VM_SYMBOLS_H_ | 674 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |