Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter.cc406 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks(); in EnterInterpreterFromInvoke() local
407 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromInvoke()
628 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks(); in EnterInterpreterFromEntryPoint() local
629 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromEntryPoint()
645 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks(); in ArtInterpreterToInterpreterBridge() local
646 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in ArtInterpreterToInterpreterBridge()
Dinterpreter_common.cc60 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks(); in CheckStackOverflow() local
61 uint8_t* stack_end = self->GetStackEndForInterpreter(implicit_check); in CheckStackOverflow()