space_bitmap.cc revision 8cf9cb386cd9286d67e879f1ee501ec00d72a4e1
1/*
2 * Copyright (C) 2008 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 "space_bitmap-inl.h"
18
19#include "android-base/stringprintf.h"
20
21#include "art_field-inl.h"
22#include "dex_file-inl.h"
23#include "mem_map.h"
24#include "mirror/class-inl.h"
25#include "mirror/object-inl.h"
26#include "mirror/object_array.h"
27
28namespace art {
29namespace gc {
30namespace accounting {
31
32using android::base::StringPrintf;
33
34template<size_t kAlignment>
35size_t SpaceBitmap<kAlignment>::ComputeBitmapSize(uint64_t capacity) {
36  const uint64_t kBytesCoveredPerWord = kAlignment * kBitsPerIntPtrT;
37  return (RoundUp(capacity, kBytesCoveredPerWord) / kBytesCoveredPerWord) * sizeof(intptr_t);
38}
39
40template<size_t kAlignment>
41size_t SpaceBitmap<kAlignment>::ComputeHeapSize(uint64_t bitmap_bytes) {
42  return bitmap_bytes * kBitsPerByte * kAlignment;
43}
44
45template<size_t kAlignment>
46SpaceBitmap<kAlignment>* SpaceBitmap<kAlignment>::CreateFromMemMap(
47    const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) {
48  CHECK(mem_map != nullptr);
49  uintptr_t* bitmap_begin = reinterpret_cast<uintptr_t*>(mem_map->Begin());
50  const size_t bitmap_size = ComputeBitmapSize(heap_capacity);
51  return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin);
52}
53
54template<size_t kAlignment>
55SpaceBitmap<kAlignment>::SpaceBitmap(const std::string& name, MemMap* mem_map, uintptr_t* bitmap_begin,
56                                     size_t bitmap_size, const void* heap_begin)
57    : mem_map_(mem_map),
58      bitmap_begin_(reinterpret_cast<Atomic<uintptr_t>*>(bitmap_begin)),
59      bitmap_size_(bitmap_size),
60      heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
61      name_(name) {
62  CHECK(bitmap_begin_ != nullptr);
63  CHECK_NE(bitmap_size, 0U);
64}
65
66template<size_t kAlignment>
67SpaceBitmap<kAlignment>::~SpaceBitmap() {}
68
69template<size_t kAlignment>
70SpaceBitmap<kAlignment>* SpaceBitmap<kAlignment>::Create(
71    const std::string& name, uint8_t* heap_begin, size_t heap_capacity) {
72  // Round up since heap_capacity is not necessarily a multiple of kAlignment * kBitsPerWord.
73  const size_t bitmap_size = ComputeBitmapSize(heap_capacity);
74  std::string error_msg;
75  std::unique_ptr<MemMap> mem_map(MemMap::MapAnonymous(name.c_str(), nullptr, bitmap_size,
76                                                       PROT_READ | PROT_WRITE, false, false,
77                                                       &error_msg));
78  if (UNLIKELY(mem_map.get() == nullptr)) {
79    LOG(ERROR) << "Failed to allocate bitmap " << name << ": " << error_msg;
80    return nullptr;
81  }
82  return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
83}
84
85template<size_t kAlignment>
86void SpaceBitmap<kAlignment>::SetHeapLimit(uintptr_t new_end) {
87  DCHECK_ALIGNED(new_end, kBitsPerIntPtrT * kAlignment);
88  size_t new_size = OffsetToIndex(new_end - heap_begin_) * sizeof(intptr_t);
89  if (new_size < bitmap_size_) {
90    bitmap_size_ = new_size;
91  }
92  // Not sure if doing this trim is necessary, since nothing past the end of the heap capacity
93  // should be marked.
94}
95
96template<size_t kAlignment>
97std::string SpaceBitmap<kAlignment>::Dump() const {
98  return StringPrintf("%s: %p-%p", name_.c_str(), reinterpret_cast<void*>(HeapBegin()),
99                      reinterpret_cast<void*>(HeapLimit()));
100}
101
102template<size_t kAlignment>
103void SpaceBitmap<kAlignment>::Clear() {
104  if (bitmap_begin_ != nullptr) {
105    mem_map_->MadviseDontNeedAndZero();
106  }
107}
108
109template<size_t kAlignment>
110void SpaceBitmap<kAlignment>::ClearRange(const mirror::Object* begin, const mirror::Object* end) {
111  uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_;
112  uintptr_t end_offset = reinterpret_cast<uintptr_t>(end) - heap_begin_;
113  // Align begin and end to word boundaries.
114  while (begin_offset < end_offset && OffsetBitIndex(begin_offset) != 0) {
115    Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset));
116    begin_offset += kAlignment;
117  }
118  while (begin_offset < end_offset && OffsetBitIndex(end_offset) != 0) {
119    end_offset -= kAlignment;
120    Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + end_offset));
121  }
122  const uintptr_t start_index = OffsetToIndex(begin_offset);
123  const uintptr_t end_index = OffsetToIndex(end_offset);
124  ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]),
125                      (end_index - start_index) * sizeof(*bitmap_begin_));
126}
127
128template<size_t kAlignment>
129void SpaceBitmap<kAlignment>::CopyFrom(SpaceBitmap* source_bitmap) {
130  DCHECK_EQ(Size(), source_bitmap->Size());
131  const size_t count = source_bitmap->Size() / sizeof(intptr_t);
132  Atomic<uintptr_t>* const src = source_bitmap->Begin();
133  Atomic<uintptr_t>* const dest = Begin();
134  for (size_t i = 0; i < count; ++i) {
135    dest[i].StoreRelaxed(src[i].LoadRelaxed());
136  }
137}
138
139template<size_t kAlignment>
140void SpaceBitmap<kAlignment>::SweepWalk(const SpaceBitmap<kAlignment>& live_bitmap,
141                                        const SpaceBitmap<kAlignment>& mark_bitmap,
142                                        uintptr_t sweep_begin, uintptr_t sweep_end,
143                                        SpaceBitmap::SweepCallback* callback, void* arg) {
144  CHECK(live_bitmap.bitmap_begin_ != nullptr);
145  CHECK(mark_bitmap.bitmap_begin_ != nullptr);
146  CHECK_EQ(live_bitmap.heap_begin_, mark_bitmap.heap_begin_);
147  CHECK_EQ(live_bitmap.bitmap_size_, mark_bitmap.bitmap_size_);
148  CHECK(callback != nullptr);
149  CHECK_LE(sweep_begin, sweep_end);
150  CHECK_GE(sweep_begin, live_bitmap.heap_begin_);
151
152  if (sweep_end <= sweep_begin) {
153    return;
154  }
155
156  // TODO: rewrite the callbacks to accept a std::vector<mirror::Object*> rather than a mirror::Object**?
157  constexpr size_t buffer_size = sizeof(intptr_t) * kBitsPerIntPtrT;
158#ifdef __LP64__
159  // Heap-allocate for smaller stack frame.
160  std::unique_ptr<mirror::Object*[]> pointer_buf_ptr(new mirror::Object*[buffer_size]);
161  mirror::Object** pointer_buf = pointer_buf_ptr.get();
162#else
163  // Stack-allocate buffer as it's small enough.
164  mirror::Object* pointer_buf[buffer_size];
165#endif
166  mirror::Object** pb = &pointer_buf[0];
167
168  size_t start = OffsetToIndex(sweep_begin - live_bitmap.heap_begin_);
169  size_t end = OffsetToIndex(sweep_end - live_bitmap.heap_begin_ - 1);
170  CHECK_LT(end, live_bitmap.Size() / sizeof(intptr_t));
171  Atomic<uintptr_t>* live = live_bitmap.bitmap_begin_;
172  Atomic<uintptr_t>* mark = mark_bitmap.bitmap_begin_;
173  for (size_t i = start; i <= end; i++) {
174    uintptr_t garbage = live[i].LoadRelaxed() & ~mark[i].LoadRelaxed();
175    if (UNLIKELY(garbage != 0)) {
176      uintptr_t ptr_base = IndexToOffset(i) + live_bitmap.heap_begin_;
177      do {
178        const size_t shift = CTZ(garbage);
179        garbage ^= (static_cast<uintptr_t>(1)) << shift;
180        *pb++ = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
181      } while (garbage != 0);
182      // Make sure that there are always enough slots available for an
183      // entire word of one bits.
184      if (pb >= &pointer_buf[buffer_size - kBitsPerIntPtrT]) {
185        (*callback)(pb - &pointer_buf[0], &pointer_buf[0], arg);
186        pb = &pointer_buf[0];
187      }
188    }
189  }
190  if (pb > &pointer_buf[0]) {
191    (*callback)(pb - &pointer_buf[0], &pointer_buf[0], arg);
192  }
193}
194
195template class SpaceBitmap<kObjectAlignment>;
196template class SpaceBitmap<kPageSize>;
197
198}  // namespace accounting
199}  // namespace gc
200}  // namespace art
201