blob: ba46dccfb21f231d07033c4c71223ed01f37b6ca [file] [log] [blame]
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -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 "malloc_space.h"
18
Mathieu Chartierec050072014-01-07 16:00:07 -080019#include "gc/accounting/card_table-inl.h"
20#include "gc/accounting/space_bitmap-inl.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070021#include "gc/heap.h"
Mathieu Chartiera1602f22014-01-13 17:19:19 -080022#include "gc/space/space-inl.h"
23#include "gc/space/zygote_space.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070024#include "mirror/class-inl.h"
25#include "mirror/object-inl.h"
26#include "runtime.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070027#include "handle_scope-inl.h"
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070028#include "thread.h"
29#include "thread_list.h"
30#include "utils.h"
31
32namespace art {
33namespace gc {
34namespace space {
35
36size_t MallocSpace::bitmap_index_ = 0;
37
38MallocSpace::MallocSpace(const std::string& name, MemMap* mem_map,
Mathieu Chartiera1602f22014-01-13 17:19:19 -080039 byte* begin, byte* end, byte* limit, size_t growth_limit,
Mathieu Chartier31f44142014-04-08 14:40:03 -070040 bool create_bitmaps, bool can_move_objects, size_t starting_size,
41 size_t initial_size)
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070042 : ContinuousMemMapAllocSpace(name, mem_map, begin, end, limit, kGcRetentionPolicyAlwaysCollect),
43 recent_free_pos_(0), lock_("allocation space lock", kAllocSpaceLock),
Mathieu Chartier31f44142014-04-08 14:40:03 -070044 growth_limit_(growth_limit), can_move_objects_(can_move_objects),
45 starting_size_(starting_size), initial_size_(initial_size) {
Mathieu Chartiera1602f22014-01-13 17:19:19 -080046 if (create_bitmaps) {
47 size_t bitmap_index = bitmap_index_++;
48 static const uintptr_t kGcCardSize = static_cast<uintptr_t>(accounting::CardTable::kCardSize);
49 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->Begin())));
50 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->End())));
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070051 live_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
Mathieu Chartiera1602f22014-01-13 17:19:19 -080052 StringPrintf("allocspace %s live-bitmap %d", name.c_str(), static_cast<int>(bitmap_index)),
53 Begin(), Capacity()));
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070054 DCHECK(live_bitmap_.get() != nullptr) << "could not create allocspace live bitmap #"
Mathieu Chartiera1602f22014-01-13 17:19:19 -080055 << bitmap_index;
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070056 mark_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
Mathieu Chartiera1602f22014-01-13 17:19:19 -080057 StringPrintf("allocspace %s mark-bitmap %d", name.c_str(), static_cast<int>(bitmap_index)),
58 Begin(), Capacity()));
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -070059 DCHECK(live_bitmap_.get() != nullptr) << "could not create allocspace mark bitmap #"
Mathieu Chartiera1602f22014-01-13 17:19:19 -080060 << bitmap_index;
61 }
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070062 for (auto& freed : recent_freed_objects_) {
63 freed.first = nullptr;
64 freed.second = nullptr;
65 }
66}
67
68MemMap* MallocSpace::CreateMemMap(const std::string& name, size_t starting_size, size_t* initial_size,
69 size_t* growth_limit, size_t* capacity, byte* requested_begin) {
70 // Sanity check arguments
71 if (starting_size > *initial_size) {
72 *initial_size = starting_size;
73 }
74 if (*initial_size > *growth_limit) {
75 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the initial size ("
76 << PrettySize(*initial_size) << ") is larger than its capacity ("
77 << PrettySize(*growth_limit) << ")";
78 return NULL;
79 }
80 if (*growth_limit > *capacity) {
81 LOG(ERROR) << "Failed to create alloc space (" << name << ") where the growth limit capacity ("
82 << PrettySize(*growth_limit) << ") is larger than the capacity ("
83 << PrettySize(*capacity) << ")";
84 return NULL;
85 }
86
87 // Page align growth limit and capacity which will be used to manage mmapped storage
88 *growth_limit = RoundUp(*growth_limit, kPageSize);
89 *capacity = RoundUp(*capacity, kPageSize);
90
91 std::string error_msg;
92 MemMap* mem_map = MemMap::MapAnonymous(name.c_str(), requested_begin, *capacity,
Ian Rogersef7d42f2014-01-06 12:55:46 -080093 PROT_READ | PROT_WRITE, true, &error_msg);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080094 if (mem_map == nullptr) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070095 LOG(ERROR) << "Failed to allocate pages for alloc space (" << name << ") of size "
96 << PrettySize(*capacity) << ": " << error_msg;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -070097 }
98 return mem_map;
99}
100
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700101mirror::Class* MallocSpace::FindRecentFreedObject(const mirror::Object* obj) {
102 size_t pos = recent_free_pos_;
103 // Start at the most recently freed object and work our way back since there may be duplicates
104 // caused by dlmalloc reusing memory.
105 if (kRecentFreeCount > 0) {
106 for (size_t i = 0; i + 1 < kRecentFreeCount + 1; ++i) {
107 pos = pos != 0 ? pos - 1 : kRecentFreeMask;
108 if (recent_freed_objects_[pos].first == obj) {
109 return recent_freed_objects_[pos].second;
110 }
111 }
112 }
113 return nullptr;
114}
115
116void MallocSpace::RegisterRecentFree(mirror::Object* ptr) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800117 // No verification since the object is dead.
118 recent_freed_objects_[recent_free_pos_] = std::make_pair(ptr, ptr->GetClass<kVerifyNone>());
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700119 recent_free_pos_ = (recent_free_pos_ + 1) & kRecentFreeMask;
120}
121
122void MallocSpace::SetGrowthLimit(size_t growth_limit) {
123 growth_limit = RoundUp(growth_limit, kPageSize);
124 growth_limit_ = growth_limit;
125 if (Size() > growth_limit_) {
126 end_ = begin_ + growth_limit;
127 }
128}
129
130void* MallocSpace::MoreCore(intptr_t increment) {
131 CheckMoreCoreForPrecondition();
132 byte* original_end = end_;
133 if (increment != 0) {
134 VLOG(heap) << "MallocSpace::MoreCore " << PrettySize(increment);
135 byte* new_end = original_end + increment;
136 if (increment > 0) {
137 // Should never be asked to increase the allocation beyond the capacity of the space. Enforced
138 // by mspace_set_footprint_limit.
139 CHECK_LE(new_end, Begin() + Capacity());
140 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName());
141 } else {
142 // Should never be asked for negative footprint (ie before begin). Zero footprint is ok.
143 CHECK_GE(original_end + increment, Begin());
144 // Advise we don't need the pages and protect them
145 // TODO: by removing permissions to the pages we may be causing TLB shoot-down which can be
146 // expensive (note the same isn't true for giving permissions to a page as the protected
147 // page shouldn't be in a TLB). We should investigate performance impact of just
148 // removing ignoring the memory protection change here and in Space::CreateAllocSpace. It's
149 // likely just a useful debug feature.
150 size_t size = -increment;
151 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetName());
152 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetName());
153 }
154 // Update end_
155 end_ = new_end;
156 }
157 return original_end;
158}
159
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800160ZygoteSpace* MallocSpace::CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode,
161 MallocSpace** out_malloc_space) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700162 // For RosAlloc, revoke thread local runs before creating a new
163 // alloc space so that we won't mix thread local runs from different
164 // alloc spaces.
165 RevokeAllThreadLocalBuffers();
166 end_ = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(end_), kPageSize));
167 DCHECK(IsAligned<accounting::CardTable::kCardSize>(begin_));
168 DCHECK(IsAligned<accounting::CardTable::kCardSize>(end_));
169 DCHECK(IsAligned<kPageSize>(begin_));
170 DCHECK(IsAligned<kPageSize>(end_));
171 size_t size = RoundUp(Size(), kPageSize);
Mathieu Chartier85a43c02014-01-07 17:59:00 -0800172 // Trimming the heap should be done by the caller since we may have invalidated the accounting
173 // stored in between objects.
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700174 // Remaining size is for the new alloc space.
175 const size_t growth_limit = growth_limit_ - size;
176 const size_t capacity = Capacity() - size;
177 VLOG(heap) << "Begin " << reinterpret_cast<const void*>(begin_) << "\n"
178 << "End " << reinterpret_cast<const void*>(end_) << "\n"
179 << "Size " << size << "\n"
180 << "GrowthLimit " << growth_limit_ << "\n"
181 << "Capacity " << Capacity();
182 SetGrowthLimit(RoundUp(size, kPageSize));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700183 // FIXME: Do we need reference counted pointers here?
184 // Make the two spaces share the same mark bitmaps since the bitmaps span both of the spaces.
185 VLOG(heap) << "Creating new AllocSpace: ";
186 VLOG(heap) << "Size " << GetMemMap()->Size();
187 VLOG(heap) << "GrowthLimit " << PrettySize(growth_limit);
188 VLOG(heap) << "Capacity " << PrettySize(capacity);
189 // Remap the tail.
190 std::string error_msg;
191 UniquePtr<MemMap> mem_map(GetMemMap()->RemapAtEnd(end_, alloc_space_name,
192 PROT_READ | PROT_WRITE, &error_msg));
193 CHECK(mem_map.get() != nullptr) << error_msg;
Mathieu Chartierc4d095b2014-04-15 12:01:58 -0700194 void* allocator = CreateAllocator(end_, starting_size_, initial_size_, capacity, low_memory_mode);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700195 // Protect memory beyond the initial size.
Mathieu Chartierc4d095b2014-04-15 12:01:58 -0700196 byte* end = mem_map->Begin() + starting_size_;
197 if (capacity > initial_size_) {
198 CHECK_MEMORY_CALL(mprotect, (end, capacity - initial_size_, PROT_NONE), alloc_space_name);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700199 }
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800200 *out_malloc_space = CreateInstance(alloc_space_name, mem_map.release(), allocator, end_, end,
Mathieu Chartier31f44142014-04-08 14:40:03 -0700201 limit_, growth_limit, CanMoveObjects());
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700202 SetLimit(End());
203 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
204 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
205 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
206 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800207
208 // Create the actual zygote space.
209 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(),
210 live_bitmap_.release(), mark_bitmap_.release());
211 if (UNLIKELY(zygote_space == nullptr)) {
212 VLOG(heap) << "Failed creating zygote space from space " << GetName();
213 } else {
214 VLOG(heap) << "zygote space creation done";
215 }
216 return zygote_space;
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700217}
218
219void MallocSpace::Dump(std::ostream& os) const {
220 os << GetType()
221 << " begin=" << reinterpret_cast<void*>(Begin())
222 << ",end=" << reinterpret_cast<void*>(End())
223 << ",size=" << PrettySize(Size()) << ",capacity=" << PrettySize(Capacity())
224 << ",name=\"" << GetName() << "\"]";
225}
226
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800227void MallocSpace::SweepCallback(size_t num_ptrs, mirror::Object** ptrs, void* arg) {
Mathieu Chartierec050072014-01-07 16:00:07 -0800228 SweepCallbackContext* context = static_cast<SweepCallbackContext*>(arg);
Mathieu Chartiera1602f22014-01-13 17:19:19 -0800229 space::MallocSpace* space = context->space->AsMallocSpace();
Mathieu Chartierec050072014-01-07 16:00:07 -0800230 Thread* self = context->self;
231 Locks::heap_bitmap_lock_->AssertExclusiveHeld(self);
232 // If the bitmaps aren't swapped we need to clear the bits since the GC isn't going to re-swap
233 // the bitmaps as an optimization.
234 if (!context->swap_bitmaps) {
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700235 accounting::ContinuousSpaceBitmap* bitmap = space->GetLiveBitmap();
Mathieu Chartierec050072014-01-07 16:00:07 -0800236 for (size_t i = 0; i < num_ptrs; ++i) {
237 bitmap->Clear(ptrs[i]);
238 }
239 }
240 // Use a bulk free, that merges consecutive objects before freeing or free per object?
241 // Documentation suggests better free performance with merging, but this may be at the expensive
242 // of allocation.
243 context->freed_objects += num_ptrs;
244 context->freed_bytes += space->FreeList(self, num_ptrs, ptrs);
245}
246
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -0700247} // namespace space
248} // namespace gc
249} // namespace art