Searched refs:HasAddress (Results 1 - 23 of 23) sorted by relevance

/art/runtime/gc/collector/
H A Dsemi_space-inl.h30 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())) {
H A Dimmune_spaces.h75 if (space->HasAddress(obj)) {
H A Dconcurrent_copying-inl.h66 DCHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref))
H A Dsemi_space.cc220 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(ob
[all...]
H A Dmark_compact.cc132 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;
H A Dconcurrent_copying.cc684 << (collector_->GetHeap()->GetNonMovingSpace()->HasAddress(ref));
761 << (collector->GetHeap()->GetNonMovingSpace()->HasAddress(obj));
1862 DCHECK(heap_->non_moving_space_->HasAddress(to_ref));
1877 CHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref));
1898 DCHECK(heap_->non_moving_space_->HasAddress(to_ref));
1926 heap_->non_moving_space_->HasAddress(to_ref))
1989 DCHECK(!region_space_->HasAddress(ref)) << ref;
H A Dmark_sweep.cc493 } else if (LIKELY(current_space_bitmap_->HasAddress(obj))) {
536 if (LIKELY(object_bitmap->HasAddress(obj))) {
1230 if (space->HasAddress(obj)) {
1434 if (current_space_bitmap_->HasAddress(object)) {
/art/runtime/gc/accounting/
H A Dheap_bitmap-inl.h44 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))) {
H A Dmod_union_table-inl.h37 return !space_->HasAddress(ref);
H A Dremembered_set.cc73 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)));
H A Dbitmap.h155 DCHECK(HasAddress(addr)) << CoverBegin() << " <= " << addr << " < " << CoverEnd();
159 ALWAYS_INLINE bool HasAddress(const uintptr_t addr) const { function in class:art::gc::accounting::MemoryRangeBitmap
H A Dspace_bitmap-inl.h57 DCHECK(HasAddress(obj)) << obj;
162 DCHECK(HasAddress(obj)) << obj;
H A Dmod_union_table.cc121 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
465 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start)))
H A Dspace_bitmap.h94 bool HasAddress(const void* obj) const { function in class:art::gc::accounting::SpaceBitmap
H A Dmod_union_table_test.cc125 return target_space_->HasAddress(ref);
/art/test/596-app-images/
H A Dapp_images.cc58 if (image_space->HasAddress(klass_ptr)) {
/art/runtime/gc/space/
H A Dregion_space.h174 if (HasAddress(ref)) {
182 if (HasAddress(ref)) {
190 if (HasAddress(ref)) {
198 if (HasAddress(ref)) {
498 DCHECK(HasAddress(ref));
H A Dspace.h309 bool HasAddress(const mirror::Object* obj) const { function in class:art::gc::space::ContinuousSpace
315 return HasAddress(obj);
/art/runtime/
H A Dmem_map.h166 bool HasAddress(const void* addr) const { function in class:art::MemMap
H A Dclass_linker.cc1354 if (space->HasAddress(klass)) {
1403 if (space->HasAddress(klass)) {
/art/runtime/gc/
H A Dheap.cc801 if (cur_space->HasAddress(obj)) {
1499 if (space->HasAddress(obj)) {
1511 if (bump_pointer_space_ != nullptr && bump_pointer_space_->HasAddress(obj)) {
1518 } else if (temp_space_ != nullptr && temp_space_->HasAddress(obj)) {
1523 if (region_space_ != nullptr && region_space_->HasAddress(obj)) {
2569 if (bitmap1->HasAddress(obj)) {
2571 } else if (bitmap2->HasAddress(obj)) {
4114 if (space->HasAddress(obj)) {
/art/compiler/optimizing/
H A Dnodes.h5487 DCHECK(HasAddress(load_kind));
5524 DCHECK(HasAddress(GetLoadKind()));
5589 static bool HasAddress(LoadKind load_kind) {
H A Dnodes.cc2450 if (HasAddress(load_kind)) {

Completed in 1411 milliseconds