OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rb_ptr
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
read_barrier-inl.h
43
// The higher bits of the
rb_ptr
, rb_ptr_high_bits (must be zero)
64
CHECK_EQ(rb_ptr_high_bits, 0U) << obj << "
rb_ptr
=" << obj->GetReadBarrierPointer();
228
mirror::Object*
rb_ptr
= obj->GetReadBarrierPointer();
local
229
uintptr_t rb_ptr_bits = reinterpret_cast<uintptr_t>(
rb_ptr
);
234
<< "obj=" << obj << "
rb_ptr
=" <<
rb_ptr
<< " " << PrettyTypeOf(obj);
/art/runtime/mirror/
object-inl.h
150
inline void Object::SetReadBarrierPointer(Object*
rb_ptr
) {
153
DCHECK_EQ(reinterpret_cast<uint64_t>(
rb_ptr
) >> 32, 0U);
155
lw.SetReadBarrierState(static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
rb_ptr
)));
162
OFFSET_OF_OBJECT_MEMBER(Object, x_rb_ptr_),
rb_ptr
);
166
UNUSED(
rb_ptr
);
171
inline bool Object::AtomicSetReadBarrierPointer(Object* expected_rb_ptr, Object*
rb_ptr
) {
175
DCHECK_EQ(reinterpret_cast<uint64_t>(
rb_ptr
) >> 32, 0U);
188
new_lw.SetReadBarrierState(static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
rb_ptr
)));
203
HeapReference<Object> new_ref(HeapReference<Object>::FromMirrorPtr(
rb_ptr
));
213
UNUSED(expected_rb_ptr,
rb_ptr
);
[
all
...]
object.h
100
void SetReadBarrierPointer(Object*
rb_ptr
) SHARED_REQUIRES(Locks::mutator_lock_);
103
ALWAYS_INLINE bool AtomicSetReadBarrierPointer(Object* expected_rb_ptr, Object*
rb_ptr
)
/art/runtime/gc/collector/
concurrent_copying.cc
675
<< " has non-white
rb_ptr
" << ref->GetReadBarrierPointer();
681
<< " has non-black
rb_ptr
" << ref->GetReadBarrierPointer()
682
<< " but isn't on the alloc stack (and has white
rb_ptr
)."
753
<< "obj=" << obj << " non-white
rb_ptr
" << obj->GetReadBarrierPointer();
759
<< " has non-black
rb_ptr
" << obj->GetReadBarrierPointer()
760
<< " but isn't on the alloc stack (and has white
rb_ptr
). Is it in the non-moving space="
1171
mirror::Object*
rb_ptr
= obj->GetReadBarrierPointer();
local
[
all
...]
Completed in 80 milliseconds