Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: runtime/vm/symbols.h

Issue 1175523002: Object pool with support for untagged entries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/stub_code.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/stub_code.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698