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

Side by Side Diff: src/heap-snapshot-generator.h

Issue 153773002: A64: Synchronize with r16679. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/heap-inl.h ('k') | src/heap-snapshot-generator.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 enum Type { 93 enum Type {
94 kHidden = v8::HeapGraphNode::kHidden, 94 kHidden = v8::HeapGraphNode::kHidden,
95 kArray = v8::HeapGraphNode::kArray, 95 kArray = v8::HeapGraphNode::kArray,
96 kString = v8::HeapGraphNode::kString, 96 kString = v8::HeapGraphNode::kString,
97 kObject = v8::HeapGraphNode::kObject, 97 kObject = v8::HeapGraphNode::kObject,
98 kCode = v8::HeapGraphNode::kCode, 98 kCode = v8::HeapGraphNode::kCode,
99 kClosure = v8::HeapGraphNode::kClosure, 99 kClosure = v8::HeapGraphNode::kClosure,
100 kRegExp = v8::HeapGraphNode::kRegExp, 100 kRegExp = v8::HeapGraphNode::kRegExp,
101 kHeapNumber = v8::HeapGraphNode::kHeapNumber, 101 kHeapNumber = v8::HeapGraphNode::kHeapNumber,
102 kNative = v8::HeapGraphNode::kNative, 102 kNative = v8::HeapGraphNode::kNative,
103 kSynthetic = v8::HeapGraphNode::kSynthetic 103 kSynthetic = v8::HeapGraphNode::kSynthetic,
104 kConsString = v8::HeapGraphNode::kConsString,
105 kSlicedString = v8::HeapGraphNode::kSlicedString
104 }; 106 };
105 static const int kNoEntry; 107 static const int kNoEntry;
106 108
107 HeapEntry() { } 109 HeapEntry() { }
108 HeapEntry(HeapSnapshot* snapshot, 110 HeapEntry(HeapSnapshot* snapshot,
109 Type type, 111 Type type,
110 const char* name, 112 const char* name,
111 SnapshotObjectId id, 113 SnapshotObjectId id,
112 int self_size); 114 int self_size);
113 115
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 SnapshotObjectId FindOrAddEntry(Address addr, unsigned int size); 230 SnapshotObjectId FindOrAddEntry(Address addr, unsigned int size);
229 void MoveObject(Address from, Address to); 231 void MoveObject(Address from, Address to);
230 SnapshotObjectId last_assigned_id() const { 232 SnapshotObjectId last_assigned_id() const {
231 return next_id_ - kObjectIdStep; 233 return next_id_ - kObjectIdStep;
232 } 234 }
233 235
234 void StopHeapObjectsTracking(); 236 void StopHeapObjectsTracking();
235 SnapshotObjectId PushHeapObjectsStats(OutputStream* stream); 237 SnapshotObjectId PushHeapObjectsStats(OutputStream* stream);
236 size_t GetUsedMemorySize() const; 238 size_t GetUsedMemorySize() const;
237 239
238 static SnapshotObjectId GenerateId(v8::RetainedObjectInfo* info); 240 static SnapshotObjectId GenerateId(Heap* heap, v8::RetainedObjectInfo* info);
239 static inline SnapshotObjectId GetNthGcSubrootId(int delta); 241 static inline SnapshotObjectId GetNthGcSubrootId(int delta);
240 242
241 static const int kObjectIdStep = 2; 243 static const int kObjectIdStep = 2;
242 static const SnapshotObjectId kInternalRootObjectId; 244 static const SnapshotObjectId kInternalRootObjectId;
243 static const SnapshotObjectId kGcRootsObjectId; 245 static const SnapshotObjectId kGcRootsObjectId;
244 static const SnapshotObjectId kNativesRootObjectId; 246 static const SnapshotObjectId kNativesRootObjectId;
245 static const SnapshotObjectId kGcRootsFirstSubrootId; 247 static const SnapshotObjectId kGcRootsFirstSubrootId;
246 static const SnapshotObjectId kFirstAvailableObjectId; 248 static const SnapshotObjectId kFirstAvailableObjectId;
247 249
248 private: 250 private:
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 friend class HeapSnapshotJSONSerializerIterator; 671 friend class HeapSnapshotJSONSerializerIterator;
670 672
671 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); 673 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer);
672 }; 674 };
673 675
674 676
675 } } // namespace v8::internal 677 } } // namespace v8::internal
676 678
677 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ 679 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_
678 680
OLDNEW
« no previous file with comments | « src/heap-inl.h ('k') | src/heap-snapshot-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698