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

Side by Side Diff: src/heap/objects-visiting.cc

Issue 904633003: Just visit young array buffers during scavenge. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/heap/objects-visiting.h" 7 #include "src/heap/objects-visiting.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 return heap->gc_state() == Heap::MARK_COMPACT && 184 return heap->gc_state() == Heap::MARK_COMPACT &&
185 heap->mark_compact_collector()->is_compacting(); 185 heap->mark_compact_collector()->is_compacting();
186 } 186 }
187 187
188 188
189 template <class T> 189 template <class T>
190 struct WeakListVisitor; 190 struct WeakListVisitor;
191 191
192 192
193 template <class T> 193 template <class T>
194 Object* VisitWeakList(Heap* heap, Object* list, WeakObjectRetainer* retainer) { 194 Object* VisitWeakList(Heap* heap, Object* list, WeakObjectRetainer* retainer,
195 bool stop_after_young) {
195 Object* undefined = heap->undefined_value(); 196 Object* undefined = heap->undefined_value();
196 Object* head = undefined; 197 Object* head = undefined;
197 T* tail = NULL; 198 T* tail = NULL;
198 MarkCompactCollector* collector = heap->mark_compact_collector(); 199 MarkCompactCollector* collector = heap->mark_compact_collector();
199 bool record_slots = MustRecordSlots(heap); 200 bool record_slots = MustRecordSlots(heap);
201
200 while (list != undefined) { 202 while (list != undefined) {
201 // Check whether to keep the candidate in the list. 203 // Check whether to keep the candidate in the list.
202 T* candidate = reinterpret_cast<T*>(list); 204 T* candidate = reinterpret_cast<T*>(list);
205 T* original_candidate = candidate;
206
203 Object* retained = retainer->RetainAs(list); 207 Object* retained = retainer->RetainAs(list);
204 if (retained != NULL) { 208 if (retained != NULL) {
205 if (head == undefined) { 209 if (head == undefined) {
206 // First element in the list. 210 // First element in the list.
207 head = retained; 211 head = retained;
208 } else { 212 } else {
209 // Subsequent elements in the list. 213 // Subsequent elements in the list.
210 DCHECK(tail != NULL); 214 DCHECK(tail != NULL);
211 WeakListVisitor<T>::SetWeakNext(tail, retained); 215 WeakListVisitor<T>::SetWeakNext(tail, retained);
212 if (record_slots) { 216 if (record_slots) {
213 Object** next_slot = 217 Object** next_slot =
214 HeapObject::RawField(tail, WeakListVisitor<T>::WeakNextOffset()); 218 HeapObject::RawField(tail, WeakListVisitor<T>::WeakNextOffset());
215 collector->RecordSlot(next_slot, next_slot, retained); 219 collector->RecordSlot(next_slot, next_slot, retained);
216 } 220 }
217 } 221 }
218 // Retained object is new tail. 222 // Retained object is new tail.
219 DCHECK(!retained->IsUndefined()); 223 DCHECK(!retained->IsUndefined());
220 candidate = reinterpret_cast<T*>(retained); 224 candidate = reinterpret_cast<T*>(retained);
221 tail = candidate; 225 tail = candidate;
222 226
223
224 // tail is a live object, visit it. 227 // tail is a live object, visit it.
225 WeakListVisitor<T>::VisitLiveObject(heap, tail, retainer); 228 WeakListVisitor<T>::VisitLiveObject(heap, tail, retainer);
229
230 // The list of weak objects is usually order. It starts with objects
231 // recently allocated in the young generation followed by objects
232 // allocated in the old generation.
233 // For young generation collections we just have to visit until the last
234 // young generation objects.
235 if (stop_after_young && !heap->InNewSpace(original_candidate)) {
236 return head;
237 }
226 } else { 238 } else {
227 WeakListVisitor<T>::VisitPhantomObject(heap, candidate); 239 WeakListVisitor<T>::VisitPhantomObject(heap, candidate);
228 } 240 }
229 241
230 // Move to next element in the list. 242 // Move to next element in the list.
231 list = WeakListVisitor<T>::WeakNext(candidate); 243 list = WeakListVisitor<T>::WeakNext(candidate);
232 } 244 }
233 245
234 // Terminate the list if there is one or more elements. 246 // Terminate the list if there is one or more elements.
235 if (tail != NULL) { 247 if (tail != NULL) {
236 WeakListVisitor<T>::SetWeakNext(tail, undefined); 248 WeakListVisitor<T>::SetWeakNext(tail, undefined);
237 } 249 }
250
238 return head; 251 return head;
239 } 252 }
240 253
241 254
242 template <class T> 255 template <class T>
243 static void ClearWeakList(Heap* heap, Object* list) { 256 static void ClearWeakList(Heap* heap, Object* list) {
244 Object* undefined = heap->undefined_value(); 257 Object* undefined = heap->undefined_value();
245 while (list != undefined) { 258 while (list != undefined) {
246 T* candidate = reinterpret_cast<T*>(list); 259 T* candidate = reinterpret_cast<T*>(list);
247 list = WeakListVisitor<T>::WeakNext(candidate); 260 list = WeakListVisitor<T>::WeakNext(candidate);
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 if (heap->gc_state() == Heap::MARK_COMPACT) { 322 if (heap->gc_state() == Heap::MARK_COMPACT) {
310 DoWeakList<Code>(heap, context, retainer, Context::OPTIMIZED_CODE_LIST); 323 DoWeakList<Code>(heap, context, retainer, Context::OPTIMIZED_CODE_LIST);
311 DoWeakList<Code>(heap, context, retainer, Context::DEOPTIMIZED_CODE_LIST); 324 DoWeakList<Code>(heap, context, retainer, Context::DEOPTIMIZED_CODE_LIST);
312 } 325 }
313 } 326 }
314 327
315 template <class T> 328 template <class T>
316 static void DoWeakList(Heap* heap, Context* context, 329 static void DoWeakList(Heap* heap, Context* context,
317 WeakObjectRetainer* retainer, int index) { 330 WeakObjectRetainer* retainer, int index) {
318 // Visit the weak list, removing dead intermediate elements. 331 // Visit the weak list, removing dead intermediate elements.
319 Object* list_head = VisitWeakList<T>(heap, context->get(index), retainer); 332 Object* list_head =
333 VisitWeakList<T>(heap, context->get(index), retainer, false);
320 334
321 // Update the list head. 335 // Update the list head.
322 context->set(index, list_head, UPDATE_WRITE_BARRIER); 336 context->set(index, list_head, UPDATE_WRITE_BARRIER);
323 337
324 if (MustRecordSlots(heap)) { 338 if (MustRecordSlots(heap)) {
325 // Record the updated slot if necessary. 339 // Record the updated slot if necessary.
326 Object** head_slot = 340 Object** head_slot =
327 HeapObject::RawField(context, FixedArray::SizeFor(index)); 341 HeapObject::RawField(context, FixedArray::SizeFor(index));
328 heap->mark_compact_collector()->RecordSlot(head_slot, head_slot, 342 heap->mark_compact_collector()->RecordSlot(head_slot, head_slot,
329 list_head); 343 list_head);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 obj->set_weak_next(next); 375 obj->set_weak_next(next);
362 } 376 }
363 377
364 static Object* WeakNext(JSArrayBuffer* obj) { return obj->weak_next(); } 378 static Object* WeakNext(JSArrayBuffer* obj) { return obj->weak_next(); }
365 379
366 static int WeakNextOffset() { return JSArrayBuffer::kWeakNextOffset; } 380 static int WeakNextOffset() { return JSArrayBuffer::kWeakNextOffset; }
367 381
368 static void VisitLiveObject(Heap* heap, JSArrayBuffer* array_buffer, 382 static void VisitLiveObject(Heap* heap, JSArrayBuffer* array_buffer,
369 WeakObjectRetainer* retainer) { 383 WeakObjectRetainer* retainer) {
370 Object* typed_array_obj = VisitWeakList<JSArrayBufferView>( 384 Object* typed_array_obj = VisitWeakList<JSArrayBufferView>(
371 heap, array_buffer->weak_first_view(), retainer); 385 heap, array_buffer->weak_first_view(), retainer, false);
372 array_buffer->set_weak_first_view(typed_array_obj); 386 array_buffer->set_weak_first_view(typed_array_obj);
373 if (typed_array_obj != heap->undefined_value() && MustRecordSlots(heap)) { 387 if (typed_array_obj != heap->undefined_value() && MustRecordSlots(heap)) {
374 Object** slot = HeapObject::RawField(array_buffer, 388 Object** slot = HeapObject::RawField(array_buffer,
375 JSArrayBuffer::kWeakFirstViewOffset); 389 JSArrayBuffer::kWeakFirstViewOffset);
376 heap->mark_compact_collector()->RecordSlot(slot, slot, typed_array_obj); 390 heap->mark_compact_collector()->RecordSlot(slot, slot, typed_array_obj);
377 } 391 }
378 } 392 }
379 393
380 static void VisitPhantomObject(Heap* heap, JSArrayBuffer* phantom) { 394 static void VisitPhantomObject(Heap* heap, JSArrayBuffer* phantom) {
381 Runtime::FreeArrayBuffer(heap->isolate(), phantom); 395 Runtime::FreeArrayBuffer(heap->isolate(), phantom);
(...skipping 10 matching lines...) Expand all
392 static Object* WeakNext(AllocationSite* obj) { return obj->weak_next(); } 406 static Object* WeakNext(AllocationSite* obj) { return obj->weak_next(); }
393 407
394 static int WeakNextOffset() { return AllocationSite::kWeakNextOffset; } 408 static int WeakNextOffset() { return AllocationSite::kWeakNextOffset; }
395 409
396 static void VisitLiveObject(Heap*, AllocationSite*, WeakObjectRetainer*) {} 410 static void VisitLiveObject(Heap*, AllocationSite*, WeakObjectRetainer*) {}
397 411
398 static void VisitPhantomObject(Heap*, AllocationSite*) {} 412 static void VisitPhantomObject(Heap*, AllocationSite*) {}
399 }; 413 };
400 414
401 415
402 template Object* VisitWeakList<Code>(Heap* heap, Object* list,
403 WeakObjectRetainer* retainer);
404
405
406 template Object* VisitWeakList<JSFunction>(Heap* heap, Object* list,
407 WeakObjectRetainer* retainer);
408
409
410 template Object* VisitWeakList<Context>(Heap* heap, Object* list, 416 template Object* VisitWeakList<Context>(Heap* heap, Object* list,
411 WeakObjectRetainer* retainer); 417 WeakObjectRetainer* retainer,
418 bool stop_after_young);
412 419
413 420
414 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list, 421 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list,
415 WeakObjectRetainer* retainer); 422 WeakObjectRetainer* retainer,
423 bool stop_after_young);
416 424
417 425
418 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 426 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
419 WeakObjectRetainer* retainer); 427 WeakObjectRetainer* retainer,
428 bool stop_after_young);
420 } 429 }
421 } // namespace v8::internal 430 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap/objects-visiting.h ('k') | src/objects.cc » ('j') | src/runtime/runtime-typedarray.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698