diff options
Diffstat (limited to 'runtime/interpreter/interpreter.h')
-rw-r--r-- | runtime/interpreter/interpreter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/interpreter/interpreter.h b/runtime/interpreter/interpreter.h index 0d43b9090a..d7e69a6755 100644 --- a/runtime/interpreter/interpreter.h +++ b/runtime/interpreter/interpreter.h @@ -69,6 +69,12 @@ void CheckInterpreterAsmConstants(); void InitInterpreterTls(Thread* self); +// Returns true if the previous frame has the ForceRetryInstruction bit set. This is required for +// ForPopFrame to work correctly since that will cause the java function return with null/0 which +// might not be expected by the code being run. +bool PrevFrameWillRetry(Thread* self, const ShadowFrame& frame) + REQUIRES_SHARED(Locks::mutator_lock_); + } // namespace interpreter } // namespace art |