HomeSort by relevance Sort by last modified time
    Searched refs:HasAddress (Results 1 - 23 of 23) sorted by null

  /art/runtime/gc/collector/
semi_space-inl.h 30 DCHECK(from_space_->HasAddress(obj));
48 if (from_space_->HasAddress(obj)) {
63 DCHECK(!to_space_->HasAddress(obj)) << "Tried to mark " << obj << " in to-space";
65 CHECK(!to_space_->HasAddress(ref)) << "Marking " << ref << " in to_space_";
79 if (!to_space_->HasAddress(obj_ptr->AsMirrorPtr())) {
immune_spaces.h 75 if (space->HasAddress(obj)) {
concurrent_copying-inl.h 66 DCHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref))
semi_space.cc 220 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) {
294 if (from_space_->HasAddress(ref)) {
314 CHECK(!from_space_->HasAddress(root->AsMirrorPtr()));
322 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
555 // DCHECK(!to_space_->HasAddress(obj)) failure below.
596 DCHECK(to_space_->HasAddress(forward_address) ||
597 fallback_space_->HasAddress(forward_address) ||
598 (generational_ && promo_dest_space_->HasAddress(forward_address)))
723 DCHECK(!from_space_->HasAddress(obj)) << "Scanning object " << obj << " in from space";
744 if (collect_from_space_only_ && promo_dest_space_->HasAddress(obj))
    [all...]
mark_compact.cc 132 if (objects_before_forwarding_->HasAddress(obj)) {
137 DCHECK(!space_->HasAddress(obj));
451 if (objects_before_forwarding_->HasAddress(obj)) {
458 DCHECK(!space_->HasAddress(obj));
469 if (objects_before_forwarding_->HasAddress(object)) {
491 DCHECK(space_->HasAddress(obj)) << obj;
494 DCHECK(space_->HasAddress(dest_obj)) << dest_obj;
concurrent_copying.cc 684 << (collector_->GetHeap()->GetNonMovingSpace()->HasAddress(ref));
761 << (collector->GetHeap()->GetNonMovingSpace()->HasAddress(obj));
    [all...]
mark_sweep.cc 493 } else if (LIKELY(current_space_bitmap_->HasAddress(obj))) {
536 if (LIKELY(object_bitmap->HasAddress(obj))) {
    [all...]
  /art/runtime/gc/accounting/
mod_union_table-inl.h 37 return !space_->HasAddress(ref);
heap_bitmap-inl.h 44 if (LIKELY(lo_bitmap->HasAddress(obj))) {
59 if (LIKELY(lo_bitmap->HasAddress(obj))) {
74 if (LIKELY(lo_bitmap->HasAddress(obj))) {
91 if (LIKELY(lo_bitmap->HasAddress(obj))) {
101 if (bitmap->HasAddress(obj)) {
110 if (LIKELY(bitmap->HasAddress(obj))) {
remembered_set.cc 73 if (target_space_->HasAddress(ref_ptr->AsMirrorPtr())) {
76 DCHECK(!target_space_->HasAddress(ref_ptr->AsMirrorPtr()));
82 if (target_space_->HasAddress(ref->GetReferent())) {
97 if (target_space_->HasAddress(root->AsMirrorPtr())) {
100 DCHECK(!target_space_->HasAddress(root->AsMirrorPtr()));
142 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)));
bitmap.h 155 DCHECK(HasAddress(addr)) << CoverBegin() << " <= " << addr << " < " << CoverEnd();
159 ALWAYS_INLINE bool HasAddress(const uintptr_t addr) const {
space_bitmap-inl.h 57 DCHECK(HasAddress(obj)) << obj;
162 DCHECK(HasAddress(obj)) << obj;
mod_union_table.cc 121 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
465 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)))
space_bitmap.h 94 bool HasAddress(const void* obj) const {
mod_union_table_test.cc 125 return target_space_->HasAddress(ref);
  /art/test/596-app-images/
app_images.cc 58 if (image_space->HasAddress(klass_ptr)) {
  /art/runtime/gc/space/
space.h 309 bool HasAddress(const mirror::Object* obj) const {
315 return HasAddress(obj);
region_space.h 174 if (HasAddress(ref)) {
182 if (HasAddress(ref)) {
190 if (HasAddress(ref)) {
198 if (HasAddress(ref)) {
498 DCHECK(HasAddress(ref));
  /art/runtime/
mem_map.h 166 bool HasAddress(const void* addr) const {
class_linker.cc     [all...]
  /art/runtime/gc/
heap.cc     [all...]
  /art/compiler/optimizing/
nodes.h     [all...]
nodes.cc     [all...]

Completed in 3424 milliseconds