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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 V(ObjectPool, "ObjectPool") \ | 168 V(ObjectPool, "ObjectPool") \ |
169 V(PcDescriptors, "PcDescriptors") \ | 169 V(PcDescriptors, "PcDescriptors") \ |
170 V(CodeSourceMap, "CodeSourceMap") \ | 170 V(CodeSourceMap, "CodeSourceMap") \ |
171 V(Stackmap, "Stackmap") \ | 171 V(Stackmap, "Stackmap") \ |
172 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 172 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
173 V(ExceptionHandlers, "ExceptionHandlers") \ | 173 V(ExceptionHandlers, "ExceptionHandlers") \ |
174 V(DeoptInfo, "DeoptInfo") \ | 174 V(DeoptInfo, "DeoptInfo") \ |
175 V(Context, "Context") \ | 175 V(Context, "Context") \ |
176 V(ContextScope, "ContextScope") \ | 176 V(ContextScope, "ContextScope") \ |
177 V(SingleTargetCache, "SingleTargetCache") \ | 177 V(SingleTargetCache, "SingleTargetCache") \ |
| 178 V(UnlinkedCall, "UnlinkedCall") \ |
178 V(ICData, "ICData") \ | 179 V(ICData, "ICData") \ |
179 V(MegamorphicCache, "MegamorphicCache") \ | 180 V(MegamorphicCache, "MegamorphicCache") \ |
180 V(SubtypeTestCache, "SubtypeTestCache") \ | 181 V(SubtypeTestCache, "SubtypeTestCache") \ |
181 V(Error, "Error") \ | 182 V(Error, "Error") \ |
182 V(ApiError, "ApiError") \ | 183 V(ApiError, "ApiError") \ |
183 V(LanguageError, "LanguageError") \ | 184 V(LanguageError, "LanguageError") \ |
184 V(UnhandledException, "UnhandledException") \ | 185 V(UnhandledException, "UnhandledException") \ |
185 V(UnwindError, "UnwindError") \ | 186 V(UnwindError, "UnwindError") \ |
186 V(IntegerImplementation, "_IntegerImplementation") \ | 187 V(IntegerImplementation, "_IntegerImplementation") \ |
187 V(Number, "num") \ | 188 V(Number, "num") \ |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 friend class Serializer; | 689 friend class Serializer; |
689 friend class Deserializer; | 690 friend class Deserializer; |
690 friend class ApiMessageReader; | 691 friend class ApiMessageReader; |
691 | 692 |
692 DISALLOW_COPY_AND_ASSIGN(Symbols); | 693 DISALLOW_COPY_AND_ASSIGN(Symbols); |
693 }; | 694 }; |
694 | 695 |
695 } // namespace dart | 696 } // namespace dart |
696 | 697 |
697 #endif // VM_SYMBOLS_H_ | 698 #endif // VM_SYMBOLS_H_ |
OLD | NEW |