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

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

Issue 23886002: remove Isolate::Current from most files starting with 'f' through 'i' (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix Created 7 years, 3 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
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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 static_cast<intptr_t>(HeapObjectsMap::kGcRootsObjectId)); 722 static_cast<intptr_t>(HeapObjectsMap::kGcRootsObjectId));
723 HeapObject* const V8HeapExplorer::kFirstGcSubrootObject = 723 HeapObject* const V8HeapExplorer::kFirstGcSubrootObject =
724 reinterpret_cast<HeapObject*>( 724 reinterpret_cast<HeapObject*>(
725 static_cast<intptr_t>(HeapObjectsMap::kGcRootsFirstSubrootId)); 725 static_cast<intptr_t>(HeapObjectsMap::kGcRootsFirstSubrootId));
726 HeapObject* const V8HeapExplorer::kLastGcSubrootObject = 726 HeapObject* const V8HeapExplorer::kLastGcSubrootObject =
727 reinterpret_cast<HeapObject*>( 727 reinterpret_cast<HeapObject*>(
728 static_cast<intptr_t>(HeapObjectsMap::kFirstAvailableObjectId)); 728 static_cast<intptr_t>(HeapObjectsMap::kFirstAvailableObjectId));
729 729
730 730
731 V8HeapExplorer::V8HeapExplorer( 731 V8HeapExplorer::V8HeapExplorer(
732 Heap* heap,
732 HeapSnapshot* snapshot, 733 HeapSnapshot* snapshot,
733 SnapshottingProgressReportingInterface* progress, 734 SnapshottingProgressReportingInterface* progress,
734 v8::HeapProfiler::ObjectNameResolver* resolver) 735 v8::HeapProfiler::ObjectNameResolver* resolver)
735 : heap_(Isolate::Current()->heap()), 736 : heap_(heap),
736 snapshot_(snapshot), 737 snapshot_(snapshot),
737 collection_(snapshot_->collection()), 738 collection_(snapshot_->collection()),
738 progress_(progress), 739 progress_(progress),
739 filler_(NULL), 740 filler_(NULL),
740 global_object_name_resolver_(resolver) { 741 global_object_name_resolver_(resolver) {
741 } 742 }
742 743
743 744
744 V8HeapExplorer::~V8HeapExplorer() { 745 V8HeapExplorer::~V8HeapExplorer() {
745 } 746 }
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1845 int count() { return objects_.length(); } 1846 int count() { return objects_.length(); }
1846 Handle<JSGlobalObject>& at(int i) { return objects_[i]; } 1847 Handle<JSGlobalObject>& at(int i) { return objects_[i]; }
1847 1848
1848 private: 1849 private:
1849 List<Handle<JSGlobalObject> > objects_; 1850 List<Handle<JSGlobalObject> > objects_;
1850 }; 1851 };
1851 1852
1852 1853
1853 // Modifies heap. Must not be run during heap traversal. 1854 // Modifies heap. Must not be run during heap traversal.
1854 void V8HeapExplorer::TagGlobalObjects() { 1855 void V8HeapExplorer::TagGlobalObjects() {
1855 Isolate* isolate = Isolate::Current(); 1856 Isolate* isolate = heap_->isolate();
1856 HandleScope scope(isolate); 1857 HandleScope scope(isolate);
1857 GlobalObjectsEnumerator enumerator; 1858 GlobalObjectsEnumerator enumerator;
1858 isolate->global_handles()->IterateAllRoots(&enumerator); 1859 isolate->global_handles()->IterateAllRoots(&enumerator);
1859 const char** urls = NewArray<const char*>(enumerator.count()); 1860 const char** urls = NewArray<const char*>(enumerator.count());
1860 for (int i = 0, l = enumerator.count(); i < l; ++i) { 1861 for (int i = 0, l = enumerator.count(); i < l; ++i) {
1861 if (global_object_name_resolver_) { 1862 if (global_object_name_resolver_) {
1862 HandleScope scope(isolate); 1863 HandleScope scope(isolate);
1863 Handle<JSGlobalObject> global_obj = enumerator.at(i); 1864 Handle<JSGlobalObject> global_obj = enumerator.at(i);
1864 urls[i] = global_object_name_resolver_->GetName( 1865 urls[i] = global_object_name_resolver_->GetName(
1865 Utils::ToLocal(Handle<JSObject>::cast(global_obj))); 1866 Utils::ToLocal(Handle<JSObject>::cast(global_obj)));
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1920 : collection_->names()->GetCopy(info->GetLabel()); 1921 : collection_->names()->GetCopy(info->GetLabel());
1921 return snapshot_->AddEntry( 1922 return snapshot_->AddEntry(
1922 entries_type_, 1923 entries_type_,
1923 name, 1924 name,
1924 HeapObjectsMap::GenerateId(info), 1925 HeapObjectsMap::GenerateId(info),
1925 size != -1 ? static_cast<int>(size) : 0); 1926 size != -1 ? static_cast<int>(size) : 0);
1926 } 1927 }
1927 1928
1928 1929
1929 NativeObjectsExplorer::NativeObjectsExplorer( 1930 NativeObjectsExplorer::NativeObjectsExplorer(
1930 HeapSnapshot* snapshot, SnapshottingProgressReportingInterface* progress) 1931 Isolate* isolate,
1931 : snapshot_(snapshot), 1932 HeapSnapshot* snapshot,
1933 SnapshottingProgressReportingInterface* progress)
1934 : isolate_(isolate),
1935 snapshot_(snapshot),
1932 collection_(snapshot_->collection()), 1936 collection_(snapshot_->collection()),
1933 progress_(progress), 1937 progress_(progress),
1934 embedder_queried_(false), 1938 embedder_queried_(false),
1935 objects_by_info_(RetainedInfosMatch), 1939 objects_by_info_(RetainedInfosMatch),
1936 native_groups_(StringsMatch), 1940 native_groups_(StringsMatch),
1937 filler_(NULL) { 1941 filler_(NULL) {
1938 synthetic_entries_allocator_ = 1942 synthetic_entries_allocator_ =
1939 new BasicHeapEntriesAllocator(snapshot, HeapEntry::kSynthetic); 1943 new BasicHeapEntriesAllocator(snapshot, HeapEntry::kSynthetic);
1940 native_entries_allocator_ = 1944 native_entries_allocator_ =
1941 new BasicHeapEntriesAllocator(snapshot, HeapEntry::kNative); 1945 new BasicHeapEntriesAllocator(snapshot, HeapEntry::kNative);
(...skipping 24 matching lines...) Expand all
1966 1970
1967 1971
1968 int NativeObjectsExplorer::EstimateObjectsCount() { 1972 int NativeObjectsExplorer::EstimateObjectsCount() {
1969 FillRetainedObjects(); 1973 FillRetainedObjects();
1970 return objects_by_info_.occupancy(); 1974 return objects_by_info_.occupancy();
1971 } 1975 }
1972 1976
1973 1977
1974 void NativeObjectsExplorer::FillRetainedObjects() { 1978 void NativeObjectsExplorer::FillRetainedObjects() {
1975 if (embedder_queried_) return; 1979 if (embedder_queried_) return;
1976 Isolate* isolate = Isolate::Current(); 1980 Isolate* isolate = isolate_;
1977 const GCType major_gc_type = kGCTypeMarkSweepCompact; 1981 const GCType major_gc_type = kGCTypeMarkSweepCompact;
1978 // Record objects that are joined into ObjectGroups. 1982 // Record objects that are joined into ObjectGroups.
1979 isolate->heap()->CallGCPrologueCallbacks( 1983 isolate->heap()->CallGCPrologueCallbacks(
1980 major_gc_type, kGCCallbackFlagConstructRetainedObjectInfos); 1984 major_gc_type, kGCCallbackFlagConstructRetainedObjectInfos);
1981 List<ObjectGroup*>* groups = isolate->global_handles()->object_groups(); 1985 List<ObjectGroup*>* groups = isolate->global_handles()->object_groups();
1982 for (int i = 0; i < groups->length(); ++i) { 1986 for (int i = 0; i < groups->length(); ++i) {
1983 ObjectGroup* group = groups->at(i); 1987 ObjectGroup* group = groups->at(i);
1984 if (group->info == NULL) continue; 1988 if (group->info == NULL) continue;
1985 List<HeapObject*>* list = GetListMaybeDisposeInfo(group->info); 1989 List<HeapObject*>* list = GetListMaybeDisposeInfo(group->info);
1986 for (size_t j = 0; j < group->length; ++j) { 1990 for (size_t j = 0; j < group->length; ++j) {
1987 HeapObject* obj = HeapObject::cast(*group->objects[j]); 1991 HeapObject* obj = HeapObject::cast(*group->objects[j]);
1988 list->Add(obj); 1992 list->Add(obj);
1989 in_groups_.Insert(obj); 1993 in_groups_.Insert(obj);
1990 } 1994 }
1991 group->info = NULL; // Acquire info object ownership. 1995 group->info = NULL; // Acquire info object ownership.
1992 } 1996 }
1993 isolate->global_handles()->RemoveObjectGroups(); 1997 isolate->global_handles()->RemoveObjectGroups();
1994 isolate->heap()->CallGCEpilogueCallbacks(major_gc_type); 1998 isolate->heap()->CallGCEpilogueCallbacks(major_gc_type);
1995 // Record objects that are not in ObjectGroups, but have class ID. 1999 // Record objects that are not in ObjectGroups, but have class ID.
1996 GlobalHandlesExtractor extractor(this); 2000 GlobalHandlesExtractor extractor(this);
1997 isolate->global_handles()->IterateAllRootsWithClassIds(&extractor); 2001 isolate->global_handles()->IterateAllRootsWithClassIds(&extractor);
1998 embedder_queried_ = true; 2002 embedder_queried_ = true;
1999 } 2003 }
2000 2004
2001 2005
2002 void NativeObjectsExplorer::FillImplicitReferences() { 2006 void NativeObjectsExplorer::FillImplicitReferences() {
2003 Isolate* isolate = Isolate::Current(); 2007 Isolate* isolate = isolate_;
2004 List<ImplicitRefGroup*>* groups = 2008 List<ImplicitRefGroup*>* groups =
2005 isolate->global_handles()->implicit_ref_groups(); 2009 isolate->global_handles()->implicit_ref_groups();
2006 for (int i = 0; i < groups->length(); ++i) { 2010 for (int i = 0; i < groups->length(); ++i) {
2007 ImplicitRefGroup* group = groups->at(i); 2011 ImplicitRefGroup* group = groups->at(i);
2008 HeapObject* parent = *group->parent; 2012 HeapObject* parent = *group->parent;
2009 int parent_entry = 2013 int parent_entry =
2010 filler_->FindOrAddEntry(parent, native_entries_allocator_)->index(); 2014 filler_->FindOrAddEntry(parent, native_entries_allocator_)->index();
2011 ASSERT(parent_entry != HeapEntry::kNoEntry); 2015 ASSERT(parent_entry != HeapEntry::kNoEntry);
2012 Object*** children = group->children; 2016 Object*** children = group->children;
2013 for (size_t j = 0; j < group->length; ++j) { 2017 for (size_t j = 0; j < group->length; ++j) {
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
2150 filler_->SetIndexedAutoIndexReference( 2154 filler_->SetIndexedAutoIndexReference(
2151 HeapGraphEdge::kElement, 2155 HeapGraphEdge::kElement,
2152 snapshot_->root()->index(), 2156 snapshot_->root()->index(),
2153 group_entry); 2157 group_entry);
2154 } 2158 }
2155 } 2159 }
2156 2160
2157 2161
2158 void NativeObjectsExplorer::VisitSubtreeWrapper(Object** p, uint16_t class_id) { 2162 void NativeObjectsExplorer::VisitSubtreeWrapper(Object** p, uint16_t class_id) {
2159 if (in_groups_.Contains(*p)) return; 2163 if (in_groups_.Contains(*p)) return;
2160 Isolate* isolate = Isolate::Current(); 2164 Isolate* isolate = isolate_;
2161 v8::RetainedObjectInfo* info = 2165 v8::RetainedObjectInfo* info =
2162 isolate->heap_profiler()->ExecuteWrapperClassCallback(class_id, p); 2166 isolate->heap_profiler()->ExecuteWrapperClassCallback(class_id, p);
2163 if (info == NULL) return; 2167 if (info == NULL) return;
2164 GetListMaybeDisposeInfo(info)->Add(HeapObject::cast(*p)); 2168 GetListMaybeDisposeInfo(info)->Add(HeapObject::cast(*p));
2165 } 2169 }
2166 2170
2167 2171
2168 class SnapshotFiller : public SnapshotFillerInterface { 2172 class SnapshotFiller : public SnapshotFillerInterface {
2169 public: 2173 public:
2170 explicit SnapshotFiller(HeapSnapshot* snapshot, HeapEntriesMap* entries) 2174 explicit SnapshotFiller(HeapSnapshot* snapshot, HeapEntriesMap* entries)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 }; 2227 };
2224 2228
2225 2229
2226 HeapSnapshotGenerator::HeapSnapshotGenerator( 2230 HeapSnapshotGenerator::HeapSnapshotGenerator(
2227 HeapSnapshot* snapshot, 2231 HeapSnapshot* snapshot,
2228 v8::ActivityControl* control, 2232 v8::ActivityControl* control,
2229 v8::HeapProfiler::ObjectNameResolver* resolver, 2233 v8::HeapProfiler::ObjectNameResolver* resolver,
2230 Heap* heap) 2234 Heap* heap)
2231 : snapshot_(snapshot), 2235 : snapshot_(snapshot),
2232 control_(control), 2236 control_(control),
2233 v8_heap_explorer_(snapshot_, this, resolver), 2237 v8_heap_explorer_(heap, snapshot_, this, resolver),
2234 dom_explorer_(snapshot_, this), 2238 dom_explorer_(heap->isolate(), snapshot_, this),
2235 heap_(heap) { 2239 heap_(heap) {
2236 } 2240 }
2237 2241
2238 2242
2239 bool HeapSnapshotGenerator::GenerateSnapshot() { 2243 bool HeapSnapshotGenerator::GenerateSnapshot() {
2240 v8_heap_explorer_.TagGlobalObjects(); 2244 v8_heap_explorer_.TagGlobalObjects();
2241 2245
2242 // TODO(1562) Profiler assumes that any object that is in the heap after 2246 // TODO(1562) Profiler assumes that any object that is in the heap after
2243 // full GC is reachable from the root when computing dominators. 2247 // full GC is reachable from the root when computing dominators.
2244 // This is not true for weakly reachable objects. 2248 // This is not true for weakly reachable objects.
2245 // As a temporary solution we call GC twice. 2249 // As a temporary solution we call GC twice.
2246 Isolate::Current()->heap()->CollectAllGarbage( 2250 heap_->CollectAllGarbage(
2247 Heap::kMakeHeapIterableMask, 2251 Heap::kMakeHeapIterableMask,
2248 "HeapSnapshotGenerator::GenerateSnapshot"); 2252 "HeapSnapshotGenerator::GenerateSnapshot");
2249 Isolate::Current()->heap()->CollectAllGarbage( 2253 heap_->CollectAllGarbage(
2250 Heap::kMakeHeapIterableMask, 2254 Heap::kMakeHeapIterableMask,
2251 "HeapSnapshotGenerator::GenerateSnapshot"); 2255 "HeapSnapshotGenerator::GenerateSnapshot");
2252 2256
2253 #ifdef VERIFY_HEAP 2257 #ifdef VERIFY_HEAP
2254 Heap* debug_heap = Isolate::Current()->heap(); 2258 Heap* debug_heap = heap_;
2255 CHECK(!debug_heap->old_data_space()->was_swept_conservatively()); 2259 CHECK(!debug_heap->old_data_space()->was_swept_conservatively());
2256 CHECK(!debug_heap->old_pointer_space()->was_swept_conservatively()); 2260 CHECK(!debug_heap->old_pointer_space()->was_swept_conservatively());
2257 CHECK(!debug_heap->code_space()->was_swept_conservatively()); 2261 CHECK(!debug_heap->code_space()->was_swept_conservatively());
2258 CHECK(!debug_heap->cell_space()->was_swept_conservatively()); 2262 CHECK(!debug_heap->cell_space()->was_swept_conservatively());
2259 CHECK(!debug_heap->property_cell_space()-> 2263 CHECK(!debug_heap->property_cell_space()->
2260 was_swept_conservatively()); 2264 was_swept_conservatively());
2261 CHECK(!debug_heap->map_space()->was_swept_conservatively()); 2265 CHECK(!debug_heap->map_space()->was_swept_conservatively());
2262 #endif 2266 #endif
2263 2267
2264 // The following code uses heap iterators, so we want the heap to be 2268 // The following code uses heap iterators, so we want the heap to be
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
2703 2707
2704 2708
2705 void HeapSnapshotJSONSerializer::SortHashMap( 2709 void HeapSnapshotJSONSerializer::SortHashMap(
2706 HashMap* map, List<HashMap::Entry*>* sorted_entries) { 2710 HashMap* map, List<HashMap::Entry*>* sorted_entries) {
2707 for (HashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) 2711 for (HashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p))
2708 sorted_entries->Add(p); 2712 sorted_entries->Add(p);
2709 sorted_entries->Sort(SortUsingEntryValue); 2713 sorted_entries->Sort(SortUsingEntryValue);
2710 } 2714 }
2711 2715
2712 } } // namespace v8::internal 2716 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698