Home
last modified time | relevance | path

Searched refs:kNativeStackType (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/art/runtime/
H A Dreflection.cc535 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd<kNativeStackType>())) { in InvokeWithVarArgs()
536 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeWithVarArgs()
577 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd<kNativeStackType>())) { in InvokeWithJValues()
578 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeWithJValues()
618 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd<kNativeStackType>())) { in InvokeVirtualOrInterfaceWithJValues()
619 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeVirtualOrInterfaceWithJValues()
661 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd<kNativeStackType>())) { in InvokeVirtualOrInterfaceWithVarArgs()
662 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeVirtualOrInterfaceWithVarArgs()
705 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeMethod()
800 ThrowStackOverflowError<kNativeStackType>(soa.Self()); in InvokeConstructor()
H A Dart_method.cc367 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd<kNativeStackType>())) { in Invoke()
368 ThrowStackOverflowError<kNativeStackType>(self); in Invoke()
H A Dthread.cc1038 if (!InitStack<kNativeStackType>(reinterpret_cast<uint8_t*>(read_stack_base), in Init()
1395 if constexpr (stack_type == kNativeStackType) { in InitStack()
2149 os << " | stack=" << reinterpret_cast<void*>(thread->GetStackBegin<kNativeStackType>()) in DumpState()
2150 << "-" << reinterpret_cast<void*>(thread->GetStackEnd<kNativeStackType>()) in DumpState()
2151 << " stackSize=" << PrettySize(thread->GetStackSize<kNativeStackType>()) << "\n"; in DumpState()
H A Dthread-inl.h601 uint8_t* end = GetStackEnd<kNativeStackType>() + (implicit_overflow_check in GetStackEndForInterpreter()
H A Dthread.h233 static constexpr StackType kNativeStackType = StackType::kHardware; variable
/aosp_15_r20/art/runtime/interpreter/
H A Dinterpreter.cc353 ThrowStackOverflowError<kNativeStackType>(self); in EnterInterpreterFromInvoke()
571 ThrowStackOverflowError<kNativeStackType>(self); in EnterInterpreterFromEntryPoint()
589 ThrowStackOverflowError<kNativeStackType>(self); in ArtInterpreterToInterpreterBridge()
H A Dinterpreter_common.cc65 ThrowStackOverflowError<kNativeStackType>(self); in CheckStackOverflow()
/aosp_15_r20/art/runtime/gc/collector/
H A Dmark_compact-inl.h262 stack_low_addr = self->GetStackEnd<kNativeStackType>(); in VerifyRootSingleUpdate()
264 + self->GetUsableStackSize<kNativeStackType>(); in VerifyRootSingleUpdate()
H A Dmark_compact.cc2780 stack_low_addr_ = thread_running_gc_->GetStackEnd<kNativeStackType>(); in CompactionPause()
2782 + thread_running_gc_->GetUsableStackSize<kNativeStackType>(); in CompactionPause()
/aosp_15_r20/art/runtime/gc/
H A Dheap.cc1506 if (self->IsHandlingStackOverflow<kNativeStackType>()) { in ThrowOutOfMemoryError()
2799 if (self->IsHandlingStackOverflow<kNativeStackType>()) { in CollectGarbageInternal()
3986 !self->IsHandlingStackOverflow<kNativeStackType>(); in CanAddHeapTask()
/aosp_15_r20/art/runtime/jit/
H A Djit.cc459 if (UNLIKELY(__builtin_frame_address(0) < thread->GetStackEnd<kNativeStackType>())) { in MaybeDoOnStackReplacement()