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

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

Issue 16853006: Object histogramin the vm (--print-object-histogram). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/snapshot.cc » ('j') | 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_RAW_OBJECT_H_ 5 #ifndef VM_RAW_OBJECT_H_
6 #define VM_RAW_OBJECT_H_ 6 #define VM_RAW_OBJECT_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/globals.h" 9 #include "vm/globals.h"
10 #include "vm/token.h" 10 #include "vm/token.h"
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 friend class Api; 436 friend class Api;
437 friend class Array; 437 friend class Array;
438 friend class FreeListElement; 438 friend class FreeListElement;
439 friend class GCMarker; 439 friend class GCMarker;
440 friend class ExternalTypedData; 440 friend class ExternalTypedData;
441 friend class Heap; 441 friend class Heap;
442 friend class HeapProfiler; 442 friend class HeapProfiler;
443 friend class HeapProfilerRootVisitor; 443 friend class HeapProfilerRootVisitor;
444 friend class MarkingVisitor; 444 friend class MarkingVisitor;
445 friend class Object; 445 friend class Object;
446 friend class ObjectHistogram;
446 friend class RawExternalTypedData; 447 friend class RawExternalTypedData;
447 friend class RawInstructions; 448 friend class RawInstructions;
448 friend class RawInstance; 449 friend class RawInstance;
449 friend class RawTypedData; 450 friend class RawTypedData;
450 friend class Scavenger; 451 friend class Scavenger;
451 friend class SnapshotReader; 452 friend class SnapshotReader;
452 friend class SnapshotWriter; 453 friend class SnapshotWriter;
453 friend class String; 454 friend class String;
454 friend class TypedData; 455 friend class TypedData;
455 friend class TypedDataView; 456 friend class TypedDataView;
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 // Make sure this is updated when new TypedData types are added. 1689 // Make sure this is updated when new TypedData types are added.
1689 ASSERT(kTypedDataInt8ArrayViewCid == kTypedDataInt8ArrayCid + 12); 1690 ASSERT(kTypedDataInt8ArrayViewCid == kTypedDataInt8ArrayCid + 12);
1690 ASSERT(kExternalTypedDataInt8ArrayCid == kTypedDataInt8ArrayViewCid + 13); 1691 ASSERT(kExternalTypedDataInt8ArrayCid == kTypedDataInt8ArrayViewCid + 13);
1691 ASSERT(kNullCid == kExternalTypedDataInt8ArrayCid + 12); 1692 ASSERT(kNullCid == kExternalTypedDataInt8ArrayCid + 12);
1692 return (kNullCid - kTypedDataInt8ArrayCid); 1693 return (kNullCid - kTypedDataInt8ArrayCid);
1693 } 1694 }
1694 1695
1695 } // namespace dart 1696 } // namespace dart
1696 1697
1697 #endif // VM_RAW_OBJECT_H_ 1698 #endif // VM_RAW_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698