blob: fcd3b700859390fb240c61e138818cd394f8bc8c [file] [log] [blame]
Mathieu Chartier590fee92013-09-13 13:46:47 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "bump_pointer_space.h"
18#include "bump_pointer_space-inl.h"
19#include "mirror/object-inl.h"
20#include "mirror/class-inl.h"
Mathieu Chartier692fafd2013-11-29 17:24:40 -080021#include "thread_list.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070022
23namespace art {
24namespace gc {
25namespace space {
26
27BumpPointerSpace* BumpPointerSpace::Create(const std::string& name, size_t capacity,
28 byte* requested_begin) {
29 capacity = RoundUp(capacity, kPageSize);
30 std::string error_msg;
31 UniquePtr<MemMap> mem_map(MemMap::MapAnonymous(name.c_str(), requested_begin, capacity,
Ian Rogersef7d42f2014-01-06 12:55:46 -080032 PROT_READ | PROT_WRITE, true, &error_msg));
Mathieu Chartier590fee92013-09-13 13:46:47 -070033 if (mem_map.get() == nullptr) {
34 LOG(ERROR) << "Failed to allocate pages for alloc space (" << name << ") of size "
35 << PrettySize(capacity) << " with message " << error_msg;
36 return nullptr;
37 }
38 return new BumpPointerSpace(name, mem_map.release());
39}
40
41BumpPointerSpace::BumpPointerSpace(const std::string& name, byte* begin, byte* limit)
42 : ContinuousMemMapAllocSpace(name, nullptr, begin, begin, limit,
43 kGcRetentionPolicyAlwaysCollect),
Mathieu Chartier692fafd2013-11-29 17:24:40 -080044 growth_end_(limit),
45 objects_allocated_(0), bytes_allocated_(0),
46 block_lock_("Block lock"),
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -080047 main_block_size_(0),
Mathieu Chartier692fafd2013-11-29 17:24:40 -080048 num_blocks_(0) {
Mathieu Chartier590fee92013-09-13 13:46:47 -070049}
50
51BumpPointerSpace::BumpPointerSpace(const std::string& name, MemMap* mem_map)
52 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->Begin(), mem_map->End(),
53 kGcRetentionPolicyAlwaysCollect),
Mathieu Chartier692fafd2013-11-29 17:24:40 -080054 growth_end_(mem_map->End()),
55 objects_allocated_(0), bytes_allocated_(0),
56 block_lock_("Block lock"),
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -080057 main_block_size_(0),
Mathieu Chartier692fafd2013-11-29 17:24:40 -080058 num_blocks_(0) {
Mathieu Chartier590fee92013-09-13 13:46:47 -070059}
60
Mathieu Chartier590fee92013-09-13 13:46:47 -070061void BumpPointerSpace::Clear() {
62 // Release the pages back to the operating system.
63 CHECK_NE(madvise(Begin(), Limit() - Begin(), MADV_DONTNEED), -1) << "madvise failed";
Mathieu Chartier15d34022014-02-26 17:16:38 -080064}
65
66void BumpPointerSpace::Reset() {
Mathieu Chartier590fee92013-09-13 13:46:47 -070067 // Reset the end of the space back to the beginning, we move the end forward as we allocate
68 // objects.
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -080069 SetEnd(Begin());
Mathieu Chartier692fafd2013-11-29 17:24:40 -080070 objects_allocated_ = 0;
71 bytes_allocated_ = 0;
Mathieu Chartier590fee92013-09-13 13:46:47 -070072 growth_end_ = Limit();
Mathieu Chartier692fafd2013-11-29 17:24:40 -080073 {
74 MutexLock mu(Thread::Current(), block_lock_);
75 num_blocks_ = 0;
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -080076 main_block_size_ = 0;
Mathieu Chartier692fafd2013-11-29 17:24:40 -080077 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070078}
79
80void BumpPointerSpace::Dump(std::ostream& os) const {
Mathieu Chartier15d34022014-02-26 17:16:38 -080081 os << GetName() << " "
82 << reinterpret_cast<void*>(Begin()) << "-" << reinterpret_cast<void*>(End()) << " - "
83 << reinterpret_cast<void*>(Limit());
Mathieu Chartier590fee92013-09-13 13:46:47 -070084}
85
86mirror::Object* BumpPointerSpace::GetNextObject(mirror::Object* obj) {
87 const uintptr_t position = reinterpret_cast<uintptr_t>(obj) + obj->SizeOf();
88 return reinterpret_cast<mirror::Object*>(RoundUp(position, kAlignment));
89}
90
Mathieu Chartier692fafd2013-11-29 17:24:40 -080091void BumpPointerSpace::RevokeThreadLocalBuffers(Thread* thread) {
92 MutexLock mu(Thread::Current(), block_lock_);
93 RevokeThreadLocalBuffersLocked(thread);
94}
95
96void BumpPointerSpace::RevokeAllThreadLocalBuffers() {
97 Thread* self = Thread::Current();
98 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
99 MutexLock mu2(self, *Locks::thread_list_lock_);
100 // TODO: Not do a copy of the thread list?
101 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
102 for (Thread* thread : thread_list) {
103 RevokeThreadLocalBuffers(thread);
104 }
105}
106
107void BumpPointerSpace::UpdateMainBlock() {
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800108 DCHECK_EQ(num_blocks_, 0U);
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -0800109 main_block_size_ = Size();
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800110}
111
112// Returns the start of the storage.
113byte* BumpPointerSpace::AllocBlock(size_t bytes) {
114 bytes = RoundUp(bytes, kAlignment);
115 if (!num_blocks_) {
116 UpdateMainBlock();
117 }
118 byte* storage = reinterpret_cast<byte*>(
119 AllocNonvirtualWithoutAccounting(bytes + sizeof(BlockHeader)));
120 if (LIKELY(storage != nullptr)) {
121 BlockHeader* header = reinterpret_cast<BlockHeader*>(storage);
122 header->size_ = bytes; // Write out the block header.
123 storage += sizeof(BlockHeader);
124 ++num_blocks_;
125 }
126 return storage;
127}
128
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800129void BumpPointerSpace::Walk(ObjectCallback* callback, void* arg) {
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800130 byte* pos = Begin();
Mathieu Chartier8544b462014-02-12 17:47:42 -0800131 byte* end = End();
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -0800132 byte* main_end = pos;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800133 {
134 MutexLock mu(Thread::Current(), block_lock_);
135 // If we have 0 blocks then we need to update the main header since we have bump pointer style
136 // allocation into an unbounded region (actually bounded by Capacity()).
137 if (num_blocks_ == 0) {
138 UpdateMainBlock();
139 }
Mathieu Chartier8544b462014-02-12 17:47:42 -0800140 main_end = Begin() + main_block_size_;
141 if (num_blocks_ == 0) {
142 // We don't have any other blocks, this means someone else may be allocating into the main
143 // block. In this case, we don't want to try and visit the other blocks after the main block
144 // since these could actually be part of the main block.
145 end = main_end;
146 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800147 }
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -0800148 // Walk all of the objects in the main block first.
149 while (pos < main_end) {
150 mirror::Object* obj = reinterpret_cast<mirror::Object*>(pos);
Mathieu Chartier8544b462014-02-12 17:47:42 -0800151 if (obj->GetClass() == nullptr) {
152 // There is a race condition where a thread has just allocated an object but not set the
153 // class. We can't know the size of this object, so we don't visit it and exit the function
154 // since there is guaranteed to be not other blocks.
155 return;
156 } else {
157 callback(obj, arg);
158 pos = reinterpret_cast<byte*>(GetNextObject(obj));
159 }
Mathieu Chartierfc4c27e2014-02-11 11:05:41 -0800160 }
161 // Walk the other blocks (currently only TLABs).
Mathieu Chartier8544b462014-02-12 17:47:42 -0800162 while (pos < end) {
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800163 BlockHeader* header = reinterpret_cast<BlockHeader*>(pos);
164 size_t block_size = header->size_;
165 pos += sizeof(BlockHeader); // Skip the header so that we know where the objects
166 mirror::Object* obj = reinterpret_cast<mirror::Object*>(pos);
167 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(pos + block_size);
168 CHECK_LE(reinterpret_cast<const byte*>(end), End());
169 // We don't know how many objects are allocated in the current block. When we hit a null class
170 // assume its the end. TODO: Have a thread update the header when it flushes the block?
171 while (obj < end && obj->GetClass() != nullptr) {
172 callback(obj, arg);
173 obj = GetNextObject(obj);
174 }
175 pos += block_size;
176 }
177}
178
Ian Rogers6fac4472014-02-25 17:01:10 -0800179accounting::SpaceBitmap::SweepCallback* BumpPointerSpace::GetSweepCallback() {
180 LOG(FATAL) << "Unimplemented";
181 return nullptr;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800182}
183
184uint64_t BumpPointerSpace::GetBytesAllocated() {
185 // Start out pre-determined amount (blocks which are not being allocated into).
Ian Rogersb122a4b2013-11-19 18:00:50 -0800186 uint64_t total = static_cast<uint64_t>(bytes_allocated_.Load());
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800187 Thread* self = Thread::Current();
188 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
189 MutexLock mu2(self, *Locks::thread_list_lock_);
190 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
191 MutexLock mu3(Thread::Current(), block_lock_);
192 // If we don't have any blocks, we don't have any thread local buffers. This check is required
193 // since there can exist multiple bump pointer spaces which exist at the same time.
194 if (num_blocks_ > 0) {
195 for (Thread* thread : thread_list) {
196 total += thread->thread_local_pos_ - thread->thread_local_start_;
197 }
198 }
199 return total;
200}
201
202uint64_t BumpPointerSpace::GetObjectsAllocated() {
203 // Start out pre-determined amount (blocks which are not being allocated into).
Ian Rogersb122a4b2013-11-19 18:00:50 -0800204 uint64_t total = static_cast<uint64_t>(objects_allocated_.Load());
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800205 Thread* self = Thread::Current();
206 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
207 MutexLock mu2(self, *Locks::thread_list_lock_);
208 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
209 MutexLock mu3(Thread::Current(), block_lock_);
210 // If we don't have any blocks, we don't have any thread local buffers. This check is required
211 // since there can exist multiple bump pointer spaces which exist at the same time.
212 if (num_blocks_ > 0) {
213 for (Thread* thread : thread_list) {
214 total += thread->thread_local_objects_;
215 }
216 }
217 return total;
218}
219
220void BumpPointerSpace::RevokeThreadLocalBuffersLocked(Thread* thread) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800221 objects_allocated_.FetchAndAdd(thread->thread_local_objects_);
222 bytes_allocated_.FetchAndAdd(thread->thread_local_pos_ - thread->thread_local_start_);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800223 thread->SetTlab(nullptr, nullptr);
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800224}
225
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800226bool BumpPointerSpace::AllocNewTlab(Thread* self, size_t bytes) {
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800227 MutexLock mu(Thread::Current(), block_lock_);
228 RevokeThreadLocalBuffersLocked(self);
229 byte* start = AllocBlock(bytes);
230 if (start == nullptr) {
231 return false;
232 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800233 self->SetTlab(start, start + bytes);
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800234 return true;
235}
236
Mathieu Chartier590fee92013-09-13 13:46:47 -0700237} // namespace space
238} // namespace gc
239} // namespace art