Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter.cc353 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in EnterInterpreterFromInvoke() local
354 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromInvoke()
571 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in EnterInterpreterFromEntryPoint() local
572 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in EnterInterpreterFromEntryPoint()
589 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in ArtInterpreterToInterpreterBridge() local
590 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) { in ArtInterpreterToInterpreterBridge()
Dinterpreter_common.cc61 bool implicit_check = Runtime::Current()->GetImplicitStackOverflowChecks(); in CheckStackOverflow() local
62 uint8_t* stack_end = self->GetStackEndForInterpreter(implicit_check); in CheckStackOverflow()