OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 void ScavengePointer(Object** p) { | 531 void ScavengePointer(Object** p) { |
532 Object* object = *p; | 532 Object* object = *p; |
533 if (!Heap::InNewSpace(object)) return; | 533 if (!Heap::InNewSpace(object)) return; |
534 Heap::ScavengeObject(reinterpret_cast<HeapObject**>(p), | 534 Heap::ScavengeObject(reinterpret_cast<HeapObject**>(p), |
535 reinterpret_cast<HeapObject*>(object)); | 535 reinterpret_cast<HeapObject*>(object)); |
536 } | 536 } |
537 }; | 537 }; |
538 | 538 |
539 | 539 |
540 // Shared state read by the scavenge collector and set by ScavengeObject. | 540 // Shared state read by the scavenge collector and set by ScavengeObject. |
541 static Address promoted_top = NULL; | 541 static Address promoted_rear = NULL; |
542 | 542 |
543 | 543 |
544 #ifdef DEBUG | 544 #ifdef DEBUG |
545 // Visitor class to verify pointers in code or data space do not point into | 545 // Visitor class to verify pointers in code or data space do not point into |
546 // new space. | 546 // new space. |
547 class VerifyNonPointerSpacePointersVisitor: public ObjectVisitor { | 547 class VerifyNonPointerSpacePointersVisitor: public ObjectVisitor { |
548 public: | 548 public: |
549 void VisitPointers(Object** start, Object**end) { | 549 void VisitPointers(Object** start, Object**end) { |
550 for (Object** current = start; current < end; current++) { | 550 for (Object** current = start; current < end; current++) { |
551 if ((*current)->IsHeapObject()) { | 551 if ((*current)->IsHeapObject()) { |
552 ASSERT(!Heap::InNewSpace(HeapObject::cast(*current))); | 552 ASSERT(!Heap::InNewSpace(HeapObject::cast(*current))); |
553 } | 553 } |
554 } | 554 } |
555 } | 555 } |
556 }; | 556 }; |
| 557 |
| 558 |
| 559 static void VerifyNonPointerSpacePointers() { |
| 560 // Verify that there are no pointers to new space in spaces where we |
| 561 // do not expect them. |
| 562 VerifyNonPointerSpacePointersVisitor v; |
| 563 HeapObjectIterator code_it(Heap::code_space()); |
| 564 while (code_it.has_next()) { |
| 565 HeapObject* object = code_it.next(); |
| 566 if (object->IsCode()) { |
| 567 Code::cast(object)->ConvertICTargetsFromAddressToObject(); |
| 568 object->Iterate(&v); |
| 569 Code::cast(object)->ConvertICTargetsFromObjectToAddress(); |
| 570 } else { |
| 571 // If we find non-code objects in code space (e.g., free list |
| 572 // nodes) we want to verify them as well. |
| 573 object->Iterate(&v); |
| 574 } |
| 575 } |
| 576 |
| 577 HeapObjectIterator data_it(Heap::old_data_space()); |
| 578 while (data_it.has_next()) data_it.next()->Iterate(&v); |
| 579 } |
557 #endif | 580 #endif |
558 | 581 |
559 void Heap::Scavenge() { | 582 void Heap::Scavenge() { |
560 #ifdef DEBUG | 583 #ifdef DEBUG |
561 if (FLAG_enable_slow_asserts) { | 584 if (FLAG_enable_slow_asserts) VerifyNonPointerSpacePointers(); |
562 VerifyNonPointerSpacePointersVisitor v; | |
563 HeapObjectIterator it(code_space_); | |
564 while (it.has_next()) { | |
565 HeapObject* object = it.next(); | |
566 if (object->IsCode()) { | |
567 Code::cast(object)->ConvertICTargetsFromAddressToObject(); | |
568 } | |
569 object->Iterate(&v); | |
570 if (object->IsCode()) { | |
571 Code::cast(object)->ConvertICTargetsFromObjectToAddress(); | |
572 } | |
573 } | |
574 } | |
575 #endif | 585 #endif |
576 | 586 |
577 gc_state_ = SCAVENGE; | 587 gc_state_ = SCAVENGE; |
578 | 588 |
579 // Implements Cheney's copying algorithm | 589 // Implements Cheney's copying algorithm |
580 LOG(ResourceEvent("scavenge", "begin")); | 590 LOG(ResourceEvent("scavenge", "begin")); |
581 | 591 |
582 scavenge_count_++; | 592 scavenge_count_++; |
583 if (new_space_.Capacity() < new_space_.MaximumCapacity() && | 593 if (new_space_.Capacity() < new_space_.MaximumCapacity() && |
584 scavenge_count_ > new_space_growth_limit_) { | 594 scavenge_count_ > new_space_growth_limit_) { |
585 // Double the size of the new space, and double the limit. The next | 595 // Double the size of the new space, and double the limit. The next |
586 // doubling attempt will occur after the current new_space_growth_limit_ | 596 // doubling attempt will occur after the current new_space_growth_limit_ |
587 // more collections. | 597 // more collections. |
588 // TODO(1240712): NewSpace::Double has a return value which is | 598 // TODO(1240712): NewSpace::Double has a return value which is |
589 // ignored here. | 599 // ignored here. |
590 new_space_.Double(); | 600 new_space_.Double(); |
591 new_space_growth_limit_ *= 2; | 601 new_space_growth_limit_ *= 2; |
592 } | 602 } |
593 | 603 |
594 // Flip the semispaces. After flipping, to space is empty, from space has | 604 // Flip the semispaces. After flipping, to space is empty, from space has |
595 // live objects. | 605 // live objects. |
596 new_space_.Flip(); | 606 new_space_.Flip(); |
597 new_space_.ResetAllocationInfo(); | 607 new_space_.ResetAllocationInfo(); |
598 | 608 |
599 // We need to sweep newly copied objects which can be in either the to space | 609 // We need to sweep newly copied objects which can be either in the |
600 // or the old space. For to space objects, we use a mark. Newly copied | 610 // to space or promoted to the old generation. For to-space |
601 // objects lie between the mark and the allocation top. For objects | 611 // objects, we treat the bottom of the to space as a queue. Newly |
602 // promoted to old space, we write their addresses downward from the top of | 612 // copied and unswept objects lie between a 'front' mark and the |
603 // the new space. Sweeping newly promoted objects requires an allocation | 613 // allocation pointer. |
604 // pointer and a mark. Note that the allocation pointer 'top' actually | |
605 // moves downward from the high address in the to space. | |
606 // | 614 // |
607 // There is guaranteed to be enough room at the top of the to space for the | 615 // Promoted objects can go into various old-generation spaces, and |
608 // addresses of promoted objects: every object promoted frees up its size in | 616 // can be allocated internally in the spaces (from the free list). |
609 // bytes from the top of the new space, and objects are at least one pointer | 617 // We treat the top of the to space as a queue of addresses of |
610 // in size. Using the new space to record promoted addresses makes the | 618 // promoted objects. The addresses of newly promoted and unswept |
611 // scavenge collector agnostic to the allocation strategy (eg, linear or | 619 // objects lie between a 'front' mark and a 'rear' mark that is |
612 // free-list) used in old space. | 620 // updated as a side effect of promoting an object. |
613 Address new_mark = new_space_.ToSpaceLow(); | 621 // |
614 Address promoted_mark = new_space_.ToSpaceHigh(); | 622 // There is guaranteed to be enough room at the top of the to space |
615 promoted_top = new_space_.ToSpaceHigh(); | 623 // for the addresses of promoted objects: every object promoted |
| 624 // frees up its size in bytes from the top of the new space, and |
| 625 // objects are at least one pointer in size. |
| 626 Address new_space_front = new_space_.ToSpaceLow(); |
| 627 Address promoted_front = new_space_.ToSpaceHigh(); |
| 628 promoted_rear = new_space_.ToSpaceHigh(); |
616 | 629 |
617 ScavengeVisitor scavenge_visitor; | 630 ScavengeVisitor scavenge_visitor; |
618 // Copy roots. | 631 // Copy roots. |
619 IterateRoots(&scavenge_visitor); | 632 IterateRoots(&scavenge_visitor); |
620 | 633 |
621 // Copy objects reachable from the old generation. By definition, there | 634 // Copy objects reachable from weak pointers. |
622 // are no intergenerational pointers in code or data spaces. | 635 GlobalHandles::IterateWeakRoots(&scavenge_visitor); |
| 636 |
| 637 // Copy objects reachable from the old generation. By definition, |
| 638 // there are no intergenerational pointers in code or data spaces. |
623 IterateRSet(old_pointer_space_, &ScavengePointer); | 639 IterateRSet(old_pointer_space_, &ScavengePointer); |
624 IterateRSet(map_space_, &ScavengePointer); | 640 IterateRSet(map_space_, &ScavengePointer); |
625 lo_space_->IterateRSet(&ScavengePointer); | 641 lo_space_->IterateRSet(&ScavengePointer); |
626 | 642 |
627 bool has_processed_weak_pointers = false; | 643 do { |
| 644 ASSERT(new_space_front <= new_space_.top()); |
| 645 ASSERT(promoted_front >= promoted_rear); |
628 | 646 |
629 while (true) { | 647 // The addresses new_space_front and new_space_.top() define a |
630 ASSERT(new_mark <= new_space_.top()); | 648 // queue of unprocessed copied objects. Process them until the |
631 ASSERT(promoted_mark >= promoted_top); | 649 // queue is empty. |
632 | 650 while (new_space_front < new_space_.top()) { |
633 // Copy objects reachable from newly copied objects. | 651 HeapObject* object = HeapObject::FromAddress(new_space_front); |
634 while (new_mark < new_space_.top() || promoted_mark > promoted_top) { | 652 object->Iterate(&scavenge_visitor); |
635 // Sweep newly copied objects in the to space. The allocation pointer | 653 new_space_front += object->Size(); |
636 // can change during sweeping. | |
637 Address previous_top = new_space_.top(); | |
638 SemiSpaceIterator new_it(new_space(), new_mark); | |
639 while (new_it.has_next()) { | |
640 new_it.next()->Iterate(&scavenge_visitor); | |
641 } | |
642 new_mark = previous_top; | |
643 | |
644 // Sweep newly copied objects in the old space. The promotion 'top' | |
645 // pointer could change during sweeping. | |
646 previous_top = promoted_top; | |
647 for (Address current = promoted_mark - kPointerSize; | |
648 current >= previous_top; | |
649 current -= kPointerSize) { | |
650 HeapObject* object = HeapObject::cast(Memory::Object_at(current)); | |
651 object->Iterate(&scavenge_visitor); | |
652 UpdateRSet(object); | |
653 } | |
654 promoted_mark = previous_top; | |
655 } | 654 } |
656 | 655 |
657 if (has_processed_weak_pointers) break; // We are done. | 656 // The addresses promoted_front and promoted_rear define a queue |
658 // Copy objects reachable from weak pointers. | 657 // of unprocessed addresses of promoted objects. Process them |
659 GlobalHandles::IterateWeakRoots(&scavenge_visitor); | 658 // until the queue is empty. |
660 has_processed_weak_pointers = true; | 659 while (promoted_front > promoted_rear) { |
661 } | 660 promoted_front -= kPointerSize; |
| 661 HeapObject* object = |
| 662 HeapObject::cast(Memory::Object_at(promoted_front)); |
| 663 object->Iterate(&scavenge_visitor); |
| 664 UpdateRSet(object); |
| 665 } |
| 666 |
| 667 // Take another spin if there are now unswept objects in new space |
| 668 // (there are currently no more unswept promoted objects). |
| 669 } while (new_space_front < new_space_.top()); |
662 | 670 |
663 // Set age mark. | 671 // Set age mark. |
664 new_space_.set_age_mark(new_mark); | 672 new_space_.set_age_mark(new_space_.top()); |
665 | 673 |
666 LOG(ResourceEvent("scavenge", "end")); | 674 LOG(ResourceEvent("scavenge", "end")); |
667 | 675 |
668 gc_state_ = NOT_IN_GC; | 676 gc_state_ = NOT_IN_GC; |
669 } | 677 } |
670 | 678 |
671 | 679 |
672 void Heap::ClearRSetRange(Address start, int size_in_bytes) { | 680 void Heap::ClearRSetRange(Address start, int size_in_bytes) { |
673 uint32_t start_bit; | 681 uint32_t start_bit; |
674 Address start_word_address = | 682 Address start_word_address = |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 if (ShouldBePromoted(object->address(), object_size)) { | 883 if (ShouldBePromoted(object->address(), object_size)) { |
876 OldSpace* target_space = Heap::TargetSpace(object); | 884 OldSpace* target_space = Heap::TargetSpace(object); |
877 ASSERT(target_space == Heap::old_pointer_space_ || | 885 ASSERT(target_space == Heap::old_pointer_space_ || |
878 target_space == Heap::old_data_space_); | 886 target_space == Heap::old_data_space_); |
879 Object* result = target_space->AllocateRaw(object_size); | 887 Object* result = target_space->AllocateRaw(object_size); |
880 if (!result->IsFailure()) { | 888 if (!result->IsFailure()) { |
881 *p = MigrateObject(object, HeapObject::cast(result), object_size); | 889 *p = MigrateObject(object, HeapObject::cast(result), object_size); |
882 if (target_space == Heap::old_pointer_space_) { | 890 if (target_space == Heap::old_pointer_space_) { |
883 // Record the object's address at the top of the to space, to allow | 891 // Record the object's address at the top of the to space, to allow |
884 // it to be swept by the scavenger. | 892 // it to be swept by the scavenger. |
885 promoted_top -= kPointerSize; | 893 promoted_rear -= kPointerSize; |
886 Memory::Object_at(promoted_top) = *p; | 894 Memory::Object_at(promoted_rear) = *p; |
887 } else { | 895 } else { |
888 #ifdef DEBUG | 896 #ifdef DEBUG |
889 // Objects promoted to the data space should not have pointers to | 897 // Objects promoted to the data space should not have pointers to |
890 // new space. | 898 // new space. |
891 VerifyNonPointerSpacePointersVisitor v; | 899 VerifyNonPointerSpacePointersVisitor v; |
892 (*p)->Iterate(&v); | 900 (*p)->Iterate(&v); |
893 #endif | 901 #endif |
894 } | 902 } |
895 return; | 903 return; |
896 } | 904 } |
(...skipping 2490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3387 #ifdef DEBUG | 3395 #ifdef DEBUG |
3388 bool Heap::GarbageCollectionGreedyCheck() { | 3396 bool Heap::GarbageCollectionGreedyCheck() { |
3389 ASSERT(FLAG_gc_greedy); | 3397 ASSERT(FLAG_gc_greedy); |
3390 if (Bootstrapper::IsActive()) return true; | 3398 if (Bootstrapper::IsActive()) return true; |
3391 if (disallow_allocation_failure()) return true; | 3399 if (disallow_allocation_failure()) return true; |
3392 return CollectGarbage(0, NEW_SPACE); | 3400 return CollectGarbage(0, NEW_SPACE); |
3393 } | 3401 } |
3394 #endif | 3402 #endif |
3395 | 3403 |
3396 } } // namespace v8::internal | 3404 } } // namespace v8::internal |
OLD | NEW |