blob: 4b4c5ee84b7c2e138b972b77abdb332013f33fdb [file] [log] [blame]
Carl Shapiro69759ea2011-07-21 18:13:35 -07001// Copyright (C) 2008 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070015#include "object_bitmap.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070016
17#include <sys/mman.h>
18
Elliott Hughes90a33692011-08-30 13:27:07 -070019#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070020#include "logging.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070021
22namespace art {
23
Carl Shapiro69759ea2011-07-21 18:13:35 -070024HeapBitmap* HeapBitmap::Create(byte* base, size_t length) {
Elliott Hughes90a33692011-08-30 13:27:07 -070025 UniquePtr<HeapBitmap> bitmap(new HeapBitmap(base, length));
Carl Shapiro69759ea2011-07-21 18:13:35 -070026 if (!bitmap->Init(base, length)) {
27 return NULL;
28 } else {
29 return bitmap.release();
30 }
31}
32
33// Initialize a HeapBitmap so that it points to a bitmap large enough
Brian Carlstrom1f870082011-08-23 16:02:11 -070034// to cover a heap at <base> of <max_size> bytes, where objects are
Carl Shapiro69759ea2011-07-21 18:13:35 -070035// guaranteed to be kAlignment-aligned.
36bool HeapBitmap::Init(const byte* base, size_t max_size) {
37 CHECK(base != NULL);
38 size_t length = HB_OFFSET_TO_INDEX(max_size) * kWordSize;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070039 mem_map_.reset(MemMap::Map(length, PROT_READ | PROT_WRITE));
Elliott Hughes90a33692011-08-30 13:27:07 -070040 if (mem_map_.get() == NULL) {
Carl Shapiro69759ea2011-07-21 18:13:35 -070041 return false;
42 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -070043 words_ = reinterpret_cast<word*>(mem_map_->GetAddress());
Carl Shapiro69759ea2011-07-21 18:13:35 -070044 num_bytes_ = length;
45 base_ = reinterpret_cast<uintptr_t>(base);
46 max_ = base_ - 1;
47 return true;
48}
49
50// Clean up any resources associated with the bitmap.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070051HeapBitmap::~HeapBitmap() {}
Carl Shapiro69759ea2011-07-21 18:13:35 -070052
53// Fill the bitmap with zeroes. Returns the bitmap's memory to the
54// system as a side-effect.
55void HeapBitmap::Clear() {
56 if (words_ != NULL) {
57 // This returns the memory to the system. Successive page faults
58 // will return zeroed memory.
59 int result = madvise(words_, num_bytes_, MADV_DONTNEED);
60 if (result == -1) {
61 PLOG(WARNING) << "madvise failed";
62 }
63 max_ = base_ - 1;
64 }
65}
66
67// Return true iff <obj> is within the range of pointers that this
68// bitmap could potentially cover, even if a bit has not been set for
69// it.
70bool HeapBitmap::HasAddress(const void* obj) const {
71 if (obj != NULL) {
72 const uintptr_t offset = (uintptr_t)obj - base_;
73 const size_t index = HB_OFFSET_TO_INDEX(offset);
74 return index < num_bytes_ / kWordSize;
75 }
76 return false;
77}
78
79// Visits set bits in address order. The callback is not permitted to
80// change the bitmap bits or max during the traversal.
81void HeapBitmap::Walk(HeapBitmap::Callback* callback, void* arg) {
82 CHECK(words_ != NULL);
83 CHECK(callback != NULL);
84 uintptr_t end = HB_OFFSET_TO_INDEX(max_ - base_);
85 for (uintptr_t i = 0; i <= end; ++i) {
86 unsigned long word = words_[i];
87 if (word != 0) {
88 unsigned long high_bit = 1 << (kBitsPerWord - 1);
89 uintptr_t ptr_base = HB_INDEX_TO_OFFSET(i) + base_;
90 while (word != 0) {
91 const int shift = CLZ(word);
Brian Carlstrom4873d462011-08-21 15:23:39 -070092 Object* obj = (Object*) (ptr_base + shift * kAlignment);
Carl Shapiro69759ea2011-07-21 18:13:35 -070093 (*callback)(obj, arg);
94 word &= ~(high_bit >> shift);
95 }
96 }
97 }
98}
99
100// Similar to Walk but the callback routine is permitted to change the
101// bitmap bits and max during traversal. Used by the the root marking
102// scan exclusively.
103//
104// The callback is invoked with a finger argument. The finger is a
105// pointer to an address not yet visited by the traversal. If the
106// callback sets a bit for an address at or above the finger, this
107// address will be visited by the traversal. If the callback sets a
108// bit for an address below the finger, this address will not be
109// visited.
Brian Carlstrom1f870082011-08-23 16:02:11 -0700110void HeapBitmap::ScanWalk(uintptr_t base, ScanCallback* callback, void* arg) {
Carl Shapiro69759ea2011-07-21 18:13:35 -0700111 CHECK(words_ != NULL);
112 CHECK(callback != NULL);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700113 CHECK(base >= base_);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700114 uintptr_t end = HB_OFFSET_TO_INDEX(max_ - base);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700115 for (uintptr_t i = 0; i <= end; ++i) {
116 unsigned long word = words_[i];
117 if (word != 0) {
118 unsigned long high_bit = 1 << (kBitsPerWord - 1);
119 uintptr_t ptr_base = HB_INDEX_TO_OFFSET(i) + base_;
120 void* finger = (void*)(HB_INDEX_TO_OFFSET(i + 1) + base_);
121 while (word != 0) {
122 const int shift = CLZ(word);
123 Object* obj = (Object*)(ptr_base + shift * kAlignment);
124 (*callback)(obj, finger, arg);
125 word &= ~(high_bit >> shift);
126 }
127 end = HB_OFFSET_TO_INDEX(max_ - base_);
128 }
129 }
130}
131
132// Walk through the bitmaps in increasing address order, and find the
133// object pointers that correspond to garbage objects. Call
134// <callback> zero or more times with lists of these object pointers.
135//
136// The callback is not permitted to increase the max of either bitmap.
137void HeapBitmap::SweepWalk(const HeapBitmap& live_bitmap,
138 const HeapBitmap& mark_bitmap,
139 uintptr_t base, uintptr_t max,
140 HeapBitmap::SweepCallback* callback, void* arg) {
141 CHECK(live_bitmap.words_ != NULL);
142 CHECK(mark_bitmap.words_ != NULL);
143 CHECK(live_bitmap.base_ == mark_bitmap.base_);
144 CHECK(live_bitmap.num_bytes_ == mark_bitmap.num_bytes_);
145 CHECK(callback != NULL);
146 CHECK(base <= max);
147 CHECK(base >= live_bitmap.base_);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700148 max = std::min(max-1, live_bitmap.max_);
Carl Shapiro69759ea2011-07-21 18:13:35 -0700149 if (live_bitmap.max_ < live_bitmap.base_) {
150 // Easy case; both are obviously empty.
151 // TODO: this should never happen
152 return;
153 }
154 void* pointer_buf[4 * kBitsPerWord];
155 void** pb = pointer_buf;
156 size_t start = HB_OFFSET_TO_INDEX(base - live_bitmap.base_);
157 size_t end = HB_OFFSET_TO_INDEX(max - live_bitmap.base_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700158 word* live = live_bitmap.words_;
159 word* mark = mark_bitmap.words_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700160 for (size_t i = start; i <= end; i++) {
161 unsigned long garbage = live[i] & ~mark[i];
162 if (garbage != 0) {
163 unsigned long high_bit = 1 << (kBitsPerWord - 1);
164 uintptr_t ptr_base = HB_INDEX_TO_OFFSET(i) + live_bitmap.base_;
165 while (garbage != 0) {
166 int shift = CLZ(garbage);
167 garbage &= ~(high_bit >> shift);
168 *pb++ = (void*)(ptr_base + shift * kAlignment);
169 }
170 // Make sure that there are always enough slots available for an
171 // entire word of one bits.
172 if (pb >= &pointer_buf[ARRAYSIZE_UNSAFE(pointer_buf) - kBitsPerWord]) {
173 (*callback)(pb - pointer_buf, pointer_buf, arg);
174 pb = pointer_buf;
175 }
176 }
177 }
178 if (pb > pointer_buf) {
179 (*callback)(pb - pointer_buf, pointer_buf, arg);
180 }
181}
182
183} // namespace art