OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 | 446 |
447 heap_->CompletelyClearInstanceofCache(); | 447 heap_->CompletelyClearInstanceofCache(); |
448 heap_->isolate()->compilation_cache()->MarkCompactPrologue(); | 448 heap_->isolate()->compilation_cache()->MarkCompactPrologue(); |
449 | 449 |
450 if (FLAG_cleanup_code_caches_at_gc) { | 450 if (FLAG_cleanup_code_caches_at_gc) { |
451 // We will mark cache black with a separate pass | 451 // We will mark cache black with a separate pass |
452 // when we finish marking. | 452 // when we finish marking. |
453 MarkObjectGreyDoNotEnqueue(heap_->polymorphic_code_cache()); | 453 MarkObjectGreyDoNotEnqueue(heap_->polymorphic_code_cache()); |
454 } | 454 } |
455 | 455 |
| 456 if (is_compacting_) { |
| 457 // It's difficult to filter out slots recorded for large objects. |
| 458 LargeObjectIterator it(heap_->lo_space()); |
| 459 for (HeapObject* obj = it.Next(); obj != NULL; obj = it.Next()) { |
| 460 if (obj->IsFixedArray() || obj->IsCode()) { |
| 461 Page::FromAddress(obj->address())->SetFlag(Page::RESCAN_ON_EVACUATION); |
| 462 } |
| 463 } |
| 464 } |
| 465 |
456 // Mark strong roots grey. | 466 // Mark strong roots grey. |
457 IncrementalMarkingRootMarkingVisitor visitor(heap_, this); | 467 IncrementalMarkingRootMarkingVisitor visitor(heap_, this); |
458 heap_->IterateStrongRoots(&visitor, VISIT_ONLY_STRONG); | 468 heap_->IterateStrongRoots(&visitor, VISIT_ONLY_STRONG); |
459 | 469 |
460 // Ready to start incremental marking. | 470 // Ready to start incremental marking. |
461 if (FLAG_trace_incremental_marking) { | 471 if (FLAG_trace_incremental_marking) { |
462 PrintF("[IncrementalMarking] Running\n"); | 472 PrintF("[IncrementalMarking] Running\n"); |
463 } | 473 } |
464 } | 474 } |
465 | 475 |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
771 bytes_rescanned_ = 0; | 781 bytes_rescanned_ = 0; |
772 allocation_marking_factor_ = kInitialAllocationMarkingFactor; | 782 allocation_marking_factor_ = kInitialAllocationMarkingFactor; |
773 } | 783 } |
774 | 784 |
775 | 785 |
776 int64_t IncrementalMarking::SpaceLeftInOldSpace() { | 786 int64_t IncrementalMarking::SpaceLeftInOldSpace() { |
777 return heap_->MaxOldGenerationSize() - heap_->PromotedSpaceSize(); | 787 return heap_->MaxOldGenerationSize() - heap_->PromotedSpaceSize(); |
778 } | 788 } |
779 | 789 |
780 } } // namespace v8::internal | 790 } } // namespace v8::internal |
OLD | NEW |