heap.cc revision b5f5649ba4c8cb51ce143ddbedd5e1549f08f8b3
1/*
2 * Copyright (C) 2011 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 "heap.h"
18
19#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <cutils/trace.h>
21
22#include <limits>
23#include <memory>
24#include <vector>
25
26#include "base/histogram-inl.h"
27#include "base/stl_util.h"
28#include "common_throws.h"
29#include "cutils/sched_policy.h"
30#include "debugger.h"
31#include "gc/accounting/atomic_stack.h"
32#include "gc/accounting/card_table-inl.h"
33#include "gc/accounting/heap_bitmap-inl.h"
34#include "gc/accounting/mod_union_table.h"
35#include "gc/accounting/mod_union_table-inl.h"
36#include "gc/accounting/remembered_set.h"
37#include "gc/accounting/space_bitmap-inl.h"
38#include "gc/collector/concurrent_copying.h"
39#include "gc/collector/mark_compact.h"
40#include "gc/collector/mark_sweep-inl.h"
41#include "gc/collector/partial_mark_sweep.h"
42#include "gc/collector/semi_space.h"
43#include "gc/collector/sticky_mark_sweep.h"
44#include "gc/reference_processor.h"
45#include "gc/space/bump_pointer_space.h"
46#include "gc/space/dlmalloc_space-inl.h"
47#include "gc/space/image_space.h"
48#include "gc/space/large_object_space.h"
49#include "gc/space/rosalloc_space-inl.h"
50#include "gc/space/space-inl.h"
51#include "gc/space/zygote_space.h"
52#include "entrypoints/quick/quick_alloc_entrypoints.h"
53#include "heap-inl.h"
54#include "image.h"
55#include "mirror/art_field-inl.h"
56#include "mirror/class-inl.h"
57#include "mirror/object.h"
58#include "mirror/object-inl.h"
59#include "mirror/object_array-inl.h"
60#include "mirror/reference-inl.h"
61#include "object_utils.h"
62#include "os.h"
63#include "reflection.h"
64#include "runtime.h"
65#include "ScopedLocalRef.h"
66#include "scoped_thread_state_change.h"
67#include "handle_scope-inl.h"
68#include "thread_list.h"
69#include "well_known_classes.h"
70
71namespace art {
72
73namespace gc {
74
75static constexpr size_t kCollectorTransitionStressIterations = 0;
76static constexpr size_t kCollectorTransitionStressWait = 10 * 1000;  // Microseconds
77static constexpr bool kGCALotMode = false;
78static constexpr size_t kGcAlotInterval = KB;
79// Minimum amount of remaining bytes before a concurrent GC is triggered.
80static constexpr size_t kMinConcurrentRemainingBytes = 128 * KB;
81static constexpr size_t kMaxConcurrentRemainingBytes = 512 * KB;
82// Sticky GC throughput adjustment, divided by 4. Increasing this causes sticky GC to occur more
83// relative to partial/full GC. This may be desirable since sticky GCs interfere less with mutator
84// threads (lower pauses, use less memory bandwidth).
85static constexpr double kStickyGcThroughputAdjustment = 1.0;
86// Whether or not we use the free list large object space.
87static constexpr bool kUseFreeListSpaceForLOS = false;
88// Whether or not we compact the zygote in PreZygoteFork.
89static constexpr bool kCompactZygote = kMovingCollector;
90static constexpr size_t kNonMovingSpaceCapacity = 64 * MB;
91// How many reserve entries are at the end of the allocation stack, these are only needed if the
92// allocation stack overflows.
93static constexpr size_t kAllocationStackReserveSize = 1024;
94// Default mark stack size in bytes.
95static const size_t kDefaultMarkStackSize = 64 * KB;
96
97Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
98           double target_utilization, double foreground_heap_growth_multiplier, size_t capacity,
99           const std::string& image_file_name, const InstructionSet image_instruction_set,
100           CollectorType foreground_collector_type, CollectorType background_collector_type,
101           size_t parallel_gc_threads, size_t conc_gc_threads, bool low_memory_mode,
102           size_t long_pause_log_threshold, size_t long_gc_log_threshold,
103           bool ignore_max_footprint, bool use_tlab,
104           bool verify_pre_gc_heap, bool verify_pre_sweeping_heap, bool verify_post_gc_heap,
105           bool verify_pre_gc_rosalloc, bool verify_pre_sweeping_rosalloc,
106           bool verify_post_gc_rosalloc)
107    : non_moving_space_(nullptr),
108      rosalloc_space_(nullptr),
109      dlmalloc_space_(nullptr),
110      main_space_(nullptr),
111      collector_type_(kCollectorTypeNone),
112      foreground_collector_type_(foreground_collector_type),
113      background_collector_type_(background_collector_type),
114      desired_collector_type_(foreground_collector_type_),
115      heap_trim_request_lock_(nullptr),
116      last_trim_time_(0),
117      heap_transition_or_trim_target_time_(0),
118      heap_trim_request_pending_(false),
119      parallel_gc_threads_(parallel_gc_threads),
120      conc_gc_threads_(conc_gc_threads),
121      low_memory_mode_(low_memory_mode),
122      long_pause_log_threshold_(long_pause_log_threshold),
123      long_gc_log_threshold_(long_gc_log_threshold),
124      ignore_max_footprint_(ignore_max_footprint),
125      zygote_creation_lock_("zygote creation lock", kZygoteCreationLock),
126      have_zygote_space_(false),
127      large_object_threshold_(std::numeric_limits<size_t>::max()),  // Starts out disabled.
128      collector_type_running_(kCollectorTypeNone),
129      last_gc_type_(collector::kGcTypeNone),
130      next_gc_type_(collector::kGcTypePartial),
131      capacity_(capacity),
132      growth_limit_(growth_limit),
133      max_allowed_footprint_(initial_size),
134      native_footprint_gc_watermark_(initial_size),
135      native_footprint_limit_(2 * initial_size),
136      native_need_to_run_finalization_(false),
137      // Initially assume we perceive jank in case the process state is never updated.
138      process_state_(kProcessStateJankPerceptible),
139      concurrent_start_bytes_(std::numeric_limits<size_t>::max()),
140      total_bytes_freed_ever_(0),
141      total_objects_freed_ever_(0),
142      num_bytes_allocated_(0),
143      native_bytes_allocated_(0),
144      gc_memory_overhead_(0),
145      verify_missing_card_marks_(false),
146      verify_system_weaks_(false),
147      verify_pre_gc_heap_(verify_pre_gc_heap),
148      verify_pre_sweeping_heap_(verify_pre_sweeping_heap),
149      verify_post_gc_heap_(verify_post_gc_heap),
150      verify_mod_union_table_(false),
151      verify_pre_gc_rosalloc_(verify_pre_gc_rosalloc),
152      verify_pre_sweeping_rosalloc_(verify_pre_sweeping_rosalloc),
153      verify_post_gc_rosalloc_(verify_post_gc_rosalloc),
154      last_gc_time_ns_(NanoTime()),
155      allocation_rate_(0),
156      /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
157       * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
158       * verification is enabled, we limit the size of allocation stacks to speed up their
159       * searching.
160       */
161      max_allocation_stack_size_(kGCALotMode ? kGcAlotInterval
162          : (kVerifyObjectSupport > kVerifyObjectModeFast) ? KB : MB),
163      current_allocator_(kAllocatorTypeDlMalloc),
164      current_non_moving_allocator_(kAllocatorTypeNonMoving),
165      bump_pointer_space_(nullptr),
166      temp_space_(nullptr),
167      min_free_(min_free),
168      max_free_(max_free),
169      target_utilization_(target_utilization),
170      foreground_heap_growth_multiplier_(foreground_heap_growth_multiplier),
171      total_wait_time_(0),
172      total_allocation_time_(0),
173      verify_object_mode_(kVerifyObjectModeDisabled),
174      disable_moving_gc_count_(0),
175      running_on_valgrind_(Runtime::Current()->RunningOnValgrind()),
176      use_tlab_(use_tlab) {
177  if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
178    LOG(INFO) << "Heap() entering";
179  }
180  const bool is_zygote = Runtime::Current()->IsZygote();
181  // If we aren't the zygote, switch to the default non zygote allocator. This may update the
182  // entrypoints.
183  if (!is_zygote) {
184    large_object_threshold_ = kDefaultLargeObjectThreshold;
185    // Background compaction is currently not supported for command line runs.
186    if (background_collector_type_ != foreground_collector_type_) {
187      VLOG(heap) << "Disabling background compaction for non zygote";
188      background_collector_type_ = foreground_collector_type_;
189    }
190  }
191  ChangeCollector(desired_collector_type_);
192
193  live_bitmap_.reset(new accounting::HeapBitmap(this));
194  mark_bitmap_.reset(new accounting::HeapBitmap(this));
195  // Requested begin for the alloc space, to follow the mapped image and oat files
196  byte* requested_alloc_space_begin = nullptr;
197  if (!image_file_name.empty()) {
198    space::ImageSpace* image_space = space::ImageSpace::Create(image_file_name.c_str(),
199                                                               image_instruction_set);
200    CHECK(image_space != nullptr) << "Failed to create space for " << image_file_name;
201    AddSpace(image_space);
202    // Oat files referenced by image files immediately follow them in memory, ensure alloc space
203    // isn't going to get in the middle
204    byte* oat_file_end_addr = image_space->GetImageHeader().GetOatFileEnd();
205    CHECK_GT(oat_file_end_addr, image_space->End());
206    requested_alloc_space_begin = AlignUp(oat_file_end_addr, kPageSize);
207  }
208  if (is_zygote) {
209    // Reserve the address range before we create the non moving space to make sure bitmaps don't
210    // take it.
211    std::string error_str;
212    MemMap* mem_map = MemMap::MapAnonymous(
213        "main space", requested_alloc_space_begin + kNonMovingSpaceCapacity, capacity,
214        PROT_READ | PROT_WRITE, true, &error_str);
215    CHECK(mem_map != nullptr) << error_str;
216    // Non moving space is always dlmalloc since we currently don't have support for multiple
217    // rosalloc spaces.
218    non_moving_space_ = space::DlMallocSpace::Create(
219        "zygote / non moving space", initial_size, kNonMovingSpaceCapacity, kNonMovingSpaceCapacity,
220        requested_alloc_space_begin, false);
221    non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
222    CreateMainMallocSpace(mem_map, initial_size, growth_limit, capacity);
223  } else {
224    std::string error_str;
225    MemMap* mem_map = MemMap::MapAnonymous("main/non-moving space", requested_alloc_space_begin,
226                                           capacity, PROT_READ | PROT_WRITE, true, &error_str);
227    CHECK(mem_map != nullptr) << error_str;
228    // Create the main free list space, which doubles as the non moving space. We can do this since
229    // non zygote means that we won't have any background compaction.
230    CreateMainMallocSpace(mem_map, initial_size, growth_limit, capacity);
231    non_moving_space_ = main_space_;
232  }
233  CHECK(non_moving_space_ != nullptr);
234
235  // We need to create the bump pointer if the foreground collector is a compacting GC. We only
236  // create the bump pointer space if we are not a moving foreground collector but have a moving
237  // background collector since the heap transition code will create the temp space by recycling
238  // the bitmap from the main space.
239  if (kMovingCollector &&
240      (IsMovingGc(foreground_collector_type_) || IsMovingGc(background_collector_type_))) {
241    // TODO: Place bump-pointer spaces somewhere to minimize size of card table.
242    // Divide by 2 for a temporary fix for reducing virtual memory usage.
243    const size_t bump_pointer_space_capacity = capacity / 2;
244    bump_pointer_space_ = space::BumpPointerSpace::Create("Bump pointer space",
245                                                          bump_pointer_space_capacity, nullptr);
246    CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space";
247    AddSpace(bump_pointer_space_);
248    temp_space_ = space::BumpPointerSpace::Create("Bump pointer space 2",
249                                                  bump_pointer_space_capacity, nullptr);
250    CHECK(temp_space_ != nullptr) << "Failed to create bump pointer space";
251    AddSpace(temp_space_);
252  }
253  if (non_moving_space_ != main_space_) {
254    AddSpace(non_moving_space_);
255  }
256  if (main_space_ != nullptr) {
257    AddSpace(main_space_);
258  }
259
260  // Allocate the large object space.
261  if (kUseFreeListSpaceForLOS) {
262    large_object_space_ = space::FreeListSpace::Create("large object space", nullptr, capacity);
263  } else {
264    large_object_space_ = space::LargeObjectMapSpace::Create("large object space");
265  }
266  CHECK(large_object_space_ != nullptr) << "Failed to create large object space";
267  AddSpace(large_object_space_);
268
269  // Compute heap capacity. Continuous spaces are sorted in order of Begin().
270  CHECK(!continuous_spaces_.empty());
271
272  // Relies on the spaces being sorted.
273  byte* heap_begin = continuous_spaces_.front()->Begin();
274  byte* heap_end = continuous_spaces_.back()->Limit();
275  size_t heap_capacity = heap_end - heap_begin;
276
277  // Allocate the card table.
278  card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
279  CHECK(card_table_.get() != NULL) << "Failed to create card table";
280
281  // Card cache for now since it makes it easier for us to update the references to the copying
282  // spaces.
283  accounting::ModUnionTable* mod_union_table =
284      new accounting::ModUnionTableToZygoteAllocspace("Image mod-union table", this,
285                                                      GetImageSpace());
286  CHECK(mod_union_table != nullptr) << "Failed to create image mod-union table";
287  AddModUnionTable(mod_union_table);
288
289  if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) {
290    accounting::RememberedSet* non_moving_space_rem_set =
291        new accounting::RememberedSet("Non-moving space remembered set", this, non_moving_space_);
292    CHECK(non_moving_space_rem_set != nullptr) << "Failed to create non-moving space remembered set";
293    AddRememberedSet(non_moving_space_rem_set);
294  }
295
296  // TODO: Count objects in the image space here.
297  num_bytes_allocated_.StoreRelaxed(0);
298
299  mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize,
300                                                    kDefaultMarkStackSize));
301  const size_t alloc_stack_capacity = max_allocation_stack_size_ + kAllocationStackReserveSize;
302  allocation_stack_.reset(accounting::ObjectStack::Create(
303      "allocation stack", max_allocation_stack_size_, alloc_stack_capacity));
304  live_stack_.reset(accounting::ObjectStack::Create(
305      "live stack", max_allocation_stack_size_, alloc_stack_capacity));
306
307  // It's still too early to take a lock because there are no threads yet, but we can create locks
308  // now. We don't create it earlier to make it clear that you can't use locks during heap
309  // initialization.
310  gc_complete_lock_ = new Mutex("GC complete lock");
311  gc_complete_cond_.reset(new ConditionVariable("GC complete condition variable",
312                                                *gc_complete_lock_));
313  heap_trim_request_lock_ = new Mutex("Heap trim request lock");
314  last_gc_size_ = GetBytesAllocated();
315
316  if (ignore_max_footprint_) {
317    SetIdealFootprint(std::numeric_limits<size_t>::max());
318    concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
319  }
320  CHECK_NE(max_allowed_footprint_, 0U);
321
322  // Create our garbage collectors.
323  for (size_t i = 0; i < 2; ++i) {
324    const bool concurrent = i != 0;
325    garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent));
326    garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent));
327    garbage_collectors_.push_back(new collector::StickyMarkSweep(this, concurrent));
328  }
329  if (kMovingCollector) {
330    // TODO: Clean this up.
331    bool generational = foreground_collector_type_ == kCollectorTypeGSS;
332    semi_space_collector_ = new collector::SemiSpace(this, generational,
333                                                     generational ? "generational" : "");
334    garbage_collectors_.push_back(semi_space_collector_);
335    concurrent_copying_collector_ = new collector::ConcurrentCopying(this);
336    garbage_collectors_.push_back(concurrent_copying_collector_);
337    mark_compact_collector_ = new collector::MarkCompact(this);
338    garbage_collectors_.push_back(mark_compact_collector_);
339  }
340
341  if (GetImageSpace() != nullptr && main_space_ != nullptr) {
342    // Check that there's no gap between the image space and the main
343    // space so that the immune region won't break (eg. due to a large
344    // object allocated in the gap).
345    bool no_gap = MemMap::CheckNoGaps(GetImageSpace()->GetMemMap(), main_space_->GetMemMap());
346    if (!no_gap) {
347      MemMap::DumpMaps(LOG(ERROR));
348      LOG(FATAL) << "There's a gap between the image space and the main space";
349    }
350  }
351
352  if (running_on_valgrind_) {
353    Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
354  }
355
356  if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
357    LOG(INFO) << "Heap() exiting";
358  }
359}
360
361void Heap::CreateMainMallocSpace(MemMap* mem_map, size_t initial_size, size_t growth_limit,
362                                 size_t capacity) {
363  // Is background compaction is enabled?
364  bool can_move_objects = IsMovingGc(background_collector_type_) !=
365      IsMovingGc(foreground_collector_type_);
366  // If we are the zygote and don't yet have a zygote space, it means that the zygote fork will
367  // happen in the future. If this happens and we have kCompactZygote enabled we wish to compact
368  // from the main space to the zygote space. If background compaction is enabled, always pass in
369  // that we can move objets.
370  if (kCompactZygote && Runtime::Current()->IsZygote() && !can_move_objects) {
371    // After the zygote we want this to be false if we don't have background compaction enabled so
372    // that getting primitive array elements is faster.
373    can_move_objects = !have_zygote_space_;
374  }
375  if (collector::SemiSpace::kUseRememberedSet && main_space_ != nullptr) {
376    RemoveRememberedSet(main_space_);
377  }
378  if (kUseRosAlloc) {
379    rosalloc_space_ = space::RosAllocSpace::CreateFromMemMap(
380        mem_map, "main rosalloc space", kDefaultStartingSize, initial_size, growth_limit, capacity,
381        low_memory_mode_, can_move_objects);
382    main_space_ = rosalloc_space_;
383    CHECK(main_space_ != nullptr) << "Failed to create rosalloc space";
384  } else {
385    dlmalloc_space_ = space::DlMallocSpace::CreateFromMemMap(
386        mem_map, "main dlmalloc space", kDefaultStartingSize, initial_size, growth_limit, capacity,
387        can_move_objects);
388    main_space_ = dlmalloc_space_;
389    CHECK(main_space_ != nullptr) << "Failed to create dlmalloc space";
390  }
391  main_space_->SetFootprintLimit(main_space_->Capacity());
392  if (collector::SemiSpace::kUseRememberedSet) {
393    accounting::RememberedSet* main_space_rem_set =
394        new accounting::RememberedSet("Main space remembered set", this, main_space_);
395    CHECK(main_space_rem_set != nullptr) << "Failed to create main space remembered set";
396    AddRememberedSet(main_space_rem_set);
397  }
398  VLOG(heap) << "Created main space " << main_space_;
399}
400
401void Heap::ChangeAllocator(AllocatorType allocator) {
402  if (current_allocator_ != allocator) {
403    // These two allocators are only used internally and don't have any entrypoints.
404    CHECK_NE(allocator, kAllocatorTypeLOS);
405    CHECK_NE(allocator, kAllocatorTypeNonMoving);
406    current_allocator_ = allocator;
407    MutexLock mu(nullptr, *Locks::runtime_shutdown_lock_);
408    SetQuickAllocEntryPointsAllocator(current_allocator_);
409    Runtime::Current()->GetInstrumentation()->ResetQuickAllocEntryPoints();
410  }
411}
412
413void Heap::DisableCompaction() {
414  if (IsMovingGc(foreground_collector_type_)) {
415    foreground_collector_type_  = kCollectorTypeCMS;
416  }
417  if (IsMovingGc(background_collector_type_)) {
418    background_collector_type_ = foreground_collector_type_;
419  }
420  TransitionCollector(foreground_collector_type_);
421}
422
423std::string Heap::SafeGetClassDescriptor(mirror::Class* klass) {
424  if (!IsValidContinuousSpaceObjectAddress(klass)) {
425    return StringPrintf("<non heap address klass %p>", klass);
426  }
427  mirror::Class* component_type = klass->GetComponentType<kVerifyNone>();
428  if (IsValidContinuousSpaceObjectAddress(component_type) && klass->IsArrayClass<kVerifyNone>()) {
429    std::string result("[");
430    result += SafeGetClassDescriptor(component_type);
431    return result;
432  } else if (UNLIKELY(klass->IsPrimitive<kVerifyNone>())) {
433    return Primitive::Descriptor(klass->GetPrimitiveType<kVerifyNone>());
434  } else if (UNLIKELY(klass->IsProxyClass<kVerifyNone>())) {
435    return Runtime::Current()->GetClassLinker()->GetDescriptorForProxy(klass);
436  } else {
437    mirror::DexCache* dex_cache = klass->GetDexCache<kVerifyNone>();
438    if (!IsValidContinuousSpaceObjectAddress(dex_cache)) {
439      return StringPrintf("<non heap address dex_cache %p>", dex_cache);
440    }
441    const DexFile* dex_file = dex_cache->GetDexFile();
442    uint16_t class_def_idx = klass->GetDexClassDefIndex();
443    if (class_def_idx == DexFile::kDexNoIndex16) {
444      return "<class def not found>";
445    }
446    const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
447    const DexFile::TypeId& type_id = dex_file->GetTypeId(class_def.class_idx_);
448    return dex_file->GetTypeDescriptor(type_id);
449  }
450}
451
452std::string Heap::SafePrettyTypeOf(mirror::Object* obj) {
453  if (obj == nullptr) {
454    return "null";
455  }
456  mirror::Class* klass = obj->GetClass<kVerifyNone>();
457  if (klass == nullptr) {
458    return "(class=null)";
459  }
460  std::string result(SafeGetClassDescriptor(klass));
461  if (obj->IsClass()) {
462    result += "<" + SafeGetClassDescriptor(obj->AsClass<kVerifyNone>()) + ">";
463  }
464  return result;
465}
466
467void Heap::DumpObject(std::ostream& stream, mirror::Object* obj) {
468  if (obj == nullptr) {
469    stream << "(obj=null)";
470    return;
471  }
472  if (IsAligned<kObjectAlignment>(obj)) {
473    space::Space* space = nullptr;
474    // Don't use find space since it only finds spaces which actually contain objects instead of
475    // spaces which may contain objects (e.g. cleared bump pointer spaces).
476    for (const auto& cur_space : continuous_spaces_) {
477      if (cur_space->HasAddress(obj)) {
478        space = cur_space;
479        break;
480      }
481    }
482    // Unprotect all the spaces.
483    for (const auto& space : continuous_spaces_) {
484      mprotect(space->Begin(), space->Capacity(), PROT_READ | PROT_WRITE);
485    }
486    stream << "Object " << obj;
487    if (space != nullptr) {
488      stream << " in space " << *space;
489    }
490    mirror::Class* klass = obj->GetClass<kVerifyNone>();
491    stream << "\nclass=" << klass;
492    if (klass != nullptr) {
493      stream << " type= " << SafePrettyTypeOf(obj);
494    }
495    // Re-protect the address we faulted on.
496    mprotect(AlignDown(obj, kPageSize), kPageSize, PROT_NONE);
497  }
498}
499
500bool Heap::IsCompilingBoot() const {
501  for (const auto& space : continuous_spaces_) {
502    if (space->IsImageSpace() || space->IsZygoteSpace()) {
503      return false;
504    }
505  }
506  return true;
507}
508
509bool Heap::HasImageSpace() const {
510  for (const auto& space : continuous_spaces_) {
511    if (space->IsImageSpace()) {
512      return true;
513    }
514  }
515  return false;
516}
517
518void Heap::IncrementDisableMovingGC(Thread* self) {
519  // Need to do this holding the lock to prevent races where the GC is about to run / running when
520  // we attempt to disable it.
521  ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
522  MutexLock mu(self, *gc_complete_lock_);
523  ++disable_moving_gc_count_;
524  if (IsMovingGc(collector_type_running_)) {
525    WaitForGcToCompleteLocked(kGcCauseDisableMovingGc, self);
526  }
527}
528
529void Heap::DecrementDisableMovingGC(Thread* self) {
530  MutexLock mu(self, *gc_complete_lock_);
531  CHECK_GE(disable_moving_gc_count_, 0U);
532  --disable_moving_gc_count_;
533}
534
535void Heap::UpdateProcessState(ProcessState process_state) {
536  if (process_state_ != process_state) {
537    process_state_ = process_state;
538    for (size_t i = 1; i <= kCollectorTransitionStressIterations; ++i) {
539      // Start at index 1 to avoid "is always false" warning.
540      // Have iteration 1 always transition the collector.
541      TransitionCollector((((i & 1) == 1) == (process_state_ == kProcessStateJankPerceptible))
542                          ? foreground_collector_type_ : background_collector_type_);
543      usleep(kCollectorTransitionStressWait);
544    }
545    if (process_state_ == kProcessStateJankPerceptible) {
546      // Transition back to foreground right away to prevent jank.
547      RequestCollectorTransition(foreground_collector_type_, 0);
548    } else {
549      // Don't delay for debug builds since we may want to stress test the GC.
550      RequestCollectorTransition(background_collector_type_, kIsDebugBuild ? 0 :
551          kCollectorTransitionWait);
552    }
553  }
554}
555
556void Heap::CreateThreadPool() {
557  const size_t num_threads = std::max(parallel_gc_threads_, conc_gc_threads_);
558  if (num_threads != 0) {
559    thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
560  }
561}
562
563void Heap::VisitObjects(ObjectCallback callback, void* arg) {
564  Thread* self = Thread::Current();
565  // GCs can move objects, so don't allow this.
566  const char* old_cause = self->StartAssertNoThreadSuspension("Visiting objects");
567  if (bump_pointer_space_ != nullptr) {
568    // Visit objects in bump pointer space.
569    bump_pointer_space_->Walk(callback, arg);
570  }
571  // TODO: Switch to standard begin and end to use ranged a based loop.
572  for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End();
573      it < end; ++it) {
574    mirror::Object* obj = *it;
575    if (obj != nullptr && obj->GetClass() != nullptr) {
576      // Avoid the race condition caused by the object not yet being written into the allocation
577      // stack or the class not yet being written in the object. Or, if kUseThreadLocalAllocationStack,
578      // there can be nulls on the allocation stack.
579      callback(obj, arg);
580    }
581  }
582  GetLiveBitmap()->Walk(callback, arg);
583  self->EndAssertNoThreadSuspension(old_cause);
584}
585
586void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) {
587  space::ContinuousSpace* space1 = rosalloc_space_ != nullptr ? rosalloc_space_ : non_moving_space_;
588  space::ContinuousSpace* space2 = dlmalloc_space_ != nullptr ? dlmalloc_space_ : non_moving_space_;
589  // This is just logic to handle a case of either not having a rosalloc or dlmalloc space.
590  // TODO: Generalize this to n bitmaps?
591  if (space1 == nullptr) {
592    DCHECK(space2 != nullptr);
593    space1 = space2;
594  }
595  if (space2 == nullptr) {
596    DCHECK(space1 != nullptr);
597    space2 = space1;
598  }
599  MarkAllocStack(space1->GetLiveBitmap(), space2->GetLiveBitmap(),
600                 large_object_space_->GetLiveBitmap(), stack);
601}
602
603void Heap::DeleteThreadPool() {
604  thread_pool_.reset(nullptr);
605}
606
607void Heap::AddSpace(space::Space* space) {
608  DCHECK(space != nullptr);
609  WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
610  if (space->IsContinuousSpace()) {
611    DCHECK(!space->IsDiscontinuousSpace());
612    space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
613    // Continuous spaces don't necessarily have bitmaps.
614    accounting::ContinuousSpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
615    accounting::ContinuousSpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
616    if (live_bitmap != nullptr) {
617      DCHECK(mark_bitmap != nullptr);
618      live_bitmap_->AddContinuousSpaceBitmap(live_bitmap);
619      mark_bitmap_->AddContinuousSpaceBitmap(mark_bitmap);
620    }
621    continuous_spaces_.push_back(continuous_space);
622    // Ensure that spaces remain sorted in increasing order of start address.
623    std::sort(continuous_spaces_.begin(), continuous_spaces_.end(),
624              [](const space::ContinuousSpace* a, const space::ContinuousSpace* b) {
625      return a->Begin() < b->Begin();
626    });
627  } else {
628    DCHECK(space->IsDiscontinuousSpace());
629    space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
630    live_bitmap_->AddLargeObjectBitmap(discontinuous_space->GetLiveBitmap());
631    mark_bitmap_->AddLargeObjectBitmap(discontinuous_space->GetMarkBitmap());
632    discontinuous_spaces_.push_back(discontinuous_space);
633  }
634  if (space->IsAllocSpace()) {
635    alloc_spaces_.push_back(space->AsAllocSpace());
636  }
637}
638
639void Heap::SetSpaceAsDefault(space::ContinuousSpace* continuous_space) {
640  WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
641  if (continuous_space->IsDlMallocSpace()) {
642    dlmalloc_space_ = continuous_space->AsDlMallocSpace();
643  } else if (continuous_space->IsRosAllocSpace()) {
644    rosalloc_space_ = continuous_space->AsRosAllocSpace();
645  }
646}
647
648void Heap::RemoveSpace(space::Space* space) {
649  DCHECK(space != nullptr);
650  WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
651  if (space->IsContinuousSpace()) {
652    DCHECK(!space->IsDiscontinuousSpace());
653    space::ContinuousSpace* continuous_space = space->AsContinuousSpace();
654    // Continuous spaces don't necessarily have bitmaps.
655    accounting::ContinuousSpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap();
656    accounting::ContinuousSpaceBitmap* mark_bitmap = continuous_space->GetMarkBitmap();
657    if (live_bitmap != nullptr) {
658      DCHECK(mark_bitmap != nullptr);
659      live_bitmap_->RemoveContinuousSpaceBitmap(live_bitmap);
660      mark_bitmap_->RemoveContinuousSpaceBitmap(mark_bitmap);
661    }
662    auto it = std::find(continuous_spaces_.begin(), continuous_spaces_.end(), continuous_space);
663    DCHECK(it != continuous_spaces_.end());
664    continuous_spaces_.erase(it);
665  } else {
666    DCHECK(space->IsDiscontinuousSpace());
667    space::DiscontinuousSpace* discontinuous_space = space->AsDiscontinuousSpace();
668    live_bitmap_->RemoveLargeObjectBitmap(discontinuous_space->GetLiveBitmap());
669    mark_bitmap_->RemoveLargeObjectBitmap(discontinuous_space->GetMarkBitmap());
670    auto it = std::find(discontinuous_spaces_.begin(), discontinuous_spaces_.end(),
671                        discontinuous_space);
672    DCHECK(it != discontinuous_spaces_.end());
673    discontinuous_spaces_.erase(it);
674  }
675  if (space->IsAllocSpace()) {
676    auto it = std::find(alloc_spaces_.begin(), alloc_spaces_.end(), space->AsAllocSpace());
677    DCHECK(it != alloc_spaces_.end());
678    alloc_spaces_.erase(it);
679  }
680}
681
682void Heap::RegisterGCAllocation(size_t bytes) {
683  gc_memory_overhead_.FetchAndAddSequentiallyConsistent(bytes);
684}
685
686void Heap::RegisterGCDeAllocation(size_t bytes) {
687  gc_memory_overhead_.FetchAndSubSequentiallyConsistent(bytes);
688}
689
690void Heap::DumpGcPerformanceInfo(std::ostream& os) {
691  // Dump cumulative timings.
692  os << "Dumping cumulative Gc timings\n";
693  uint64_t total_duration = 0;
694  // Dump cumulative loggers for each GC type.
695  uint64_t total_paused_time = 0;
696  for (auto& collector : garbage_collectors_) {
697    const CumulativeLogger& logger = collector->GetCumulativeTimings();
698    const size_t iterations = logger.GetIterations();
699    const Histogram<uint64_t>& pause_histogram = collector->GetPauseHistogram();
700    if (iterations != 0 && pause_histogram.SampleSize() != 0) {
701      os << ConstDumpable<CumulativeLogger>(logger);
702      const uint64_t total_ns = logger.GetTotalNs();
703      const uint64_t total_pause_ns = collector->GetTotalPausedTimeNs();
704      double seconds = NsToMs(logger.GetTotalNs()) / 1000.0;
705      const uint64_t freed_bytes = collector->GetTotalFreedBytes();
706      const uint64_t freed_objects = collector->GetTotalFreedObjects();
707      Histogram<uint64_t>::CumulativeData cumulative_data;
708      pause_histogram.CreateHistogram(&cumulative_data);
709      pause_histogram.PrintConfidenceIntervals(os, 0.99, cumulative_data);
710      os << collector->GetName() << " total time: " << PrettyDuration(total_ns)
711         << " mean time: " << PrettyDuration(total_ns / iterations) << "\n"
712         << collector->GetName() << " freed: " << freed_objects
713         << " objects with total size " << PrettySize(freed_bytes) << "\n"
714         << collector->GetName() << " throughput: " << freed_objects / seconds << "/s / "
715         << PrettySize(freed_bytes / seconds) << "/s\n";
716      total_duration += total_ns;
717      total_paused_time += total_pause_ns;
718    }
719    collector->ResetMeasurements();
720  }
721  uint64_t allocation_time =
722      static_cast<uint64_t>(total_allocation_time_.LoadRelaxed()) * kTimeAdjust;
723  if (total_duration != 0) {
724    const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0;
725    os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
726    os << "Mean GC size throughput: "
727       << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
728    os << "Mean GC object throughput: "
729       << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
730  }
731  size_t total_objects_allocated = GetObjectsAllocatedEver();
732  os << "Total number of allocations: " << total_objects_allocated << "\n";
733  size_t total_bytes_allocated = GetBytesAllocatedEver();
734  os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
735  if (kMeasureAllocationTime) {
736    os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
737    os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
738       << "\n";
739  }
740  os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
741  os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
742  os << "Approximate GC data structures memory overhead: " << gc_memory_overhead_.LoadRelaxed();
743  BaseMutex::DumpAll(os);
744}
745
746Heap::~Heap() {
747  VLOG(heap) << "Starting ~Heap()";
748  STLDeleteElements(&garbage_collectors_);
749  // If we don't reset then the mark stack complains in its destructor.
750  allocation_stack_->Reset();
751  live_stack_->Reset();
752  STLDeleteValues(&mod_union_tables_);
753  STLDeleteValues(&remembered_sets_);
754  STLDeleteElements(&continuous_spaces_);
755  STLDeleteElements(&discontinuous_spaces_);
756  delete gc_complete_lock_;
757  delete heap_trim_request_lock_;
758  VLOG(heap) << "Finished ~Heap()";
759}
760
761space::ContinuousSpace* Heap::FindContinuousSpaceFromObject(const mirror::Object* obj,
762                                                            bool fail_ok) const {
763  for (const auto& space : continuous_spaces_) {
764    if (space->Contains(obj)) {
765      return space;
766    }
767  }
768  if (!fail_ok) {
769    LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
770  }
771  return NULL;
772}
773
774space::DiscontinuousSpace* Heap::FindDiscontinuousSpaceFromObject(const mirror::Object* obj,
775                                                                  bool fail_ok) const {
776  for (const auto& space : discontinuous_spaces_) {
777    if (space->Contains(obj)) {
778      return space;
779    }
780  }
781  if (!fail_ok) {
782    LOG(FATAL) << "object " << reinterpret_cast<const void*>(obj) << " not inside any spaces!";
783  }
784  return NULL;
785}
786
787space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const {
788  space::Space* result = FindContinuousSpaceFromObject(obj, true);
789  if (result != NULL) {
790    return result;
791  }
792  return FindDiscontinuousSpaceFromObject(obj, true);
793}
794
795space::ImageSpace* Heap::GetImageSpace() const {
796  for (const auto& space : continuous_spaces_) {
797    if (space->IsImageSpace()) {
798      return space->AsImageSpace();
799    }
800  }
801  return NULL;
802}
803
804static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
805  size_t chunk_size = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
806  if (used_bytes < chunk_size) {
807    size_t chunk_free_bytes = chunk_size - used_bytes;
808    size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
809    max_contiguous_allocation = std::max(max_contiguous_allocation, chunk_free_bytes);
810  }
811}
812
813void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, bool large_object_allocation) {
814  std::ostringstream oss;
815  size_t total_bytes_free = GetFreeMemory();
816  oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
817      << " free bytes";
818  // If the allocation failed due to fragmentation, print out the largest continuous allocation.
819  if (!large_object_allocation && total_bytes_free >= byte_count) {
820    size_t max_contiguous_allocation = 0;
821    for (const auto& space : continuous_spaces_) {
822      if (space->IsMallocSpace()) {
823        // To allow the Walk/InspectAll() to exclusively-lock the mutator
824        // lock, temporarily release the shared access to the mutator
825        // lock here by transitioning to the suspended state.
826        Locks::mutator_lock_->AssertSharedHeld(self);
827        self->TransitionFromRunnableToSuspended(kSuspended);
828        space->AsMallocSpace()->Walk(MSpaceChunkCallback, &max_contiguous_allocation);
829        self->TransitionFromSuspendedToRunnable();
830        Locks::mutator_lock_->AssertSharedHeld(self);
831      }
832    }
833    oss << "; failed due to fragmentation (largest possible contiguous allocation "
834        <<  max_contiguous_allocation << " bytes)";
835  }
836  self->ThrowOutOfMemoryError(oss.str().c_str());
837}
838
839void Heap::DoPendingTransitionOrTrim() {
840  Thread* self = Thread::Current();
841  CollectorType desired_collector_type;
842  // Wait until we reach the desired transition time.
843  while (true) {
844    uint64_t wait_time;
845    {
846      MutexLock mu(self, *heap_trim_request_lock_);
847      desired_collector_type = desired_collector_type_;
848      uint64_t current_time = NanoTime();
849      if (current_time >= heap_transition_or_trim_target_time_) {
850        break;
851      }
852      wait_time = heap_transition_or_trim_target_time_ - current_time;
853    }
854    ScopedThreadStateChange tsc(self, kSleeping);
855    usleep(wait_time / 1000);  // Usleep takes microseconds.
856  }
857  // Transition the collector if the desired collector type is not the same as the current
858  // collector type.
859  TransitionCollector(desired_collector_type);
860  if (!CareAboutPauseTimes()) {
861    // Deflate the monitors, this can cause a pause but shouldn't matter since we don't care
862    // about pauses.
863    Runtime* runtime = Runtime::Current();
864    runtime->GetThreadList()->SuspendAll();
865    uint64_t start_time = NanoTime();
866    size_t count = runtime->GetMonitorList()->DeflateMonitors();
867    VLOG(heap) << "Deflating " << count << " monitors took "
868        << PrettyDuration(NanoTime() - start_time);
869    runtime->GetThreadList()->ResumeAll();
870  }
871  // Do a heap trim if it is needed.
872  Trim();
873}
874
875void Heap::Trim() {
876  Thread* self = Thread::Current();
877  {
878    MutexLock mu(self, *heap_trim_request_lock_);
879    if (!heap_trim_request_pending_ || last_trim_time_ + kHeapTrimWait >= NanoTime()) {
880      return;
881    }
882    last_trim_time_ = NanoTime();
883    heap_trim_request_pending_ = false;
884  }
885  {
886    // Need to do this before acquiring the locks since we don't want to get suspended while
887    // holding any locks.
888    ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
889    // Pretend we are doing a GC to prevent background compaction from deleting the space we are
890    // trimming.
891    MutexLock mu(self, *gc_complete_lock_);
892    // Ensure there is only one GC at a time.
893    WaitForGcToCompleteLocked(kGcCauseTrim, self);
894    collector_type_running_ = kCollectorTypeHeapTrim;
895  }
896  uint64_t start_ns = NanoTime();
897  // Trim the managed spaces.
898  uint64_t total_alloc_space_allocated = 0;
899  uint64_t total_alloc_space_size = 0;
900  uint64_t managed_reclaimed = 0;
901  for (const auto& space : continuous_spaces_) {
902    if (space->IsMallocSpace()) {
903      gc::space::MallocSpace* malloc_space = space->AsMallocSpace();
904      if (malloc_space->IsRosAllocSpace() || !CareAboutPauseTimes()) {
905        // Don't trim dlmalloc spaces if we care about pauses since this can hold the space lock
906        // for a long period of time.
907        managed_reclaimed += malloc_space->Trim();
908      }
909      total_alloc_space_size += malloc_space->Size();
910    }
911  }
912  total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated();
913  if (bump_pointer_space_ != nullptr) {
914    total_alloc_space_allocated -= bump_pointer_space_->Size();
915  }
916  const float managed_utilization = static_cast<float>(total_alloc_space_allocated) /
917      static_cast<float>(total_alloc_space_size);
918  uint64_t gc_heap_end_ns = NanoTime();
919  // We never move things in the native heap, so we can finish the GC at this point.
920  FinishGC(self, collector::kGcTypeNone);
921  size_t native_reclaimed = 0;
922  // Only trim the native heap if we don't care about pauses.
923  if (!CareAboutPauseTimes()) {
924#if defined(USE_DLMALLOC)
925    // Trim the native heap.
926    dlmalloc_trim(0);
927    dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
928#elif defined(USE_JEMALLOC)
929    // Jemalloc does it's own internal trimming.
930#else
931    UNIMPLEMENTED(WARNING) << "Add trimming support";
932#endif
933  }
934  uint64_t end_ns = NanoTime();
935  VLOG(heap) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
936      << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
937      << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
938      << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
939      << "%.";
940}
941
942bool Heap::IsValidObjectAddress(const mirror::Object* obj) const {
943  // Note: we deliberately don't take the lock here, and mustn't test anything that would require
944  // taking the lock.
945  if (obj == nullptr) {
946    return true;
947  }
948  return IsAligned<kObjectAlignment>(obj) && FindSpaceFromObject(obj, true) != nullptr;
949}
950
951bool Heap::IsNonDiscontinuousSpaceHeapAddress(const mirror::Object* obj) const {
952  return FindContinuousSpaceFromObject(obj, true) != nullptr;
953}
954
955bool Heap::IsValidContinuousSpaceObjectAddress(const mirror::Object* obj) const {
956  if (obj == nullptr || !IsAligned<kObjectAlignment>(obj)) {
957    return false;
958  }
959  for (const auto& space : continuous_spaces_) {
960    if (space->HasAddress(obj)) {
961      return true;
962    }
963  }
964  return false;
965}
966
967bool Heap::IsLiveObjectLocked(mirror::Object* obj, bool search_allocation_stack,
968                              bool search_live_stack, bool sorted) {
969  if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
970    return false;
971  }
972  if (bump_pointer_space_ != nullptr && bump_pointer_space_->HasAddress(obj)) {
973    mirror::Class* klass = obj->GetClass<kVerifyNone>();
974    if (obj == klass) {
975      // This case happens for java.lang.Class.
976      return true;
977    }
978    return VerifyClassClass(klass) && IsLiveObjectLocked(klass);
979  } else if (temp_space_ != nullptr && temp_space_->HasAddress(obj)) {
980    // If we are in the allocated region of the temp space, then we are probably live (e.g. during
981    // a GC). When a GC isn't running End() - Begin() is 0 which means no objects are contained.
982    return temp_space_->Contains(obj);
983  }
984  space::ContinuousSpace* c_space = FindContinuousSpaceFromObject(obj, true);
985  space::DiscontinuousSpace* d_space = nullptr;
986  if (c_space != nullptr) {
987    if (c_space->GetLiveBitmap()->Test(obj)) {
988      return true;
989    }
990  } else {
991    d_space = FindDiscontinuousSpaceFromObject(obj, true);
992    if (d_space != nullptr) {
993      if (d_space->GetLiveBitmap()->Test(obj)) {
994        return true;
995      }
996    }
997  }
998  // This is covering the allocation/live stack swapping that is done without mutators suspended.
999  for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
1000    if (i > 0) {
1001      NanoSleep(MsToNs(10));
1002    }
1003    if (search_allocation_stack) {
1004      if (sorted) {
1005        if (allocation_stack_->ContainsSorted(obj)) {
1006          return true;
1007        }
1008      } else if (allocation_stack_->Contains(obj)) {
1009        return true;
1010      }
1011    }
1012
1013    if (search_live_stack) {
1014      if (sorted) {
1015        if (live_stack_->ContainsSorted(obj)) {
1016          return true;
1017        }
1018      } else if (live_stack_->Contains(obj)) {
1019        return true;
1020      }
1021    }
1022  }
1023  // We need to check the bitmaps again since there is a race where we mark something as live and
1024  // then clear the stack containing it.
1025  if (c_space != nullptr) {
1026    if (c_space->GetLiveBitmap()->Test(obj)) {
1027      return true;
1028    }
1029  } else {
1030    d_space = FindDiscontinuousSpaceFromObject(obj, true);
1031    if (d_space != nullptr && d_space->GetLiveBitmap()->Test(obj)) {
1032      return true;
1033    }
1034  }
1035  return false;
1036}
1037
1038void Heap::DumpSpaces(std::ostream& stream) {
1039  for (const auto& space : continuous_spaces_) {
1040    accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap();
1041    accounting::ContinuousSpaceBitmap* mark_bitmap = space->GetMarkBitmap();
1042    stream << space << " " << *space << "\n";
1043    if (live_bitmap != nullptr) {
1044      stream << live_bitmap << " " << *live_bitmap << "\n";
1045    }
1046    if (mark_bitmap != nullptr) {
1047      stream << mark_bitmap << " " << *mark_bitmap << "\n";
1048    }
1049  }
1050  for (const auto& space : discontinuous_spaces_) {
1051    stream << space << " " << *space << "\n";
1052  }
1053}
1054
1055void Heap::VerifyObjectBody(mirror::Object* obj) {
1056  // Ignore early dawn of the universe verifications.
1057  if (UNLIKELY(static_cast<size_t>(num_bytes_allocated_.LoadRelaxed()) < 10 * KB)) {
1058    return;
1059  }
1060  CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
1061  mirror::Class* c = obj->GetFieldObject<mirror::Class, kVerifyNone>(mirror::Object::ClassOffset());
1062  CHECK(c != nullptr) << "Null class in object " << obj;
1063  CHECK(IsAligned<kObjectAlignment>(c)) << "Class " << c << " not aligned in object " << obj;
1064  CHECK(VerifyClassClass(c));
1065
1066  if (verify_object_mode_ > kVerifyObjectModeFast) {
1067    // Note: the bitmap tests below are racy since we don't hold the heap bitmap lock.
1068    if (!IsLiveObjectLocked(obj)) {
1069      DumpSpaces();
1070      LOG(FATAL) << "Object is dead: " << obj;
1071    }
1072  }
1073}
1074
1075void Heap::VerificationCallback(mirror::Object* obj, void* arg) {
1076  reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
1077}
1078
1079void Heap::VerifyHeap() {
1080  ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
1081  GetLiveBitmap()->Walk(Heap::VerificationCallback, this);
1082}
1083
1084void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) {
1085  // Use signed comparison since freed bytes can be negative when background compaction foreground
1086  // transitions occurs. This is caused by the moving objects from a bump pointer space to a
1087  // free list backed space typically increasing memory footprint due to padding and binning.
1088  DCHECK_LE(freed_bytes, static_cast<int64_t>(num_bytes_allocated_.LoadRelaxed()));
1089  // Note: This relies on 2s complement for handling negative freed_bytes.
1090  num_bytes_allocated_.FetchAndSubSequentiallyConsistent(static_cast<ssize_t>(freed_bytes));
1091  if (Runtime::Current()->HasStatsEnabled()) {
1092    RuntimeStats* thread_stats = Thread::Current()->GetStats();
1093    thread_stats->freed_objects += freed_objects;
1094    thread_stats->freed_bytes += freed_bytes;
1095    // TODO: Do this concurrently.
1096    RuntimeStats* global_stats = Runtime::Current()->GetStats();
1097    global_stats->freed_objects += freed_objects;
1098    global_stats->freed_bytes += freed_bytes;
1099  }
1100}
1101
1102mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator,
1103                                             size_t alloc_size, size_t* bytes_allocated,
1104                                             size_t* usable_size,
1105                                             mirror::Class** klass) {
1106  bool was_default_allocator = allocator == GetCurrentAllocator();
1107  DCHECK(klass != nullptr);
1108  StackHandleScope<1> hs(self);
1109  HandleWrapper<mirror::Class> h(hs.NewHandleWrapper(klass));
1110  klass = nullptr;  // Invalidate for safety.
1111  // The allocation failed. If the GC is running, block until it completes, and then retry the
1112  // allocation.
1113  collector::GcType last_gc = WaitForGcToComplete(kGcCauseForAlloc, self);
1114  if (last_gc != collector::kGcTypeNone) {
1115    // If we were the default allocator but the allocator changed while we were suspended,
1116    // abort the allocation.
1117    if (was_default_allocator && allocator != GetCurrentAllocator()) {
1118      return nullptr;
1119    }
1120    // A GC was in progress and we blocked, retry allocation now that memory has been freed.
1121    mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1122                                                     usable_size);
1123    if (ptr != nullptr) {
1124      return ptr;
1125    }
1126  }
1127
1128  collector::GcType tried_type = next_gc_type_;
1129  const bool gc_ran =
1130      CollectGarbageInternal(tried_type, kGcCauseForAlloc, false) != collector::kGcTypeNone;
1131  if (was_default_allocator && allocator != GetCurrentAllocator()) {
1132    return nullptr;
1133  }
1134  if (gc_ran) {
1135    mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1136                                                     usable_size);
1137    if (ptr != nullptr) {
1138      return ptr;
1139    }
1140  }
1141
1142  // Loop through our different Gc types and try to Gc until we get enough free memory.
1143  for (collector::GcType gc_type : gc_plan_) {
1144    if (gc_type == tried_type) {
1145      continue;
1146    }
1147    // Attempt to run the collector, if we succeed, re-try the allocation.
1148    const bool gc_ran =
1149        CollectGarbageInternal(gc_type, kGcCauseForAlloc, false) != collector::kGcTypeNone;
1150    if (was_default_allocator && allocator != GetCurrentAllocator()) {
1151      return nullptr;
1152    }
1153    if (gc_ran) {
1154      // Did we free sufficient memory for the allocation to succeed?
1155      mirror::Object* ptr = TryToAllocate<true, false>(self, allocator, alloc_size, bytes_allocated,
1156                                                       usable_size);
1157      if (ptr != nullptr) {
1158        return ptr;
1159      }
1160    }
1161  }
1162  // Allocations have failed after GCs;  this is an exceptional state.
1163  // Try harder, growing the heap if necessary.
1164  mirror::Object* ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated,
1165                                                  usable_size);
1166  if (ptr != nullptr) {
1167    return ptr;
1168  }
1169  // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
1170  // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
1171  // VM spec requires that all SoftReferences have been collected and cleared before throwing
1172  // OOME.
1173  VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size)
1174           << " allocation";
1175  // TODO: Run finalization, but this may cause more allocations to occur.
1176  // We don't need a WaitForGcToComplete here either.
1177  DCHECK(!gc_plan_.empty());
1178  CollectGarbageInternal(gc_plan_.back(), kGcCauseForAlloc, true);
1179  if (was_default_allocator && allocator != GetCurrentAllocator()) {
1180    return nullptr;
1181  }
1182  ptr = TryToAllocate<true, true>(self, allocator, alloc_size, bytes_allocated, usable_size);
1183  if (ptr == nullptr) {
1184    ThrowOutOfMemoryError(self, alloc_size, allocator == kAllocatorTypeLOS);
1185  }
1186  return ptr;
1187}
1188
1189void Heap::SetTargetHeapUtilization(float target) {
1190  DCHECK_GT(target, 0.0f);  // asserted in Java code
1191  DCHECK_LT(target, 1.0f);
1192  target_utilization_ = target;
1193}
1194
1195size_t Heap::GetObjectsAllocated() const {
1196  size_t total = 0;
1197  for (space::AllocSpace* space : alloc_spaces_) {
1198    total += space->GetObjectsAllocated();
1199  }
1200  return total;
1201}
1202
1203size_t Heap::GetObjectsAllocatedEver() const {
1204  return GetObjectsFreedEver() + GetObjectsAllocated();
1205}
1206
1207size_t Heap::GetBytesAllocatedEver() const {
1208  return GetBytesFreedEver() + GetBytesAllocated();
1209}
1210
1211class InstanceCounter {
1212 public:
1213  InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
1214      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1215      : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
1216  }
1217  static void Callback(mirror::Object* obj, void* arg)
1218      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1219    InstanceCounter* instance_counter = reinterpret_cast<InstanceCounter*>(arg);
1220    mirror::Class* instance_class = obj->GetClass();
1221    CHECK(instance_class != nullptr);
1222    for (size_t i = 0; i < instance_counter->classes_.size(); ++i) {
1223      if (instance_counter->use_is_assignable_from_) {
1224        if (instance_counter->classes_[i]->IsAssignableFrom(instance_class)) {
1225          ++instance_counter->counts_[i];
1226        }
1227      } else if (instance_class == instance_counter->classes_[i]) {
1228        ++instance_counter->counts_[i];
1229      }
1230    }
1231  }
1232
1233 private:
1234  const std::vector<mirror::Class*>& classes_;
1235  bool use_is_assignable_from_;
1236  uint64_t* const counts_;
1237  DISALLOW_COPY_AND_ASSIGN(InstanceCounter);
1238};
1239
1240void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from,
1241                          uint64_t* counts) {
1242  // Can't do any GC in this function since this may move classes.
1243  Thread* self = Thread::Current();
1244  auto* old_cause = self->StartAssertNoThreadSuspension("CountInstances");
1245  InstanceCounter counter(classes, use_is_assignable_from, counts);
1246  WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1247  VisitObjects(InstanceCounter::Callback, &counter);
1248  self->EndAssertNoThreadSuspension(old_cause);
1249}
1250
1251class InstanceCollector {
1252 public:
1253  InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
1254      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1255      : class_(c), max_count_(max_count), instances_(instances) {
1256  }
1257  static void Callback(mirror::Object* obj, void* arg)
1258      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1259    DCHECK(arg != nullptr);
1260    InstanceCollector* instance_collector = reinterpret_cast<InstanceCollector*>(arg);
1261    mirror::Class* instance_class = obj->GetClass();
1262    if (instance_class == instance_collector->class_) {
1263      if (instance_collector->max_count_ == 0 ||
1264          instance_collector->instances_.size() < instance_collector->max_count_) {
1265        instance_collector->instances_.push_back(obj);
1266      }
1267    }
1268  }
1269
1270 private:
1271  mirror::Class* class_;
1272  uint32_t max_count_;
1273  std::vector<mirror::Object*>& instances_;
1274  DISALLOW_COPY_AND_ASSIGN(InstanceCollector);
1275};
1276
1277void Heap::GetInstances(mirror::Class* c, int32_t max_count,
1278                        std::vector<mirror::Object*>& instances) {
1279  // Can't do any GC in this function since this may move classes.
1280  Thread* self = Thread::Current();
1281  auto* old_cause = self->StartAssertNoThreadSuspension("GetInstances");
1282  InstanceCollector collector(c, max_count, instances);
1283  WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1284  VisitObjects(&InstanceCollector::Callback, &collector);
1285  self->EndAssertNoThreadSuspension(old_cause);
1286}
1287
1288class ReferringObjectsFinder {
1289 public:
1290  ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1291                         std::vector<mirror::Object*>& referring_objects)
1292      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1293      : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1294  }
1295
1296  static void Callback(mirror::Object* obj, void* arg)
1297      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
1298    reinterpret_cast<ReferringObjectsFinder*>(arg)->operator()(obj);
1299  }
1300
1301  // For bitmap Visit.
1302  // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
1303  // annotalysis on visitors.
1304  void operator()(mirror::Object* o) const NO_THREAD_SAFETY_ANALYSIS {
1305    o->VisitReferences<true>(*this, VoidFunctor());
1306  }
1307
1308  // For Object::VisitReferences.
1309  void operator()(mirror::Object* obj, MemberOffset offset, bool /* is_static */) const
1310      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1311    mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
1312    if (ref == object_ && (max_count_ == 0 || referring_objects_.size() < max_count_)) {
1313      referring_objects_.push_back(obj);
1314    }
1315  }
1316
1317 private:
1318  mirror::Object* object_;
1319  uint32_t max_count_;
1320  std::vector<mirror::Object*>& referring_objects_;
1321  DISALLOW_COPY_AND_ASSIGN(ReferringObjectsFinder);
1322};
1323
1324void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count,
1325                               std::vector<mirror::Object*>& referring_objects) {
1326  // Can't do any GC in this function since this may move the object o.
1327  Thread* self = Thread::Current();
1328  auto* old_cause = self->StartAssertNoThreadSuspension("GetReferringObjects");
1329  ReferringObjectsFinder finder(o, max_count, referring_objects);
1330  WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
1331  VisitObjects(&ReferringObjectsFinder::Callback, &finder);
1332  self->EndAssertNoThreadSuspension(old_cause);
1333}
1334
1335void Heap::CollectGarbage(bool clear_soft_references) {
1336  // Even if we waited for a GC we still need to do another GC since weaks allocated during the
1337  // last GC will not have necessarily been cleared.
1338  CollectGarbageInternal(gc_plan_.back(), kGcCauseExplicit, clear_soft_references);
1339}
1340
1341void Heap::TransitionCollector(CollectorType collector_type) {
1342  if (collector_type == collector_type_) {
1343    return;
1344  }
1345  VLOG(heap) << "TransitionCollector: " << static_cast<int>(collector_type_)
1346             << " -> " << static_cast<int>(collector_type);
1347  uint64_t start_time = NanoTime();
1348  uint32_t before_allocated = num_bytes_allocated_.LoadSequentiallyConsistent();
1349  Runtime* const runtime = Runtime::Current();
1350  ThreadList* const tl = runtime->GetThreadList();
1351  Thread* const self = Thread::Current();
1352  ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
1353  Locks::mutator_lock_->AssertNotHeld(self);
1354  const bool copying_transition =
1355      IsMovingGc(background_collector_type_) || IsMovingGc(foreground_collector_type_);
1356  // Busy wait until we can GC (StartGC can fail if we have a non-zero
1357  // compacting_gc_disable_count_, this should rarely occurs).
1358  for (;;) {
1359    {
1360      ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
1361      MutexLock mu(self, *gc_complete_lock_);
1362      // Ensure there is only one GC at a time.
1363      WaitForGcToCompleteLocked(kGcCauseCollectorTransition, self);
1364      // If someone else beat us to it and changed the collector before we could, exit.
1365      // This is safe to do before the suspend all since we set the collector_type_running_ before
1366      // we exit the loop. If another thread attempts to do the heap transition before we exit,
1367      // then it would get blocked on WaitForGcToCompleteLocked.
1368      if (collector_type == collector_type_) {
1369        return;
1370      }
1371      // GC can be disabled if someone has a used GetPrimitiveArrayCritical but not yet released.
1372      if (!copying_transition || disable_moving_gc_count_ == 0) {
1373        // TODO: Not hard code in semi-space collector?
1374        collector_type_running_ = copying_transition ? kCollectorTypeSS : collector_type;
1375        break;
1376      }
1377    }
1378    usleep(1000);
1379  }
1380  if (runtime->IsShuttingDown(self)) {
1381    // Don't allow heap transitions to happen if the runtime is shutting down since these can
1382    // cause objects to get finalized.
1383    FinishGC(self, collector::kGcTypeNone);
1384    return;
1385  }
1386  tl->SuspendAll();
1387  switch (collector_type) {
1388    case kCollectorTypeSS:
1389      // Fall-through.
1390    case kCollectorTypeGSS: {
1391      if (!IsMovingGc(collector_type_)) {
1392        // We are transitioning from non moving GC -> moving GC, since we copied from the bump
1393        // pointer space last transition it will be protected.
1394        bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1395        Compact(bump_pointer_space_, main_space_);
1396        // Remove the main space so that we don't try to trim it, this doens't work for debug
1397        // builds since RosAlloc attempts to read the magic number from a protected page.
1398        RemoveSpace(main_space_);
1399      }
1400      break;
1401    }
1402    case kCollectorTypeMS:
1403      // Fall through.
1404    case kCollectorTypeCMS: {
1405      if (IsMovingGc(collector_type_)) {
1406        // Compact to the main space from the bump pointer space, don't need to swap semispaces.
1407        AddSpace(main_space_);
1408        main_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1409        Compact(main_space_, bump_pointer_space_);
1410      }
1411      break;
1412    }
1413    default: {
1414      LOG(FATAL) << "Attempted to transition to invalid collector type "
1415                 << static_cast<size_t>(collector_type);
1416      break;
1417    }
1418  }
1419  ChangeCollector(collector_type);
1420  tl->ResumeAll();
1421  // Can't call into java code with all threads suspended.
1422  reference_processor_.EnqueueClearedReferences(self);
1423  uint64_t duration = NanoTime() - start_time;
1424  GrowForUtilization(semi_space_collector_);
1425  FinishGC(self, collector::kGcTypeFull);
1426  int32_t after_allocated = num_bytes_allocated_.LoadSequentiallyConsistent();
1427  int32_t delta_allocated = before_allocated - after_allocated;
1428  std::string saved_str;
1429  if (delta_allocated >= 0) {
1430    saved_str = " saved at least " + PrettySize(delta_allocated);
1431  } else {
1432    saved_str = " expanded " + PrettySize(-delta_allocated);
1433  }
1434  LOG(INFO) << "Heap transition to " << process_state_ << " took "
1435      << PrettyDuration(duration) << saved_str;
1436}
1437
1438void Heap::ChangeCollector(CollectorType collector_type) {
1439  // TODO: Only do this with all mutators suspended to avoid races.
1440  if (collector_type != collector_type_) {
1441    if (collector_type == kCollectorTypeMC) {
1442      // Don't allow mark compact unless support is compiled in.
1443      CHECK(kMarkCompactSupport);
1444    }
1445    collector_type_ = collector_type;
1446    gc_plan_.clear();
1447    switch (collector_type_) {
1448      case kCollectorTypeCC:  // Fall-through.
1449      case kCollectorTypeMC:  // Fall-through.
1450      case kCollectorTypeSS:  // Fall-through.
1451      case kCollectorTypeGSS: {
1452        gc_plan_.push_back(collector::kGcTypeFull);
1453        if (use_tlab_) {
1454          ChangeAllocator(kAllocatorTypeTLAB);
1455        } else {
1456          ChangeAllocator(kAllocatorTypeBumpPointer);
1457        }
1458        break;
1459      }
1460      case kCollectorTypeMS: {
1461        gc_plan_.push_back(collector::kGcTypeSticky);
1462        gc_plan_.push_back(collector::kGcTypePartial);
1463        gc_plan_.push_back(collector::kGcTypeFull);
1464        ChangeAllocator(kUseRosAlloc ? kAllocatorTypeRosAlloc : kAllocatorTypeDlMalloc);
1465        break;
1466      }
1467      case kCollectorTypeCMS: {
1468        gc_plan_.push_back(collector::kGcTypeSticky);
1469        gc_plan_.push_back(collector::kGcTypePartial);
1470        gc_plan_.push_back(collector::kGcTypeFull);
1471        ChangeAllocator(kUseRosAlloc ? kAllocatorTypeRosAlloc : kAllocatorTypeDlMalloc);
1472        break;
1473      }
1474      default: {
1475        LOG(FATAL) << "Unimplemented";
1476      }
1477    }
1478    if (IsGcConcurrent()) {
1479      concurrent_start_bytes_ =
1480          std::max(max_allowed_footprint_, kMinConcurrentRemainingBytes) - kMinConcurrentRemainingBytes;
1481    } else {
1482      concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
1483    }
1484  }
1485}
1486
1487// Special compacting collector which uses sub-optimal bin packing to reduce zygote space size.
1488class ZygoteCompactingCollector FINAL : public collector::SemiSpace {
1489 public:
1490  explicit ZygoteCompactingCollector(gc::Heap* heap) : SemiSpace(heap, false, "zygote collector"),
1491      bin_live_bitmap_(nullptr), bin_mark_bitmap_(nullptr) {
1492  }
1493
1494  void BuildBins(space::ContinuousSpace* space) {
1495    bin_live_bitmap_ = space->GetLiveBitmap();
1496    bin_mark_bitmap_ = space->GetMarkBitmap();
1497    BinContext context;
1498    context.prev_ = reinterpret_cast<uintptr_t>(space->Begin());
1499    context.collector_ = this;
1500    WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
1501    // Note: This requires traversing the space in increasing order of object addresses.
1502    bin_live_bitmap_->Walk(Callback, reinterpret_cast<void*>(&context));
1503    // Add the last bin which spans after the last object to the end of the space.
1504    AddBin(reinterpret_cast<uintptr_t>(space->End()) - context.prev_, context.prev_);
1505  }
1506
1507 private:
1508  struct BinContext {
1509    uintptr_t prev_;  // The end of the previous object.
1510    ZygoteCompactingCollector* collector_;
1511  };
1512  // Maps from bin sizes to locations.
1513  std::multimap<size_t, uintptr_t> bins_;
1514  // Live bitmap of the space which contains the bins.
1515  accounting::ContinuousSpaceBitmap* bin_live_bitmap_;
1516  // Mark bitmap of the space which contains the bins.
1517  accounting::ContinuousSpaceBitmap* bin_mark_bitmap_;
1518
1519  static void Callback(mirror::Object* obj, void* arg)
1520      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1521    DCHECK(arg != nullptr);
1522    BinContext* context = reinterpret_cast<BinContext*>(arg);
1523    ZygoteCompactingCollector* collector = context->collector_;
1524    uintptr_t object_addr = reinterpret_cast<uintptr_t>(obj);
1525    size_t bin_size = object_addr - context->prev_;
1526    // Add the bin consisting of the end of the previous object to the start of the current object.
1527    collector->AddBin(bin_size, context->prev_);
1528    context->prev_ = object_addr + RoundUp(obj->SizeOf(), kObjectAlignment);
1529  }
1530
1531  void AddBin(size_t size, uintptr_t position) {
1532    if (size != 0) {
1533      bins_.insert(std::make_pair(size, position));
1534    }
1535  }
1536
1537  virtual bool ShouldSweepSpace(space::ContinuousSpace* space) const {
1538    // Don't sweep any spaces since we probably blasted the internal accounting of the free list
1539    // allocator.
1540    return false;
1541  }
1542
1543  virtual mirror::Object* MarkNonForwardedObject(mirror::Object* obj)
1544      EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
1545    size_t object_size = RoundUp(obj->SizeOf(), kObjectAlignment);
1546    mirror::Object* forward_address;
1547    // Find the smallest bin which we can move obj in.
1548    auto it = bins_.lower_bound(object_size);
1549    if (it == bins_.end()) {
1550      // No available space in the bins, place it in the target space instead (grows the zygote
1551      // space).
1552      size_t bytes_allocated;
1553      forward_address = to_space_->Alloc(self_, object_size, &bytes_allocated, nullptr);
1554      if (to_space_live_bitmap_ != nullptr) {
1555        to_space_live_bitmap_->Set(forward_address);
1556      } else {
1557        GetHeap()->GetNonMovingSpace()->GetLiveBitmap()->Set(forward_address);
1558        GetHeap()->GetNonMovingSpace()->GetMarkBitmap()->Set(forward_address);
1559      }
1560    } else {
1561      size_t size = it->first;
1562      uintptr_t pos = it->second;
1563      bins_.erase(it);  // Erase the old bin which we replace with the new smaller bin.
1564      forward_address = reinterpret_cast<mirror::Object*>(pos);
1565      // Set the live and mark bits so that sweeping system weaks works properly.
1566      bin_live_bitmap_->Set(forward_address);
1567      bin_mark_bitmap_->Set(forward_address);
1568      DCHECK_GE(size, object_size);
1569      AddBin(size - object_size, pos + object_size);  // Add a new bin with the remaining space.
1570    }
1571    // Copy the object over to its new location.
1572    memcpy(reinterpret_cast<void*>(forward_address), obj, object_size);
1573    if (kUseBakerOrBrooksReadBarrier) {
1574      obj->AssertReadBarrierPointer();
1575      if (kUseBrooksReadBarrier) {
1576        DCHECK_EQ(forward_address->GetReadBarrierPointer(), obj);
1577        forward_address->SetReadBarrierPointer(forward_address);
1578      }
1579      forward_address->AssertReadBarrierPointer();
1580    }
1581    return forward_address;
1582  }
1583};
1584
1585void Heap::UnBindBitmaps() {
1586  TimingLogger::ScopedTiming t("UnBindBitmaps", GetCurrentGcIteration()->GetTimings());
1587  for (const auto& space : GetContinuousSpaces()) {
1588    if (space->IsContinuousMemMapAllocSpace()) {
1589      space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace();
1590      if (alloc_space->HasBoundBitmaps()) {
1591        alloc_space->UnBindBitmaps();
1592      }
1593    }
1594  }
1595}
1596
1597void Heap::PreZygoteFork() {
1598  CollectGarbageInternal(collector::kGcTypeFull, kGcCauseBackground, false);
1599  Thread* self = Thread::Current();
1600  MutexLock mu(self, zygote_creation_lock_);
1601  // Try to see if we have any Zygote spaces.
1602  if (have_zygote_space_) {
1603    return;
1604  }
1605  VLOG(heap) << "Starting PreZygoteFork";
1606  // Trim the pages at the end of the non moving space.
1607  non_moving_space_->Trim();
1608  // The end of the non-moving space may be protected, unprotect it so that we can copy the zygote
1609  // there.
1610  non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1611  // Change the collector to the post zygote one.
1612  if (kCompactZygote) {
1613    DCHECK(semi_space_collector_ != nullptr);
1614    // Temporarily disable rosalloc verification because the zygote
1615    // compaction will mess up the rosalloc internal metadata.
1616    ScopedDisableRosAllocVerification disable_rosalloc_verif(this);
1617    ZygoteCompactingCollector zygote_collector(this);
1618    zygote_collector.BuildBins(non_moving_space_);
1619    // Create a new bump pointer space which we will compact into.
1620    space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1621                                         non_moving_space_->Limit());
1622    // Compact the bump pointer space to a new zygote bump pointer space.
1623    bool reset_main_space = false;
1624    if (IsMovingGc(collector_type_)) {
1625      zygote_collector.SetFromSpace(bump_pointer_space_);
1626    } else {
1627      CHECK(main_space_ != nullptr);
1628      // Copy from the main space.
1629      zygote_collector.SetFromSpace(main_space_);
1630      reset_main_space = true;
1631    }
1632    zygote_collector.SetToSpace(&target_space);
1633    zygote_collector.SetSwapSemiSpaces(false);
1634    zygote_collector.Run(kGcCauseCollectorTransition, false);
1635    if (reset_main_space) {
1636      main_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1637      madvise(main_space_->Begin(), main_space_->Capacity(), MADV_DONTNEED);
1638      MemMap* mem_map = main_space_->ReleaseMemMap();
1639      RemoveSpace(main_space_);
1640      space::Space* old_main_space = main_space_;
1641      CreateMainMallocSpace(mem_map, kDefaultInitialSize, mem_map->Size(), mem_map->Size());
1642      delete old_main_space;
1643      AddSpace(main_space_);
1644    } else {
1645      bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1646    }
1647    if (temp_space_ != nullptr) {
1648      CHECK(temp_space_->IsEmpty());
1649    }
1650    total_objects_freed_ever_ += GetCurrentGcIteration()->GetFreedObjects();
1651    total_bytes_freed_ever_ += GetCurrentGcIteration()->GetFreedBytes();
1652    // Update the end and write out image.
1653    non_moving_space_->SetEnd(target_space.End());
1654    non_moving_space_->SetLimit(target_space.Limit());
1655    VLOG(heap) << "Zygote space size " << non_moving_space_->Size() << " bytes";
1656  }
1657  ChangeCollector(foreground_collector_type_);
1658  // Save the old space so that we can remove it after we complete creating the zygote space.
1659  space::MallocSpace* old_alloc_space = non_moving_space_;
1660  // Turn the current alloc space into a zygote space and obtain the new alloc space composed of
1661  // the remaining available space.
1662  // Remove the old space before creating the zygote space since creating the zygote space sets
1663  // the old alloc space's bitmaps to nullptr.
1664  RemoveSpace(old_alloc_space);
1665  if (collector::SemiSpace::kUseRememberedSet) {
1666    // Sanity bound check.
1667    FindRememberedSetFromSpace(old_alloc_space)->AssertAllDirtyCardsAreWithinSpace();
1668    // Remove the remembered set for the now zygote space (the old
1669    // non-moving space). Note now that we have compacted objects into
1670    // the zygote space, the data in the remembered set is no longer
1671    // needed. The zygote space will instead have a mod-union table
1672    // from this point on.
1673    RemoveRememberedSet(old_alloc_space);
1674  }
1675  space::ZygoteSpace* zygote_space = old_alloc_space->CreateZygoteSpace("alloc space",
1676                                                                        low_memory_mode_,
1677                                                                        &non_moving_space_);
1678  delete old_alloc_space;
1679  CHECK(zygote_space != nullptr) << "Failed creating zygote space";
1680  AddSpace(zygote_space);
1681  non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
1682  AddSpace(non_moving_space_);
1683  have_zygote_space_ = true;
1684  // Enable large object space allocations.
1685  large_object_threshold_ = kDefaultLargeObjectThreshold;
1686  // Create the zygote space mod union table.
1687  accounting::ModUnionTable* mod_union_table =
1688      new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);
1689  CHECK(mod_union_table != nullptr) << "Failed to create zygote space mod-union table";
1690  AddModUnionTable(mod_union_table);
1691  if (collector::SemiSpace::kUseRememberedSet) {
1692    // Add a new remembered set for the post-zygote non-moving space.
1693    accounting::RememberedSet* post_zygote_non_moving_space_rem_set =
1694        new accounting::RememberedSet("Post-zygote non-moving space remembered set", this,
1695                                      non_moving_space_);
1696    CHECK(post_zygote_non_moving_space_rem_set != nullptr)
1697        << "Failed to create post-zygote non-moving space remembered set";
1698    AddRememberedSet(post_zygote_non_moving_space_rem_set);
1699  }
1700}
1701
1702void Heap::FlushAllocStack() {
1703  MarkAllocStackAsLive(allocation_stack_.get());
1704  allocation_stack_->Reset();
1705}
1706
1707void Heap::MarkAllocStack(accounting::ContinuousSpaceBitmap* bitmap1,
1708                          accounting::ContinuousSpaceBitmap* bitmap2,
1709                          accounting::LargeObjectBitmap* large_objects,
1710                          accounting::ObjectStack* stack) {
1711  DCHECK(bitmap1 != nullptr);
1712  DCHECK(bitmap2 != nullptr);
1713  mirror::Object** limit = stack->End();
1714  for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
1715    const mirror::Object* obj = *it;
1716    if (!kUseThreadLocalAllocationStack || obj != nullptr) {
1717      if (bitmap1->HasAddress(obj)) {
1718        bitmap1->Set(obj);
1719      } else if (bitmap2->HasAddress(obj)) {
1720        bitmap2->Set(obj);
1721      } else {
1722        large_objects->Set(obj);
1723      }
1724    }
1725  }
1726}
1727
1728void Heap::SwapSemiSpaces() {
1729  CHECK(bump_pointer_space_ != nullptr);
1730  CHECK(temp_space_ != nullptr);
1731  std::swap(bump_pointer_space_, temp_space_);
1732}
1733
1734void Heap::Compact(space::ContinuousMemMapAllocSpace* target_space,
1735                   space::ContinuousMemMapAllocSpace* source_space) {
1736  CHECK(kMovingCollector);
1737  if (target_space != source_space) {
1738    // Don't swap spaces since this isn't a typical semi space collection.
1739    semi_space_collector_->SetSwapSemiSpaces(false);
1740    semi_space_collector_->SetFromSpace(source_space);
1741    semi_space_collector_->SetToSpace(target_space);
1742    semi_space_collector_->Run(kGcCauseCollectorTransition, false);
1743  } else {
1744    CHECK(target_space->IsBumpPointerSpace())
1745        << "In-place compaction is only supported for bump pointer spaces";
1746    mark_compact_collector_->SetSpace(target_space->AsBumpPointerSpace());
1747    mark_compact_collector_->Run(kGcCauseCollectorTransition, false);
1748  }
1749}
1750
1751collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause,
1752                                               bool clear_soft_references) {
1753  Thread* self = Thread::Current();
1754  Runtime* runtime = Runtime::Current();
1755  // If the heap can't run the GC, silently fail and return that no GC was run.
1756  switch (gc_type) {
1757    case collector::kGcTypePartial: {
1758      if (!have_zygote_space_) {
1759        return collector::kGcTypeNone;
1760      }
1761      break;
1762    }
1763    default: {
1764      // Other GC types don't have any special cases which makes them not runnable. The main case
1765      // here is full GC.
1766    }
1767  }
1768  ScopedThreadStateChange tsc(self, kWaitingPerformingGc);
1769  Locks::mutator_lock_->AssertNotHeld(self);
1770  if (self->IsHandlingStackOverflow()) {
1771    LOG(WARNING) << "Performing GC on a thread that is handling a stack overflow.";
1772  }
1773  bool compacting_gc;
1774  {
1775    gc_complete_lock_->AssertNotHeld(self);
1776    ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
1777    MutexLock mu(self, *gc_complete_lock_);
1778    // Ensure there is only one GC at a time.
1779    WaitForGcToCompleteLocked(gc_cause, self);
1780    compacting_gc = IsMovingGc(collector_type_);
1781    // GC can be disabled if someone has a used GetPrimitiveArrayCritical.
1782    if (compacting_gc && disable_moving_gc_count_ != 0) {
1783      LOG(WARNING) << "Skipping GC due to disable moving GC count " << disable_moving_gc_count_;
1784      return collector::kGcTypeNone;
1785    }
1786    collector_type_running_ = collector_type_;
1787  }
1788
1789  if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
1790    ++runtime->GetStats()->gc_for_alloc_count;
1791    ++self->GetStats()->gc_for_alloc_count;
1792  }
1793  uint64_t gc_start_time_ns = NanoTime();
1794  uint64_t gc_start_size = GetBytesAllocated();
1795  // Approximate allocation rate in bytes / second.
1796  uint64_t ms_delta = NsToMs(gc_start_time_ns - last_gc_time_ns_);
1797  // Back to back GCs can cause 0 ms of wait time in between GC invocations.
1798  if (LIKELY(ms_delta != 0)) {
1799    allocation_rate_ = ((gc_start_size - last_gc_size_) * 1000) / ms_delta;
1800    VLOG(heap) << "Allocation rate: " << PrettySize(allocation_rate_) << "/s";
1801  }
1802
1803  DCHECK_LT(gc_type, collector::kGcTypeMax);
1804  DCHECK_NE(gc_type, collector::kGcTypeNone);
1805
1806  collector::GarbageCollector* collector = nullptr;
1807  // TODO: Clean this up.
1808  if (compacting_gc) {
1809    DCHECK(current_allocator_ == kAllocatorTypeBumpPointer ||
1810           current_allocator_ == kAllocatorTypeTLAB);
1811    switch (collector_type_) {
1812      case kCollectorTypeSS:
1813        // Fall-through.
1814      case kCollectorTypeGSS:
1815        semi_space_collector_->SetFromSpace(bump_pointer_space_);
1816        semi_space_collector_->SetToSpace(temp_space_);
1817        semi_space_collector_->SetSwapSemiSpaces(true);
1818        collector = semi_space_collector_;
1819        break;
1820      case kCollectorTypeCC:
1821        collector = concurrent_copying_collector_;
1822        break;
1823      case kCollectorTypeMC:
1824        mark_compact_collector_->SetSpace(bump_pointer_space_);
1825        collector = mark_compact_collector_;
1826        break;
1827      default:
1828        LOG(FATAL) << "Invalid collector type " << static_cast<size_t>(collector_type_);
1829    }
1830    if (collector != mark_compact_collector_) {
1831      temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1832      CHECK(temp_space_->IsEmpty());
1833    }
1834    gc_type = collector::kGcTypeFull;  // TODO: Not hard code this in.
1835  } else if (current_allocator_ == kAllocatorTypeRosAlloc ||
1836      current_allocator_ == kAllocatorTypeDlMalloc) {
1837    collector = FindCollectorByGcType(gc_type);
1838  } else {
1839    LOG(FATAL) << "Invalid current allocator " << current_allocator_;
1840  }
1841  CHECK(collector != nullptr)
1842      << "Could not find garbage collector with collector_type="
1843      << static_cast<size_t>(collector_type_) << " and gc_type=" << gc_type;
1844  collector->Run(gc_cause, clear_soft_references || runtime->IsZygote());
1845  total_objects_freed_ever_ += GetCurrentGcIteration()->GetFreedObjects();
1846  total_bytes_freed_ever_ += GetCurrentGcIteration()->GetFreedBytes();
1847  RequestHeapTrim();
1848  // Enqueue cleared references.
1849  reference_processor_.EnqueueClearedReferences(self);
1850  // Grow the heap so that we know when to perform the next GC.
1851  GrowForUtilization(collector);
1852  const size_t duration = GetCurrentGcIteration()->GetDurationNs();
1853  const std::vector<uint64_t>& pause_times = GetCurrentGcIteration()->GetPauseTimes();
1854  // Print the GC if it is an explicit GC (e.g. Runtime.gc()) or a slow GC
1855  // (mutator time blocked >= long_pause_log_threshold_).
1856  bool log_gc = gc_cause == kGcCauseExplicit;
1857  if (!log_gc && CareAboutPauseTimes()) {
1858    // GC for alloc pauses the allocating thread, so consider it as a pause.
1859    log_gc = duration > long_gc_log_threshold_ ||
1860        (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
1861    for (uint64_t pause : pause_times) {
1862      log_gc = log_gc || pause >= long_pause_log_threshold_;
1863    }
1864  }
1865  if (log_gc) {
1866    const size_t percent_free = GetPercentFree();
1867    const size_t current_heap_size = GetBytesAllocated();
1868    const size_t total_memory = GetTotalMemory();
1869    std::ostringstream pause_string;
1870    for (size_t i = 0; i < pause_times.size(); ++i) {
1871        pause_string << PrettyDuration((pause_times[i] / 1000) * 1000)
1872                     << ((i != pause_times.size() - 1) ? "," : "");
1873    }
1874    LOG(INFO) << gc_cause << " " << collector->GetName()
1875              << " GC freed "  << current_gc_iteration_.GetFreedObjects() << "("
1876              << PrettySize(current_gc_iteration_.GetFreedBytes()) << ") AllocSpace objects, "
1877              << current_gc_iteration_.GetFreedLargeObjects() << "("
1878              << PrettySize(current_gc_iteration_.GetFreedLargeObjectBytes()) << ") LOS objects, "
1879              << percent_free << "% free, " << PrettySize(current_heap_size) << "/"
1880              << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
1881              << " total " << PrettyDuration((duration / 1000) * 1000);
1882    VLOG(heap) << ConstDumpable<TimingLogger>(*current_gc_iteration_.GetTimings());
1883  }
1884  FinishGC(self, gc_type);
1885  // Inform DDMS that a GC completed.
1886  Dbg::GcDidFinish();
1887  return gc_type;
1888}
1889
1890void Heap::FinishGC(Thread* self, collector::GcType gc_type) {
1891  MutexLock mu(self, *gc_complete_lock_);
1892  collector_type_running_ = kCollectorTypeNone;
1893  if (gc_type != collector::kGcTypeNone) {
1894    last_gc_type_ = gc_type;
1895  }
1896  // Wake anyone who may have been waiting for the GC to complete.
1897  gc_complete_cond_->Broadcast(self);
1898}
1899
1900static void RootMatchesObjectVisitor(mirror::Object** root, void* arg, uint32_t /*thread_id*/,
1901                                     RootType /*root_type*/) {
1902  mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
1903  if (*root == obj) {
1904    LOG(INFO) << "Object " << obj << " is a root";
1905  }
1906}
1907
1908class ScanVisitor {
1909 public:
1910  void operator()(const mirror::Object* obj) const {
1911    LOG(ERROR) << "Would have rescanned object " << obj;
1912  }
1913};
1914
1915// Verify a reference from an object.
1916class VerifyReferenceVisitor {
1917 public:
1918  explicit VerifyReferenceVisitor(Heap* heap, Atomic<size_t>* fail_count, bool verify_referent)
1919      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
1920      : heap_(heap), fail_count_(fail_count), verify_referent_(verify_referent) {}
1921
1922  size_t GetFailureCount() const {
1923    return fail_count_->LoadSequentiallyConsistent();
1924  }
1925
1926  void operator()(mirror::Class* klass, mirror::Reference* ref) const
1927      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1928    if (verify_referent_) {
1929      VerifyReference(ref, ref->GetReferent(), mirror::Reference::ReferentOffset());
1930    }
1931  }
1932
1933  void operator()(mirror::Object* obj, MemberOffset offset, bool /*is_static*/) const
1934      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1935    VerifyReference(obj, obj->GetFieldObject<mirror::Object>(offset), offset);
1936  }
1937
1938  bool IsLive(mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
1939    return heap_->IsLiveObjectLocked(obj, true, false, true);
1940  }
1941
1942  static void VerifyRootCallback(mirror::Object** root, void* arg, uint32_t thread_id,
1943                                 RootType root_type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1944    VerifyReferenceVisitor* visitor = reinterpret_cast<VerifyReferenceVisitor*>(arg);
1945    if (!visitor->VerifyReference(nullptr, *root, MemberOffset(0))) {
1946      LOG(ERROR) << "Root " << *root << " is dead with type " << PrettyTypeOf(*root)
1947          << " thread_id= " << thread_id << " root_type= " << root_type;
1948    }
1949  }
1950
1951 private:
1952  // TODO: Fix the no thread safety analysis.
1953  // Returns false on failure.
1954  bool VerifyReference(mirror::Object* obj, mirror::Object* ref, MemberOffset offset) const
1955      NO_THREAD_SAFETY_ANALYSIS {
1956    if (ref == nullptr || IsLive(ref)) {
1957      // Verify that the reference is live.
1958      return true;
1959    }
1960    if (fail_count_->FetchAndAddSequentiallyConsistent(1) == 0) {
1961      // Print message on only on first failure to prevent spam.
1962      LOG(ERROR) << "!!!!!!!!!!!!!!Heap corruption detected!!!!!!!!!!!!!!!!!!!";
1963    }
1964    if (obj != nullptr) {
1965      // Only do this part for non roots.
1966      accounting::CardTable* card_table = heap_->GetCardTable();
1967      accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
1968      accounting::ObjectStack* live_stack = heap_->live_stack_.get();
1969      byte* card_addr = card_table->CardFromAddr(obj);
1970      LOG(ERROR) << "Object " << obj << " references dead object " << ref << " at offset "
1971                 << offset << "\n card value = " << static_cast<int>(*card_addr);
1972      if (heap_->IsValidObjectAddress(obj->GetClass())) {
1973        LOG(ERROR) << "Obj type " << PrettyTypeOf(obj);
1974      } else {
1975        LOG(ERROR) << "Object " << obj << " class(" << obj->GetClass() << ") not a heap address";
1976      }
1977
1978      // Attmept to find the class inside of the recently freed objects.
1979      space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
1980      if (ref_space != nullptr && ref_space->IsMallocSpace()) {
1981        space::MallocSpace* space = ref_space->AsMallocSpace();
1982        mirror::Class* ref_class = space->FindRecentFreedObject(ref);
1983        if (ref_class != nullptr) {
1984          LOG(ERROR) << "Reference " << ref << " found as a recently freed object with class "
1985                     << PrettyClass(ref_class);
1986        } else {
1987          LOG(ERROR) << "Reference " << ref << " not found as a recently freed object";
1988        }
1989      }
1990
1991      if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
1992          ref->GetClass()->IsClass()) {
1993        LOG(ERROR) << "Ref type " << PrettyTypeOf(ref);
1994      } else {
1995        LOG(ERROR) << "Ref " << ref << " class(" << ref->GetClass()
1996                   << ") is not a valid heap address";
1997      }
1998
1999      card_table->CheckAddrIsInCardTable(reinterpret_cast<const byte*>(obj));
2000      void* cover_begin = card_table->AddrFromCard(card_addr);
2001      void* cover_end = reinterpret_cast<void*>(reinterpret_cast<size_t>(cover_begin) +
2002          accounting::CardTable::kCardSize);
2003      LOG(ERROR) << "Card " << reinterpret_cast<void*>(card_addr) << " covers " << cover_begin
2004          << "-" << cover_end;
2005      accounting::ContinuousSpaceBitmap* bitmap =
2006          heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
2007
2008      if (bitmap == nullptr) {
2009        LOG(ERROR) << "Object " << obj << " has no bitmap";
2010        if (!VerifyClassClass(obj->GetClass())) {
2011          LOG(ERROR) << "Object " << obj << " failed class verification!";
2012        }
2013      } else {
2014        // Print out how the object is live.
2015        if (bitmap->Test(obj)) {
2016          LOG(ERROR) << "Object " << obj << " found in live bitmap";
2017        }
2018        if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) {
2019          LOG(ERROR) << "Object " << obj << " found in allocation stack";
2020        }
2021        if (live_stack->Contains(const_cast<mirror::Object*>(obj))) {
2022          LOG(ERROR) << "Object " << obj << " found in live stack";
2023        }
2024        if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) {
2025          LOG(ERROR) << "Ref " << ref << " found in allocation stack";
2026        }
2027        if (live_stack->Contains(const_cast<mirror::Object*>(ref))) {
2028          LOG(ERROR) << "Ref " << ref << " found in live stack";
2029        }
2030        // Attempt to see if the card table missed the reference.
2031        ScanVisitor scan_visitor;
2032        byte* byte_cover_begin = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
2033        card_table->Scan(bitmap, byte_cover_begin,
2034                         byte_cover_begin + accounting::CardTable::kCardSize, scan_visitor);
2035      }
2036
2037      // Search to see if any of the roots reference our object.
2038      void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj));
2039      Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg);
2040
2041      // Search to see if any of the roots reference our reference.
2042      arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
2043      Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg);
2044    }
2045    return false;
2046  }
2047
2048  Heap* const heap_;
2049  Atomic<size_t>* const fail_count_;
2050  const bool verify_referent_;
2051};
2052
2053// Verify all references within an object, for use with HeapBitmap::Visit.
2054class VerifyObjectVisitor {
2055 public:
2056  explicit VerifyObjectVisitor(Heap* heap, Atomic<size_t>* fail_count, bool verify_referent)
2057      : heap_(heap), fail_count_(fail_count), verify_referent_(verify_referent) {
2058  }
2059
2060  void operator()(mirror::Object* obj) const
2061      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
2062    // Note: we are verifying the references in obj but not obj itself, this is because obj must
2063    // be live or else how did we find it in the live bitmap?
2064    VerifyReferenceVisitor visitor(heap_, fail_count_, verify_referent_);
2065    // The class doesn't count as a reference but we should verify it anyways.
2066    obj->VisitReferences<true>(visitor, visitor);
2067  }
2068
2069  static void VisitCallback(mirror::Object* obj, void* arg)
2070      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
2071    VerifyObjectVisitor* visitor = reinterpret_cast<VerifyObjectVisitor*>(arg);
2072    visitor->operator()(obj);
2073  }
2074
2075  size_t GetFailureCount() const {
2076    return fail_count_->LoadSequentiallyConsistent();
2077  }
2078
2079 private:
2080  Heap* const heap_;
2081  Atomic<size_t>* const fail_count_;
2082  const bool verify_referent_;
2083};
2084
2085void Heap::PushOnAllocationStackWithInternalGC(Thread* self, mirror::Object** obj) {
2086  // Slow path, the allocation stack push back must have already failed.
2087  DCHECK(!allocation_stack_->AtomicPushBack(*obj));
2088  do {
2089    // TODO: Add handle VerifyObject.
2090    StackHandleScope<1> hs(self);
2091    HandleWrapper<mirror::Object> wrapper(hs.NewHandleWrapper(obj));
2092    // Push our object into the reserve region of the allocaiton stack. This is only required due
2093    // to heap verification requiring that roots are live (either in the live bitmap or in the
2094    // allocation stack).
2095    CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(*obj));
2096    CollectGarbageInternal(collector::kGcTypeSticky, kGcCauseForAlloc, false);
2097  } while (!allocation_stack_->AtomicPushBack(*obj));
2098}
2099
2100void Heap::PushOnThreadLocalAllocationStackWithInternalGC(Thread* self, mirror::Object** obj) {
2101  // Slow path, the allocation stack push back must have already failed.
2102  DCHECK(!self->PushOnThreadLocalAllocationStack(*obj));
2103  mirror::Object** start_address;
2104  mirror::Object** end_address;
2105  while (!allocation_stack_->AtomicBumpBack(kThreadLocalAllocationStackSize, &start_address,
2106                                            &end_address)) {
2107    // TODO: Add handle VerifyObject.
2108    StackHandleScope<1> hs(self);
2109    HandleWrapper<mirror::Object> wrapper(hs.NewHandleWrapper(obj));
2110    // Push our object into the reserve region of the allocaiton stack. This is only required due
2111    // to heap verification requiring that roots are live (either in the live bitmap or in the
2112    // allocation stack).
2113    CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(*obj));
2114    // Push into the reserve allocation stack.
2115    CollectGarbageInternal(collector::kGcTypeSticky, kGcCauseForAlloc, false);
2116  }
2117  self->SetThreadLocalAllocationStack(start_address, end_address);
2118  // Retry on the new thread-local allocation stack.
2119  CHECK(self->PushOnThreadLocalAllocationStack(*obj));  // Must succeed.
2120}
2121
2122// Must do this with mutators suspended since we are directly accessing the allocation stacks.
2123size_t Heap::VerifyHeapReferences(bool verify_referents) {
2124  Thread* self = Thread::Current();
2125  Locks::mutator_lock_->AssertExclusiveHeld(self);
2126  // Lets sort our allocation stacks so that we can efficiently binary search them.
2127  allocation_stack_->Sort();
2128  live_stack_->Sort();
2129  // Since we sorted the allocation stack content, need to revoke all
2130  // thread-local allocation stacks.
2131  RevokeAllThreadLocalAllocationStacks(self);
2132  Atomic<size_t> fail_count_(0);
2133  VerifyObjectVisitor visitor(this, &fail_count_, verify_referents);
2134  // Verify objects in the allocation stack since these will be objects which were:
2135  // 1. Allocated prior to the GC (pre GC verification).
2136  // 2. Allocated during the GC (pre sweep GC verification).
2137  // We don't want to verify the objects in the live stack since they themselves may be
2138  // pointing to dead objects if they are not reachable.
2139  VisitObjects(VerifyObjectVisitor::VisitCallback, &visitor);
2140  // Verify the roots:
2141  Runtime::Current()->VisitRoots(VerifyReferenceVisitor::VerifyRootCallback, &visitor);
2142  if (visitor.GetFailureCount() > 0) {
2143    // Dump mod-union tables.
2144    for (const auto& table_pair : mod_union_tables_) {
2145      accounting::ModUnionTable* mod_union_table = table_pair.second;
2146      mod_union_table->Dump(LOG(ERROR) << mod_union_table->GetName() << ": ");
2147    }
2148    // Dump remembered sets.
2149    for (const auto& table_pair : remembered_sets_) {
2150      accounting::RememberedSet* remembered_set = table_pair.second;
2151      remembered_set->Dump(LOG(ERROR) << remembered_set->GetName() << ": ");
2152    }
2153    DumpSpaces();
2154  }
2155  return visitor.GetFailureCount();
2156}
2157
2158class VerifyReferenceCardVisitor {
2159 public:
2160  VerifyReferenceCardVisitor(Heap* heap, bool* failed)
2161      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
2162                            Locks::heap_bitmap_lock_)
2163      : heap_(heap), failed_(failed) {
2164  }
2165
2166  // TODO: Fix lock analysis to not use NO_THREAD_SAFETY_ANALYSIS, requires support for
2167  // annotalysis on visitors.
2168  void operator()(mirror::Object* obj, MemberOffset offset, bool is_static) const
2169      NO_THREAD_SAFETY_ANALYSIS {
2170    mirror::Object* ref = obj->GetFieldObject<mirror::Object>(offset);
2171    // Filter out class references since changing an object's class does not mark the card as dirty.
2172    // Also handles large objects, since the only reference they hold is a class reference.
2173    if (ref != nullptr && !ref->IsClass()) {
2174      accounting::CardTable* card_table = heap_->GetCardTable();
2175      // If the object is not dirty and it is referencing something in the live stack other than
2176      // class, then it must be on a dirty card.
2177      if (!card_table->AddrIsInCardTable(obj)) {
2178        LOG(ERROR) << "Object " << obj << " is not in the address range of the card table";
2179        *failed_ = true;
2180      } else if (!card_table->IsDirty(obj)) {
2181        // TODO: Check mod-union tables.
2182        // Card should be either kCardDirty if it got re-dirtied after we aged it, or
2183        // kCardDirty - 1 if it didnt get touched since we aged it.
2184        accounting::ObjectStack* live_stack = heap_->live_stack_.get();
2185        if (live_stack->ContainsSorted(ref)) {
2186          if (live_stack->ContainsSorted(obj)) {
2187            LOG(ERROR) << "Object " << obj << " found in live stack";
2188          }
2189          if (heap_->GetLiveBitmap()->Test(obj)) {
2190            LOG(ERROR) << "Object " << obj << " found in live bitmap";
2191          }
2192          LOG(ERROR) << "Object " << obj << " " << PrettyTypeOf(obj)
2193                    << " references " << ref << " " << PrettyTypeOf(ref) << " in live stack";
2194
2195          // Print which field of the object is dead.
2196          if (!obj->IsObjectArray()) {
2197            mirror::Class* klass = is_static ? obj->AsClass() : obj->GetClass();
2198            CHECK(klass != NULL);
2199            mirror::ObjectArray<mirror::ArtField>* fields = is_static ? klass->GetSFields()
2200                                                                      : klass->GetIFields();
2201            CHECK(fields != NULL);
2202            for (int32_t i = 0; i < fields->GetLength(); ++i) {
2203              mirror::ArtField* cur = fields->Get(i);
2204              if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
2205                LOG(ERROR) << (is_static ? "Static " : "") << "field in the live stack is "
2206                          << PrettyField(cur);
2207                break;
2208              }
2209            }
2210          } else {
2211            mirror::ObjectArray<mirror::Object>* object_array =
2212                obj->AsObjectArray<mirror::Object>();
2213            for (int32_t i = 0; i < object_array->GetLength(); ++i) {
2214              if (object_array->Get(i) == ref) {
2215                LOG(ERROR) << (is_static ? "Static " : "") << "obj[" << i << "] = ref";
2216              }
2217            }
2218          }
2219
2220          *failed_ = true;
2221        }
2222      }
2223    }
2224  }
2225
2226 private:
2227  Heap* const heap_;
2228  bool* const failed_;
2229};
2230
2231class VerifyLiveStackReferences {
2232 public:
2233  explicit VerifyLiveStackReferences(Heap* heap)
2234      : heap_(heap),
2235        failed_(false) {}
2236
2237  void operator()(mirror::Object* obj) const
2238      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
2239    VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_));
2240    obj->VisitReferences<true>(visitor, VoidFunctor());
2241  }
2242
2243  bool Failed() const {
2244    return failed_;
2245  }
2246
2247 private:
2248  Heap* const heap_;
2249  bool failed_;
2250};
2251
2252bool Heap::VerifyMissingCardMarks() {
2253  Thread* self = Thread::Current();
2254  Locks::mutator_lock_->AssertExclusiveHeld(self);
2255
2256  // We need to sort the live stack since we binary search it.
2257  live_stack_->Sort();
2258  // Since we sorted the allocation stack content, need to revoke all
2259  // thread-local allocation stacks.
2260  RevokeAllThreadLocalAllocationStacks(self);
2261  VerifyLiveStackReferences visitor(this);
2262  GetLiveBitmap()->Visit(visitor);
2263
2264  // We can verify objects in the live stack since none of these should reference dead objects.
2265  for (mirror::Object** it = live_stack_->Begin(); it != live_stack_->End(); ++it) {
2266    if (!kUseThreadLocalAllocationStack || *it != nullptr) {
2267      visitor(*it);
2268    }
2269  }
2270
2271  if (visitor.Failed()) {
2272    DumpSpaces();
2273    return false;
2274  }
2275  return true;
2276}
2277
2278void Heap::SwapStacks(Thread* self) {
2279  if (kUseThreadLocalAllocationStack) {
2280    live_stack_->AssertAllZero();
2281  }
2282  allocation_stack_.swap(live_stack_);
2283}
2284
2285void Heap::RevokeAllThreadLocalAllocationStacks(Thread* self) {
2286  // This must be called only during the pause.
2287  CHECK(Locks::mutator_lock_->IsExclusiveHeld(self));
2288  MutexLock mu(self, *Locks::runtime_shutdown_lock_);
2289  MutexLock mu2(self, *Locks::thread_list_lock_);
2290  std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
2291  for (Thread* t : thread_list) {
2292    t->RevokeThreadLocalAllocationStack();
2293  }
2294}
2295
2296void Heap::AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked() {
2297  if (kIsDebugBuild) {
2298    if (bump_pointer_space_ != nullptr) {
2299      bump_pointer_space_->AssertAllThreadLocalBuffersAreRevoked();
2300    }
2301  }
2302}
2303
2304accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) {
2305  auto it = mod_union_tables_.find(space);
2306  if (it == mod_union_tables_.end()) {
2307    return nullptr;
2308  }
2309  return it->second;
2310}
2311
2312accounting::RememberedSet* Heap::FindRememberedSetFromSpace(space::Space* space) {
2313  auto it = remembered_sets_.find(space);
2314  if (it == remembered_sets_.end()) {
2315    return nullptr;
2316  }
2317  return it->second;
2318}
2319
2320void Heap::ProcessCards(TimingLogger* timings, bool use_rem_sets) {
2321  TimingLogger::ScopedTiming t(__FUNCTION__, timings);
2322  // Clear cards and keep track of cards cleared in the mod-union table.
2323  for (const auto& space : continuous_spaces_) {
2324    accounting::ModUnionTable* table = FindModUnionTableFromSpace(space);
2325    accounting::RememberedSet* rem_set = FindRememberedSetFromSpace(space);
2326    if (table != nullptr) {
2327      const char* name = space->IsZygoteSpace() ? "ZygoteModUnionClearCards" :
2328          "ImageModUnionClearCards";
2329      TimingLogger::ScopedTiming t(name, timings);
2330      table->ClearCards();
2331    } else if (use_rem_sets && rem_set != nullptr) {
2332      DCHECK(collector::SemiSpace::kUseRememberedSet && collector_type_ == kCollectorTypeGSS)
2333          << static_cast<int>(collector_type_);
2334      TimingLogger::ScopedTiming t("AllocSpaceRemSetClearCards", timings);
2335      rem_set->ClearCards();
2336    } else if (space->GetType() != space::kSpaceTypeBumpPointerSpace) {
2337      TimingLogger::ScopedTiming t("AllocSpaceClearCards", timings);
2338      // No mod union table for the AllocSpace. Age the cards so that the GC knows that these cards
2339      // were dirty before the GC started.
2340      // TODO: Need to use atomic for the case where aged(cleaning thread) -> dirty(other thread)
2341      // -> clean(cleaning thread).
2342      // The races are we either end up with: Aged card, unaged card. Since we have the checkpoint
2343      // roots and then we scan / update mod union tables after. We will always scan either card.
2344      // If we end up with the non aged card, we scan it it in the pause.
2345      card_table_->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(),
2346                                     VoidFunctor());
2347    }
2348  }
2349}
2350
2351static void IdentityMarkHeapReferenceCallback(mirror::HeapReference<mirror::Object>*, void*) {
2352}
2353
2354void Heap::PreGcVerificationPaused(collector::GarbageCollector* gc) {
2355  Thread* const self = Thread::Current();
2356  TimingLogger* const timings = current_gc_iteration_.GetTimings();
2357  TimingLogger::ScopedTiming t(__FUNCTION__, timings);
2358  if (verify_pre_gc_heap_) {
2359    TimingLogger::ScopedTiming t("(Paused)PreGcVerifyHeapReferences", timings);
2360    ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
2361    size_t failures = VerifyHeapReferences();
2362    if (failures > 0) {
2363      LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed with " << failures
2364          << " failures";
2365    }
2366  }
2367  // Check that all objects which reference things in the live stack are on dirty cards.
2368  if (verify_missing_card_marks_) {
2369    TimingLogger::ScopedTiming t("(Paused)PreGcVerifyMissingCardMarks", timings);
2370    ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
2371    SwapStacks(self);
2372    // Sort the live stack so that we can quickly binary search it later.
2373    if (!VerifyMissingCardMarks()) {
2374      LOG(FATAL) << "Pre " << gc->GetName() << " missing card mark verification failed";
2375    }
2376    SwapStacks(self);
2377  }
2378  if (verify_mod_union_table_) {
2379    TimingLogger::ScopedTiming t("(Paused)PreGcVerifyModUnionTables", timings);
2380    ReaderMutexLock reader_lock(self, *Locks::heap_bitmap_lock_);
2381    for (const auto& table_pair : mod_union_tables_) {
2382      accounting::ModUnionTable* mod_union_table = table_pair.second;
2383      mod_union_table->UpdateAndMarkReferences(IdentityMarkHeapReferenceCallback, nullptr);
2384      mod_union_table->Verify();
2385    }
2386  }
2387}
2388
2389void Heap::PreGcVerification(collector::GarbageCollector* gc) {
2390  if (verify_pre_gc_heap_ || verify_missing_card_marks_ || verify_mod_union_table_) {
2391    collector::GarbageCollector::ScopedPause pause(gc);
2392    PreGcVerificationPaused(gc);
2393  }
2394}
2395
2396void Heap::PrePauseRosAllocVerification(collector::GarbageCollector* gc) {
2397  // TODO: Add a new runtime option for this?
2398  if (verify_pre_gc_rosalloc_) {
2399    RosAllocVerification(current_gc_iteration_.GetTimings(), "PreGcRosAllocVerification");
2400  }
2401}
2402
2403void Heap::PreSweepingGcVerification(collector::GarbageCollector* gc) {
2404  Thread* const self = Thread::Current();
2405  TimingLogger* const timings = current_gc_iteration_.GetTimings();
2406  TimingLogger::ScopedTiming t(__FUNCTION__, timings);
2407  // Called before sweeping occurs since we want to make sure we are not going so reclaim any
2408  // reachable objects.
2409  if (verify_pre_sweeping_heap_) {
2410    TimingLogger::ScopedTiming t("(Paused)PostSweepingVerifyHeapReferences", timings);
2411    CHECK_NE(self->GetState(), kRunnable);
2412    WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
2413    // Swapping bound bitmaps does nothing.
2414    gc->SwapBitmaps();
2415    // Pass in false since concurrent reference processing can mean that the reference referents
2416    // may point to dead objects at the point which PreSweepingGcVerification is called.
2417    size_t failures = VerifyHeapReferences(false);
2418    if (failures > 0) {
2419      LOG(FATAL) << "Pre sweeping " << gc->GetName() << " GC verification failed with " << failures
2420          << " failures";
2421    }
2422    gc->SwapBitmaps();
2423  }
2424  if (verify_pre_sweeping_rosalloc_) {
2425    RosAllocVerification(timings, "PreSweepingRosAllocVerification");
2426  }
2427}
2428
2429void Heap::PostGcVerificationPaused(collector::GarbageCollector* gc) {
2430  // Only pause if we have to do some verification.
2431  Thread* const self = Thread::Current();
2432  TimingLogger* const timings = GetCurrentGcIteration()->GetTimings();
2433  TimingLogger::ScopedTiming t(__FUNCTION__, timings);
2434  if (verify_system_weaks_) {
2435    ReaderMutexLock mu2(self, *Locks::heap_bitmap_lock_);
2436    collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc);
2437    mark_sweep->VerifySystemWeaks();
2438  }
2439  if (verify_post_gc_rosalloc_) {
2440    RosAllocVerification(timings, "(Paused)PostGcRosAllocVerification");
2441  }
2442  if (verify_post_gc_heap_) {
2443    TimingLogger::ScopedTiming t("(Paused)PostGcVerifyHeapReferences", timings);
2444    ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
2445    size_t failures = VerifyHeapReferences();
2446    if (failures > 0) {
2447      LOG(FATAL) << "Pre " << gc->GetName() << " heap verification failed with " << failures
2448          << " failures";
2449    }
2450  }
2451}
2452
2453void Heap::PostGcVerification(collector::GarbageCollector* gc) {
2454  if (verify_system_weaks_ || verify_post_gc_rosalloc_ || verify_post_gc_heap_) {
2455    collector::GarbageCollector::ScopedPause pause(gc);
2456    PreGcVerificationPaused(gc);
2457  }
2458}
2459
2460void Heap::RosAllocVerification(TimingLogger* timings, const char* name) {
2461  TimingLogger::ScopedTiming t(name, timings);
2462  for (const auto& space : continuous_spaces_) {
2463    if (space->IsRosAllocSpace()) {
2464      VLOG(heap) << name << " : " << space->GetName();
2465      space->AsRosAllocSpace()->Verify();
2466    }
2467  }
2468}
2469
2470collector::GcType Heap::WaitForGcToComplete(GcCause cause, Thread* self) {
2471  ScopedThreadStateChange tsc(self, kWaitingForGcToComplete);
2472  MutexLock mu(self, *gc_complete_lock_);
2473  return WaitForGcToCompleteLocked(cause, self);
2474}
2475
2476collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Thread* self) {
2477  collector::GcType last_gc_type = collector::kGcTypeNone;
2478  uint64_t wait_start = NanoTime();
2479  while (collector_type_running_ != kCollectorTypeNone) {
2480    ATRACE_BEGIN("GC: Wait For Completion");
2481    // We must wait, change thread state then sleep on gc_complete_cond_;
2482    gc_complete_cond_->Wait(self);
2483    last_gc_type = last_gc_type_;
2484    ATRACE_END();
2485  }
2486  uint64_t wait_time = NanoTime() - wait_start;
2487  total_wait_time_ += wait_time;
2488  if (wait_time > long_pause_log_threshold_) {
2489    LOG(INFO) << "WaitForGcToComplete blocked for " << PrettyDuration(wait_time)
2490        << " for cause " << cause;
2491  }
2492  return last_gc_type;
2493}
2494
2495void Heap::DumpForSigQuit(std::ostream& os) {
2496  os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/"
2497     << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n";
2498  DumpGcPerformanceInfo(os);
2499}
2500
2501size_t Heap::GetPercentFree() {
2502  return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / max_allowed_footprint_);
2503}
2504
2505void Heap::SetIdealFootprint(size_t max_allowed_footprint) {
2506  if (max_allowed_footprint > GetMaxMemory()) {
2507    VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
2508             << PrettySize(GetMaxMemory());
2509    max_allowed_footprint = GetMaxMemory();
2510  }
2511  max_allowed_footprint_ = max_allowed_footprint;
2512}
2513
2514bool Heap::IsMovableObject(const mirror::Object* obj) const {
2515  if (kMovingCollector) {
2516    space::Space* space = FindContinuousSpaceFromObject(obj, true);
2517    if (space != nullptr) {
2518      // TODO: Check large object?
2519      return space->CanMoveObjects();
2520    }
2521  }
2522  return false;
2523}
2524
2525void Heap::UpdateMaxNativeFootprint() {
2526  size_t native_size = native_bytes_allocated_.LoadRelaxed();
2527  // TODO: Tune the native heap utilization to be a value other than the java heap utilization.
2528  size_t target_size = native_size / GetTargetHeapUtilization();
2529  if (target_size > native_size + max_free_) {
2530    target_size = native_size + max_free_;
2531  } else if (target_size < native_size + min_free_) {
2532    target_size = native_size + min_free_;
2533  }
2534  native_footprint_gc_watermark_ = target_size;
2535  native_footprint_limit_ = 2 * target_size - native_size;
2536}
2537
2538collector::GarbageCollector* Heap::FindCollectorByGcType(collector::GcType gc_type) {
2539  for (const auto& collector : garbage_collectors_) {
2540    if (collector->GetCollectorType() == collector_type_ &&
2541        collector->GetGcType() == gc_type) {
2542      return collector;
2543    }
2544  }
2545  return nullptr;
2546}
2547
2548double Heap::HeapGrowthMultiplier() const {
2549  // If we don't care about pause times we are background, so return 1.0.
2550  if (!CareAboutPauseTimes() || IsLowMemoryMode()) {
2551    return 1.0;
2552  }
2553  return foreground_heap_growth_multiplier_;
2554}
2555
2556void Heap::GrowForUtilization(collector::GarbageCollector* collector_ran) {
2557  // We know what our utilization is at this moment.
2558  // This doesn't actually resize any memory. It just lets the heap grow more when necessary.
2559  const uint64_t bytes_allocated = GetBytesAllocated();
2560  last_gc_size_ = bytes_allocated;
2561  last_gc_time_ns_ = NanoTime();
2562  uint64_t target_size;
2563  collector::GcType gc_type = collector_ran->GetGcType();
2564  if (gc_type != collector::kGcTypeSticky) {
2565    // Grow the heap for non sticky GC.
2566    const float multiplier = HeapGrowthMultiplier();  // Use the multiplier to grow more for
2567    // foreground.
2568    intptr_t delta = bytes_allocated / GetTargetHeapUtilization() - bytes_allocated;
2569    CHECK_GE(delta, 0);
2570    target_size = bytes_allocated + delta * multiplier;
2571    target_size = std::min(target_size,
2572                           bytes_allocated + static_cast<uint64_t>(max_free_ * multiplier));
2573    target_size = std::max(target_size,
2574                           bytes_allocated + static_cast<uint64_t>(min_free_ * multiplier));
2575    native_need_to_run_finalization_ = true;
2576    next_gc_type_ = collector::kGcTypeSticky;
2577  } else {
2578    collector::GcType non_sticky_gc_type =
2579        have_zygote_space_ ? collector::kGcTypePartial : collector::kGcTypeFull;
2580    // Find what the next non sticky collector will be.
2581    collector::GarbageCollector* non_sticky_collector = FindCollectorByGcType(non_sticky_gc_type);
2582    // If the throughput of the current sticky GC >= throughput of the non sticky collector, then
2583    // do another sticky collection next.
2584    // We also check that the bytes allocated aren't over the footprint limit in order to prevent a
2585    // pathological case where dead objects which aren't reclaimed by sticky could get accumulated
2586    // if the sticky GC throughput always remained >= the full/partial throughput.
2587    if (current_gc_iteration_.GetEstimatedThroughput() * kStickyGcThroughputAdjustment >=
2588        non_sticky_collector->GetEstimatedMeanThroughput() &&
2589        non_sticky_collector->NumberOfIterations() > 0 &&
2590        bytes_allocated <= max_allowed_footprint_) {
2591      next_gc_type_ = collector::kGcTypeSticky;
2592    } else {
2593      next_gc_type_ = non_sticky_gc_type;
2594    }
2595    // If we have freed enough memory, shrink the heap back down.
2596    if (bytes_allocated + max_free_ < max_allowed_footprint_) {
2597      target_size = bytes_allocated + max_free_;
2598    } else {
2599      target_size = std::max(bytes_allocated, static_cast<uint64_t>(max_allowed_footprint_));
2600    }
2601  }
2602  if (!ignore_max_footprint_) {
2603    SetIdealFootprint(target_size);
2604    if (IsGcConcurrent()) {
2605      // Calculate when to perform the next ConcurrentGC.
2606      // Calculate the estimated GC duration.
2607      const double gc_duration_seconds = NsToMs(current_gc_iteration_.GetDurationNs()) / 1000.0;
2608      // Estimate how many remaining bytes we will have when we need to start the next GC.
2609      size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
2610      remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes);
2611      remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
2612      if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2613        // A never going to happen situation that from the estimated allocation rate we will exceed
2614        // the applications entire footprint with the given estimated allocation rate. Schedule
2615        // another GC nearly straight away.
2616        remaining_bytes = kMinConcurrentRemainingBytes;
2617      }
2618      DCHECK_LE(remaining_bytes, max_allowed_footprint_);
2619      DCHECK_LE(max_allowed_footprint_, growth_limit_);
2620      // Start a concurrent GC when we get close to the estimated remaining bytes. When the
2621      // allocation rate is very high, remaining_bytes could tell us that we should start a GC
2622      // right away.
2623      concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
2624                                         static_cast<size_t>(bytes_allocated));
2625    }
2626  }
2627}
2628
2629void Heap::ClearGrowthLimit() {
2630  growth_limit_ = capacity_;
2631  non_moving_space_->ClearGrowthLimit();
2632}
2633
2634void Heap::AddFinalizerReference(Thread* self, mirror::Object** object) {
2635  ScopedObjectAccess soa(self);
2636  ScopedLocalRef<jobject> arg(self->GetJniEnv(), soa.AddLocalReference<jobject>(*object));
2637  jvalue args[1];
2638  args[0].l = arg.get();
2639  InvokeWithJValues(soa, nullptr, WellKnownClasses::java_lang_ref_FinalizerReference_add, args);
2640  // Restore object in case it gets moved.
2641  *object = soa.Decode<mirror::Object*>(arg.get());
2642}
2643
2644void Heap::RequestConcurrentGCAndSaveObject(Thread* self, mirror::Object** obj) {
2645  StackHandleScope<1> hs(self);
2646  HandleWrapper<mirror::Object> wrapper(hs.NewHandleWrapper(obj));
2647  RequestConcurrentGC(self);
2648}
2649
2650void Heap::RequestConcurrentGC(Thread* self) {
2651  // Make sure that we can do a concurrent GC.
2652  Runtime* runtime = Runtime::Current();
2653  if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self) ||
2654      self->IsHandlingStackOverflow()) {
2655    return;
2656  }
2657  // We already have a request pending, no reason to start more until we update
2658  // concurrent_start_bytes_.
2659  concurrent_start_bytes_ = std::numeric_limits<size_t>::max();
2660  JNIEnv* env = self->GetJniEnv();
2661  DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2662  DCHECK(WellKnownClasses::java_lang_Daemons_requestGC != nullptr);
2663  env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2664                            WellKnownClasses::java_lang_Daemons_requestGC);
2665  CHECK(!env->ExceptionCheck());
2666}
2667
2668void Heap::ConcurrentGC(Thread* self) {
2669  if (Runtime::Current()->IsShuttingDown(self)) {
2670    return;
2671  }
2672  // Wait for any GCs currently running to finish.
2673  if (WaitForGcToComplete(kGcCauseBackground, self) == collector::kGcTypeNone) {
2674    // If the we can't run the GC type we wanted to run, find the next appropriate one and try that
2675    // instead. E.g. can't do partial, so do full instead.
2676    if (CollectGarbageInternal(next_gc_type_, kGcCauseBackground, false) ==
2677        collector::kGcTypeNone) {
2678      for (collector::GcType gc_type : gc_plan_) {
2679        // Attempt to run the collector, if we succeed, we are done.
2680        if (gc_type > next_gc_type_ &&
2681            CollectGarbageInternal(gc_type, kGcCauseBackground, false) != collector::kGcTypeNone) {
2682          break;
2683        }
2684      }
2685    }
2686  }
2687}
2688
2689void Heap::RequestCollectorTransition(CollectorType desired_collector_type, uint64_t delta_time) {
2690  Thread* self = Thread::Current();
2691  {
2692    MutexLock mu(self, *heap_trim_request_lock_);
2693    if (desired_collector_type_ == desired_collector_type) {
2694      return;
2695    }
2696    heap_transition_or_trim_target_time_ =
2697        std::max(heap_transition_or_trim_target_time_, NanoTime() + delta_time);
2698    desired_collector_type_ = desired_collector_type;
2699  }
2700  SignalHeapTrimDaemon(self);
2701}
2702
2703void Heap::RequestHeapTrim() {
2704  // GC completed and now we must decide whether to request a heap trim (advising pages back to the
2705  // kernel) or not. Issuing a request will also cause trimming of the libc heap. As a trim scans
2706  // a space it will hold its lock and can become a cause of jank.
2707  // Note, the large object space self trims and the Zygote space was trimmed and unchanging since
2708  // forking.
2709
2710  // We don't have a good measure of how worthwhile a trim might be. We can't use the live bitmap
2711  // because that only marks object heads, so a large array looks like lots of empty space. We
2712  // don't just call dlmalloc all the time, because the cost of an _attempted_ trim is proportional
2713  // to utilization (which is probably inversely proportional to how much benefit we can expect).
2714  // We could try mincore(2) but that's only a measure of how many pages we haven't given away,
2715  // not how much use we're making of those pages.
2716
2717  Thread* self = Thread::Current();
2718  Runtime* runtime = Runtime::Current();
2719  if (runtime == nullptr || !runtime->IsFinishedStarting() || runtime->IsShuttingDown(self)) {
2720    // Heap trimming isn't supported without a Java runtime or Daemons (such as at dex2oat time)
2721    // Also: we do not wish to start a heap trim if the runtime is shutting down (a racy check
2722    // as we don't hold the lock while requesting the trim).
2723    return;
2724  }
2725  {
2726    MutexLock mu(self, *heap_trim_request_lock_);
2727    if (last_trim_time_ + kHeapTrimWait >= NanoTime()) {
2728      // We have done a heap trim in the last kHeapTrimWait nanosecs, don't request another one
2729      // just yet.
2730      return;
2731    }
2732    heap_trim_request_pending_ = true;
2733    uint64_t current_time = NanoTime();
2734    if (heap_transition_or_trim_target_time_ < current_time) {
2735      heap_transition_or_trim_target_time_ = current_time + kHeapTrimWait;
2736    }
2737  }
2738  // Notify the daemon thread which will actually do the heap trim.
2739  SignalHeapTrimDaemon(self);
2740}
2741
2742void Heap::SignalHeapTrimDaemon(Thread* self) {
2743  JNIEnv* env = self->GetJniEnv();
2744  DCHECK(WellKnownClasses::java_lang_Daemons != nullptr);
2745  DCHECK(WellKnownClasses::java_lang_Daemons_requestHeapTrim != nullptr);
2746  env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
2747                            WellKnownClasses::java_lang_Daemons_requestHeapTrim);
2748  CHECK(!env->ExceptionCheck());
2749}
2750
2751void Heap::RevokeThreadLocalBuffers(Thread* thread) {
2752  if (rosalloc_space_ != nullptr) {
2753    rosalloc_space_->RevokeThreadLocalBuffers(thread);
2754  }
2755  if (bump_pointer_space_ != nullptr) {
2756    bump_pointer_space_->RevokeThreadLocalBuffers(thread);
2757  }
2758}
2759
2760void Heap::RevokeRosAllocThreadLocalBuffers(Thread* thread) {
2761  if (rosalloc_space_ != nullptr) {
2762    rosalloc_space_->RevokeThreadLocalBuffers(thread);
2763  }
2764}
2765
2766void Heap::RevokeAllThreadLocalBuffers() {
2767  if (rosalloc_space_ != nullptr) {
2768    rosalloc_space_->RevokeAllThreadLocalBuffers();
2769  }
2770  if (bump_pointer_space_ != nullptr) {
2771    bump_pointer_space_->RevokeAllThreadLocalBuffers();
2772  }
2773}
2774
2775bool Heap::IsGCRequestPending() const {
2776  return concurrent_start_bytes_ != std::numeric_limits<size_t>::max();
2777}
2778
2779void Heap::RunFinalization(JNIEnv* env) {
2780  // Can't do this in WellKnownClasses::Init since System is not properly set up at that point.
2781  if (WellKnownClasses::java_lang_System_runFinalization == nullptr) {
2782    CHECK(WellKnownClasses::java_lang_System != nullptr);
2783    WellKnownClasses::java_lang_System_runFinalization =
2784        CacheMethod(env, WellKnownClasses::java_lang_System, true, "runFinalization", "()V");
2785    CHECK(WellKnownClasses::java_lang_System_runFinalization != nullptr);
2786  }
2787  env->CallStaticVoidMethod(WellKnownClasses::java_lang_System,
2788                            WellKnownClasses::java_lang_System_runFinalization);
2789}
2790
2791void Heap::RegisterNativeAllocation(JNIEnv* env, int bytes) {
2792  Thread* self = ThreadForEnv(env);
2793  if (native_need_to_run_finalization_) {
2794    RunFinalization(env);
2795    UpdateMaxNativeFootprint();
2796    native_need_to_run_finalization_ = false;
2797  }
2798  // Total number of native bytes allocated.
2799  size_t new_native_bytes_allocated = native_bytes_allocated_.FetchAndAddSequentiallyConsistent(bytes);
2800  new_native_bytes_allocated += bytes;
2801  if (new_native_bytes_allocated > native_footprint_gc_watermark_) {
2802    collector::GcType gc_type = have_zygote_space_ ? collector::kGcTypePartial :
2803        collector::kGcTypeFull;
2804
2805    // The second watermark is higher than the gc watermark. If you hit this it means you are
2806    // allocating native objects faster than the GC can keep up with.
2807    if (new_native_bytes_allocated > native_footprint_limit_) {
2808      if (WaitForGcToComplete(kGcCauseForNativeAlloc, self) != collector::kGcTypeNone) {
2809        // Just finished a GC, attempt to run finalizers.
2810        RunFinalization(env);
2811        CHECK(!env->ExceptionCheck());
2812      }
2813      // If we still are over the watermark, attempt a GC for alloc and run finalizers.
2814      if (new_native_bytes_allocated > native_footprint_limit_) {
2815        CollectGarbageInternal(gc_type, kGcCauseForNativeAlloc, false);
2816        RunFinalization(env);
2817        native_need_to_run_finalization_ = false;
2818        CHECK(!env->ExceptionCheck());
2819      }
2820      // We have just run finalizers, update the native watermark since it is very likely that
2821      // finalizers released native managed allocations.
2822      UpdateMaxNativeFootprint();
2823    } else if (!IsGCRequestPending()) {
2824      if (IsGcConcurrent()) {
2825        RequestConcurrentGC(self);
2826      } else {
2827        CollectGarbageInternal(gc_type, kGcCauseForNativeAlloc, false);
2828      }
2829    }
2830  }
2831}
2832
2833void Heap::RegisterNativeFree(JNIEnv* env, int bytes) {
2834  int expected_size, new_size;
2835  do {
2836    expected_size = native_bytes_allocated_.LoadRelaxed();
2837    new_size = expected_size - bytes;
2838    if (UNLIKELY(new_size < 0)) {
2839      ScopedObjectAccess soa(env);
2840      env->ThrowNew(WellKnownClasses::java_lang_RuntimeException,
2841                    StringPrintf("Attempted to free %d native bytes with only %d native bytes "
2842                                 "registered as allocated", bytes, expected_size).c_str());
2843      break;
2844    }
2845  } while (!native_bytes_allocated_.CompareExchangeWeakRelaxed(expected_size, new_size));
2846}
2847
2848size_t Heap::GetTotalMemory() const {
2849  size_t ret = 0;
2850  for (const auto& space : continuous_spaces_) {
2851    // Currently don't include the image space.
2852    if (!space->IsImageSpace()) {
2853      ret += space->Size();
2854    }
2855  }
2856  for (const auto& space : discontinuous_spaces_) {
2857    if (space->IsLargeObjectSpace()) {
2858      ret += space->AsLargeObjectSpace()->GetBytesAllocated();
2859    }
2860  }
2861  return ret;
2862}
2863
2864void Heap::AddModUnionTable(accounting::ModUnionTable* mod_union_table) {
2865  DCHECK(mod_union_table != nullptr);
2866  mod_union_tables_.Put(mod_union_table->GetSpace(), mod_union_table);
2867}
2868
2869void Heap::CheckPreconditionsForAllocObject(mirror::Class* c, size_t byte_count) {
2870  CHECK(c == NULL || (c->IsClassClass() && byte_count >= sizeof(mirror::Class)) ||
2871        (c->IsVariableSize() || c->GetObjectSize() == byte_count) ||
2872        c->GetDescriptor().empty());
2873  CHECK_GE(byte_count, sizeof(mirror::Object));
2874}
2875
2876void Heap::AddRememberedSet(accounting::RememberedSet* remembered_set) {
2877  CHECK(remembered_set != nullptr);
2878  space::Space* space = remembered_set->GetSpace();
2879  CHECK(space != nullptr);
2880  CHECK(remembered_sets_.find(space) == remembered_sets_.end()) << space;
2881  remembered_sets_.Put(space, remembered_set);
2882  CHECK(remembered_sets_.find(space) != remembered_sets_.end()) << space;
2883}
2884
2885void Heap::RemoveRememberedSet(space::Space* space) {
2886  CHECK(space != nullptr);
2887  auto it = remembered_sets_.find(space);
2888  CHECK(it != remembered_sets_.end());
2889  remembered_sets_.erase(it);
2890  CHECK(remembered_sets_.find(space) == remembered_sets_.end());
2891}
2892
2893void Heap::ClearMarkedObjects() {
2894  // Clear all of the spaces' mark bitmaps.
2895  for (const auto& space : GetContinuousSpaces()) {
2896    accounting::ContinuousSpaceBitmap* mark_bitmap = space->GetMarkBitmap();
2897    if (space->GetLiveBitmap() != mark_bitmap) {
2898      mark_bitmap->Clear();
2899    }
2900  }
2901  // Clear the marked objects in the discontinous space object sets.
2902  for (const auto& space : GetDiscontinuousSpaces()) {
2903    space->GetMarkBitmap()->Clear();
2904  }
2905}
2906
2907}  // namespace gc
2908}  // namespace art
2909