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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 V(Instructions, "Instructions") \ | 165 V(Instructions, "Instructions") \ |
166 V(ObjectPool, "ObjectPool") \ | 166 V(ObjectPool, "ObjectPool") \ |
167 V(PcDescriptors, "PcDescriptors") \ | 167 V(PcDescriptors, "PcDescriptors") \ |
168 V(CodeSourceMap, "CodeSourceMap") \ | 168 V(CodeSourceMap, "CodeSourceMap") \ |
169 V(Stackmap, "Stackmap") \ | 169 V(Stackmap, "Stackmap") \ |
170 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 170 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
171 V(ExceptionHandlers, "ExceptionHandlers") \ | 171 V(ExceptionHandlers, "ExceptionHandlers") \ |
172 V(DeoptInfo, "DeoptInfo") \ | 172 V(DeoptInfo, "DeoptInfo") \ |
173 V(Context, "Context") \ | 173 V(Context, "Context") \ |
174 V(ContextScope, "ContextScope") \ | 174 V(ContextScope, "ContextScope") \ |
| 175 V(SingleTargetCache, "SingleTargetCache") \ |
175 V(ICData, "ICData") \ | 176 V(ICData, "ICData") \ |
176 V(MegamorphicCache, "MegamorphicCache") \ | 177 V(MegamorphicCache, "MegamorphicCache") \ |
177 V(SubtypeTestCache, "SubtypeTestCache") \ | 178 V(SubtypeTestCache, "SubtypeTestCache") \ |
178 V(Error, "Error") \ | 179 V(Error, "Error") \ |
179 V(ApiError, "ApiError") \ | 180 V(ApiError, "ApiError") \ |
180 V(LanguageError, "LanguageError") \ | 181 V(LanguageError, "LanguageError") \ |
181 V(UnhandledException, "UnhandledException") \ | 182 V(UnhandledException, "UnhandledException") \ |
182 V(UnwindError, "UnwindError") \ | 183 V(UnwindError, "UnwindError") \ |
183 V(IntegerImplementation, "_IntegerImplementation") \ | 184 V(IntegerImplementation, "_IntegerImplementation") \ |
184 V(Number, "num") \ | 185 V(Number, "num") \ |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 friend class Serializer; | 684 friend class Serializer; |
684 friend class Deserializer; | 685 friend class Deserializer; |
685 friend class ApiMessageReader; | 686 friend class ApiMessageReader; |
686 | 687 |
687 DISALLOW_COPY_AND_ASSIGN(Symbols); | 688 DISALLOW_COPY_AND_ASSIGN(Symbols); |
688 }; | 689 }; |
689 | 690 |
690 } // namespace dart | 691 } // namespace dart |
691 | 692 |
692 #endif // VM_SYMBOLS_H_ | 693 #endif // VM_SYMBOLS_H_ |
OLD | NEW |