blob: 4af65a9bf1294d647a131223408aec6e25427e0d [file] [log] [blame]
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "space.h"
#include "base/logging.h"
#include "gc/accounting/heap_bitmap.h"
#include "runtime.h"
#include "thread-inl.h"
namespace art {
namespace gc {
namespace space {
Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy)
: name_(name), gc_retention_policy_(gc_retention_policy) { }
void Space::Dump(std::ostream& os) const {
os << GetName() << ":" << GetGcRetentionPolicy();
}
std::ostream& operator<<(std::ostream& os, const Space& space) {
space.Dump(os);
return os;
}
DlMallocSpace* Space::AsDlMallocSpace() {
LOG(FATAL) << "Unreachable";
return nullptr;
}
RosAllocSpace* Space::AsRosAllocSpace() {
LOG(FATAL) << "Unreachable";
return nullptr;
}
ZygoteSpace* Space::AsZygoteSpace() {
LOG(FATAL) << "Unreachable";
return nullptr;
}
BumpPointerSpace* Space::AsBumpPointerSpace() {
LOG(FATAL) << "Unreachable";
return nullptr;
}
AllocSpace* Space::AsAllocSpace() {
LOG(FATAL) << "Unimplemented";
return nullptr;
}
ContinuousMemMapAllocSpace* Space::AsContinuousMemMapAllocSpace() {
LOG(FATAL) << "Unimplemented";
return nullptr;
}
DiscontinuousSpace::DiscontinuousSpace(const std::string& name,
GcRetentionPolicy gc_retention_policy) :
Space(name, gc_retention_policy),
live_objects_(new accounting::ObjectSet("large live objects")),
mark_objects_(new accounting::ObjectSet("large marked objects")) {
}
void ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps, size_t* freed_objects, size_t* freed_bytes) {
DCHECK(freed_objects != nullptr);
DCHECK(freed_bytes != nullptr);
accounting::SpaceBitmap* live_bitmap = GetLiveBitmap();
accounting::SpaceBitmap* mark_bitmap = GetMarkBitmap();
// If the bitmaps are bound then sweeping this space clearly won't do anything.
if (live_bitmap == mark_bitmap) {
return;
}
SweepCallbackContext scc;
scc.swap_bitmaps = swap_bitmaps;
scc.heap = Runtime::Current()->GetHeap();
scc.self = Thread::Current();
scc.space = this;
scc.freed_objects = 0;
scc.freed_bytes = 0;
if (swap_bitmaps) {
std::swap(live_bitmap, mark_bitmap);
}
// Bitmaps are pre-swapped for optimization which enables sweeping with the heap unlocked.
accounting::SpaceBitmap::SweepWalk(*live_bitmap, *mark_bitmap,
reinterpret_cast<uintptr_t>(Begin()),
reinterpret_cast<uintptr_t>(End()),
GetSweepCallback(),
reinterpret_cast<void*>(&scc));
*freed_objects += scc.freed_objects;
*freed_bytes += scc.freed_bytes;
}
// Returns the old mark bitmap.
void ContinuousMemMapAllocSpace::BindLiveToMarkBitmap() {
CHECK(!HasBoundBitmaps());
accounting::SpaceBitmap* live_bitmap = GetLiveBitmap();
if (live_bitmap != mark_bitmap_.get()) {
accounting::SpaceBitmap* mark_bitmap = mark_bitmap_.release();
Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap, live_bitmap);
temp_bitmap_.reset(mark_bitmap);
mark_bitmap_.reset(live_bitmap);
}
}
bool ContinuousMemMapAllocSpace::HasBoundBitmaps() const {
return temp_bitmap_.get() != nullptr;
}
void ContinuousMemMapAllocSpace::UnBindBitmaps() {
CHECK(HasBoundBitmaps());
// At this point, the temp_bitmap holds our old mark bitmap.
accounting::SpaceBitmap* new_bitmap = temp_bitmap_.release();
Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
mark_bitmap_.reset(new_bitmap);
DCHECK(temp_bitmap_.get() == nullptr);
}
void ContinuousMemMapAllocSpace::SwapBitmaps() {
live_bitmap_.swap(mark_bitmap_);
// Swap names to get more descriptive diagnostics.
std::string temp_name(live_bitmap_->GetName());
live_bitmap_->SetName(mark_bitmap_->GetName());
mark_bitmap_->SetName(temp_name);
}
} // namespace space
} // namespace gc
} // namespace art