diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc index 72fcf12515..8b9a9c38ac 100644 --- a/src/heap/mark-compact.cc +++ b/src/heap/mark-compact.cc @@ -3622,8 +3622,7 @@ void MarkCompactCollector::EvacuateNewSpaceAndCandidates() { GCTracer::Scope gc_scope(heap()->tracer(), GCTracer::Scope::MC_UPDATE_NEW_TO_NEW_POINTERS); // Update pointers in to space. - SemiSpaceIterator to_it(heap()->new_space()->bottom(), - heap()->new_space()->top()); + SemiSpaceIterator to_it(heap()->new_space()); for (HeapObject* object = to_it.Next(); object != NULL; object = to_it.Next()) { Map* map = object->map(); diff --git a/src/heap/spaces.cc b/src/heap/spaces.cc index 9812abdf1e..ee7751a5a8 100644 --- a/src/heap/spaces.cc +++ b/src/heap/spaces.cc @@ -1846,21 +1846,12 @@ void SemiSpace::AssertValidRange(Address start, Address end) { // ----------------------------------------------------------------------------- // SemiSpaceIterator implementation. + SemiSpaceIterator::SemiSpaceIterator(NewSpace* space) { Initialize(space->bottom(), space->top()); } -SemiSpaceIterator::SemiSpaceIterator(NewSpace* space, Address start) { - Initialize(start, space->top()); -} - - -SemiSpaceIterator::SemiSpaceIterator(Address from, Address to) { - Initialize(from, to); -} - - void SemiSpaceIterator::Initialize(Address start, Address end) { SemiSpace::AssertValidRange(start, end); current_ = start; diff --git a/src/heap/spaces.h b/src/heap/spaces.h index f225bbc80f..11af00febd 100644 --- a/src/heap/spaces.h +++ b/src/heap/spaces.h @@ -2274,16 +2274,8 @@ class SemiSpace : public Space { // iterator is created are not iterated. class SemiSpaceIterator : public ObjectIterator { public: - // Create an iterator over the objects in the given space. If no start - // address is given, the iterator starts from the bottom of the space. - - // Iterate over all of allocated to-space. + // Create an iterator over the allocated objects in the given to-space. explicit SemiSpaceIterator(NewSpace* space); - // Iterate over part of allocated to-space, from start to the end - // of allocation. - SemiSpaceIterator(NewSpace* space, Address start); - // Iterate from one address to another in the same semi-space. - SemiSpaceIterator(Address from, Address to); HeapObject* Next() { if (current_ == limit_) return NULL;