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

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

Issue 51653006: Track live instance and allocation counts for classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/stub_code_x64.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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 V(_Mint, "_Mint") \ 118 V(_Mint, "_Mint") \
119 V(_Bigint, "_Bigint") \ 119 V(_Bigint, "_Bigint") \
120 V(_Double, "_Double") \ 120 V(_Double, "_Double") \
121 V(Bool, "bool") \ 121 V(Bool, "bool") \
122 V(_List, "_List") \ 122 V(_List, "_List") \
123 V(_ListFactory, "_List.") \ 123 V(_ListFactory, "_List.") \
124 V(_GrowableList, "_GrowableList") \ 124 V(_GrowableList, "_GrowableList") \
125 V(_GrowableListFactory, "_GrowableList.") \ 125 V(_GrowableListFactory, "_GrowableList.") \
126 V(_GrowableListWithData, "_GrowableList.withData") \ 126 V(_GrowableListWithData, "_GrowableList.withData") \
127 V(_ImmutableList, "_ImmutableList") \ 127 V(_ImmutableList, "_ImmutableList") \
128 V(_String, "String") \
128 V(OneByteString, "_OneByteString") \ 129 V(OneByteString, "_OneByteString") \
129 V(TwoByteString, "_TwoByteString") \ 130 V(TwoByteString, "_TwoByteString") \
130 V(ExternalOneByteString, "_ExternalOneByteString") \ 131 V(ExternalOneByteString, "_ExternalOneByteString") \
131 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 132 V(ExternalTwoByteString, "_ExternalTwoByteString") \
132 V(StackTrace, "StackTrace") \ 133 V(StackTrace, "StackTrace") \
133 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 134 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
134 V(Object, "Object") \ 135 V(Object, "Object") \
135 V(Int, "int") \ 136 V(Int, "int") \
136 V(Double, "double") \ 137 V(Double, "double") \
137 V(_Float32x4, "_Float32x4") \ 138 V(_Float32x4, "_Float32x4") \
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 friend class SnapshotReader; 512 friend class SnapshotReader;
512 friend class SnapshotWriter; 513 friend class SnapshotWriter;
513 friend class ApiMessageReader; 514 friend class ApiMessageReader;
514 515
515 DISALLOW_COPY_AND_ASSIGN(Symbols); 516 DISALLOW_COPY_AND_ASSIGN(Symbols);
516 }; 517 };
517 518
518 } // namespace dart 519 } // namespace dart
519 520
520 #endif // VM_SYMBOLS_H_ 521 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698