Home
last modified time | relevance | path

Searched refs:HeapEntry (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/v8/src/
Dheap-snapshot-generator.h15 class HeapEntry; variable
49 INLINE(HeapEntry* from() const);
50 HeapEntry* to() const { return to_entry_; } in to()
61 HeapEntry* to_entry_;
72 class HeapEntry BASE_EMBEDDED {
91 HeapEntry() { } in HeapEntry() function
92 HeapEntry(HeapSnapshot* snapshot,
116 HeapGraphEdge::Type type, int index, HeapEntry* entry);
118 HeapGraphEdge::Type type, const char* name, HeapEntry* entry);
155 HeapEntry* root() { return &entries_[root_index_]; } in root()
[all …]
Dheap-snapshot-generator.cc47 const int HeapEntry::kNoEntry = -1;
49 HeapEntry::HeapEntry(HeapSnapshot* snapshot, in HeapEntry() function in v8::internal::HeapEntry
65 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, in SetNamedReference()
67 HeapEntry* entry) { in SetNamedReference()
74 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, in SetIndexedReference()
76 HeapEntry* entry) { in SetIndexedReference()
83 void HeapEntry::Print( in Print()
144 const char* HeapEntry::TypeAsString() { in TypeAsString()
189 root_index_(HeapEntry::kNoEntry), in HeapSnapshot()
190 gc_roots_index_(HeapEntry::kNoEntry), in HeapSnapshot()
[all …]
Dheap-snapshot-generator-inl.h14 HeapEntry* HeapGraphEdge::from() const { in from()
24 int HeapEntry::index() const { in index()
29 int HeapEntry::set_children_index(int index) { in set_children_index()
37 HeapGraphEdge** HeapEntry::children_arr() { in children_arr()
Dapi.cc7220 const i::HeapEntry* from = ToInternal(this)->from(); in GetFromNode()
7226 const i::HeapEntry* to = ToInternal(this)->to(); in GetToNode()
7231 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal()
7232 return const_cast<i::HeapEntry*>( in ToInternal()
7233 reinterpret_cast<const i::HeapEntry*>(entry)); in ToInternal()
/external/chromium_org/v8/test/cctest/
Dtest-heap-profiler.cc57 void CheckEntry(i::HeapEntry* entry) { in CheckEntry()
67 void CheckAllReachables(i::HeapEntry* root) { in CheckAllReachables()
69 i::List<i::HeapEntry*> list(10); in CheckAllReachables()
73 i::HeapEntry* entry = list.RemoveLast(); in CheckAllReachables()
77 i::HeapEntry* child = children[i]->to(); in CheckAllReachables()
105 CHECK_EQ(0, strncmp("Object", const_cast<i::HeapEntry*>( in GetGlobalObject()
106 reinterpret_cast<const i::HeapEntry*>(global_obj))->name(), 6)); in GetGlobalObject()
159 i::List<i::HeapEntry>& entries = heap_snapshot->entries(); in ValidateSnapshot()
202 det.CheckAllReachables(const_cast<i::HeapEntry*>( in TEST()
203 reinterpret_cast<const i::HeapEntry*>(global_env2))); in TEST()
[all …]