Home
last modified time | relevance | path

Searched refs:implicit_check (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/art/runtime/interpreter/
H A Dinterpreter.cc351 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in EnterInterpreterFromInvoke() local
352 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromInvoke()
569 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in EnterInterpreterFromEntryPoint() local
570 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromEntryPoint()
587 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in ArtInterpreterToInterpreterBridge() local
588 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in ArtInterpreterToInterpreterBridge()
H A Dinterpreter_common.cc62 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in CheckStackOverflow() local
63 uint8_t* stack_end = self->GetStackEndForInterpreter(implicit_check); in CheckStackOverflow()