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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp

Issue 1539133002: Oilpan: avoid heap allocation in MajorGCWrapperVisitor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: still support traverse-only DOMWrapperTracer invocations Created 4 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
« no previous file with comments | « no previous file | 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 v8::UniqueId id(*idPointer); 227 v8::UniqueId id(*idPointer);
228 if (!m_liveRootGroupIdSet) { 228 if (!m_liveRootGroupIdSet) {
229 m_isolate->SetObjectGroupId(liveRoot, id); 229 m_isolate->SetObjectGroupId(liveRoot, id);
230 m_liveRootGroupIdSet = true; 230 m_liveRootGroupIdSet = true;
231 ++m_domObjectsWithPendingActivity; 231 ++m_domObjectsWithPendingActivity;
232 } 232 }
233 return id; 233 return id;
234 } 234 }
235 235
236 v8::Isolate* m_isolate; 236 v8::Isolate* m_isolate;
237 WillBePersistentHeapVector<RawPtrWillBeMember<Node>> m_groupsWhichNeedRetain erInfo; 237 Vector<RawPtrWillBeUntracedMember<Node>> m_groupsWhichNeedRetainerInfo;
haraken 2015/12/30 16:00:14 Maybe worth adding a comment to explain why we nee
sof 2015/12/30 16:08:01 added explanatory comment.
238 int m_domObjectsWithPendingActivity; 238 int m_domObjectsWithPendingActivity;
239 bool m_liveRootGroupIdSet; 239 bool m_liveRootGroupIdSet;
240 bool m_constructRetainedObjectInfos; 240 bool m_constructRetainedObjectInfos;
241 }; 241 };
242 242
243 static unsigned long long usedHeapSize(v8::Isolate* isolate) 243 static unsigned long long usedHeapSize(v8::Isolate* isolate)
244 { 244 {
245 v8::HeapStatistics heapStatistics; 245 v8::HeapStatistics heapStatistics;
246 isolate->GetHeapStatistics(&heapStatistics); 246 isolate->GetHeapStatistics(&heapStatistics);
247 return heapStatistics.used_heap_size(); 247 return heapStatistics.used_heap_size();
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 Visitor* m_visitor; 445 Visitor* m_visitor;
446 }; 446 };
447 447
448 void V8GCController::traceDOMWrappers(v8::Isolate* isolate, Visitor* visitor) 448 void V8GCController::traceDOMWrappers(v8::Isolate* isolate, Visitor* visitor)
449 { 449 {
450 DOMWrapperTracer tracer(visitor); 450 DOMWrapperTracer tracer(visitor);
451 isolate->VisitHandlesWithClassIds(&tracer); 451 isolate->VisitHandlesWithClassIds(&tracer);
452 } 452 }
453 453
454 } // namespace blink 454 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698