diff options
Diffstat (limited to 'runtime/java_frame_root_info.h')
-rw-r--r-- | runtime/java_frame_root_info.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/java_frame_root_info.h b/runtime/java_frame_root_info.h index c21eee1b32..c2b4493814 100644 --- a/runtime/java_frame_root_info.h +++ b/runtime/java_frame_root_info.h @@ -41,6 +41,8 @@ class JavaFrameRootInfo final : public RootInfo { static constexpr size_t kMethodDeclaringClass = -3; // The root is from the argument to a Proxy invoke. static constexpr size_t kProxyReferenceArgument = -4; + // The root is from the argument to a native invoke. + static constexpr size_t kNativeReferenceArgument = -5; // The maximum precise vreg number static constexpr size_t kMaxVReg = std::numeric_limits<uint16_t>::max(); |