Lines Matching refs:tls32_

197       tls32_.deoptimization_return_value_is_reference,  in PushAndClearDeoptimizationReturnValue()
229 tls32_.tid = ::art::GetTid(); in InitTid()
496 tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this); in Init()
763 DCHECK(delta == -1 || delta == +1 || delta == -tls32_.debug_suspend_count) in ModifySuspendCount()
764 << delta << " " << tls32_.debug_suspend_count << " " << this; in ModifySuspendCount()
765 DCHECK_GE(tls32_.suspend_count, tls32_.debug_suspend_count) << this; in ModifySuspendCount()
771 if (UNLIKELY(delta < 0 && tls32_.suspend_count <= 0)) { in ModifySuspendCount()
776 tls32_.suspend_count += delta; in ModifySuspendCount()
778 tls32_.debug_suspend_count += delta; in ModifySuspendCount()
781 if (tls32_.suspend_count == 0) { in ModifySuspendCount()
821 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in RequestCheckpoint()
845 bool success = tls32_.state_and_flags.as_atomic_int.CompareExchangeStrongSequentiallyConsistent( in RequestCheckpoint()
881 tls32_.suspended_at_suspend_check = true; in FullSuspendCheck()
885 tls32_.suspended_at_suspend_check = false; in FullSuspendCheck()
959 << " sCount=" << thread->tls32_.suspend_count in DumpState()
960 << " dsCount=" << thread->tls32_.debug_suspend_count in DumpState()
1183 !tls32_.throwing_OutOfMemoryError); in DumpJavaStack()
1216 if (self->tls32_.thread_exit_check_count == 0) { in ThreadExitCallback()
1221 self->tls32_.thread_exit_check_count = 1; in ThreadExitCallback()
1274 Thread::Thread(bool daemon) : tls32_(daemon), wait_monitor_(nullptr), interrupted_(false) { in Thread()
1282 tls32_.state_and_flags.as_struct.flags = 0; in Thread()
1283 tls32_.state_and_flags.as_struct.state = kNative; in Thread()
1292 tls32_.suspended_at_suspend_check = false; in Thread()
1428 CHECK_EQ(tls32_.suspended_at_suspend_check, false); in ~Thread()
1984 msg, (tls32_.throwing_OutOfMemoryError ? " (recursive case)" : "")); in ThrowOutOfMemoryError()
1985 if (!tls32_.throwing_OutOfMemoryError) { in ThrowOutOfMemoryError()
1986 tls32_.throwing_OutOfMemoryError = true; in ThrowOutOfMemoryError()
1988 tls32_.throwing_OutOfMemoryError = false; in ThrowOutOfMemoryError()