Home
last modified time | relevance | path

Searched refs:AtomicTestAndSet (Results 1 – 9 of 9) sorted by relevance

/art/runtime/gc/accounting/
Dheap_bitmap-inl.h83 inline bool HeapBitmap::AtomicTestAndSet(const mirror::Object* obj, in AtomicTestAndSet() function
87 return bitmap->AtomicTestAndSet(obj); in AtomicTestAndSet()
92 return lo_bitmap->AtomicTestAndSet(obj); in AtomicTestAndSet()
Dheap_bitmap.h47 bool AtomicTestAndSet(const mirror::Object* obj, const LargeObjectSetVisitor& visitor)
Dbitmap.h174 ALWAYS_INLINE bool AtomicTestAndSet(size_t addr) { in AtomicTestAndSet() function
Dspace_bitmap.h102 bool AtomicTestAndSet(const mirror::Object* obj);
Dspace_bitmap-inl.h34 inline bool SpaceBitmap<kAlignment>::AtomicTestAndSet(const mirror::Object* obj) { in AtomicTestAndSet() function
/art/runtime/gc/collector/
Dconcurrent_copying-inl.h82 success = !bitmap->AtomicTestAndSet(ref); in MarkUnevacFromSpaceRegion()
Dconcurrent_copying.cc1179 return (bitmap != nullptr) ? bitmap->AtomicTestAndSet(ref) : los_bitmap->AtomicTestAndSet(ref); in TestAndSetMarkBitForRef()
3497 CHECK(!heap_->non_moving_space_->GetLiveBitmap()->AtomicTestAndSet(to_ref)); in Copy()
3501 CHECK(!heap_->non_moving_space_->GetMarkBitmap()->AtomicTestAndSet(to_ref)); in Copy()
3639 !los_bitmap->AtomicTestAndSet(ref) : in MarkNonMoving()
3640 !mark_bitmap->AtomicTestAndSet(ref); in MarkNonMoving()
Dmark_sweep.cc554 return !object_bitmap->AtomicTestAndSet(obj); in MarkObjectParallel()
557 return !mark_bitmap_->AtomicTestAndSet(obj, visitor); in MarkObjectParallel()
/art/runtime/jit/
Djit_code_cache.cc783 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(code_ptr)); in Commit()
1062 bitmap_->AtomicTestAndSet(FromCodeToAllocation(code)); in Run()
1414 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(code_ptr)); in DoCollection()
1427 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(code_ptr)); in DoCollection()
1775 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(data->GetCode())); in NotifyCompilationOf()