diff options
author | David Srbecky <dsrbecky@google.com> | 2018-07-05 00:03:21 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-07-05 00:03:21 +0000 |
commit | a296f908e186398ff413c78f2460cb3138e531ab (patch) | |
tree | 04592d0bcf8afac399dc562efdcac491072366eb /runtime/quick_exception_handler.cc | |
parent | b275072ddfb1bfcacc914aff08cb0f5774000258 (diff) | |
parent | 93bd3619de4616040d672a4ed3825976bed4bfce (diff) |
Merge "Use iterators to access stack map data."
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r-- | runtime/quick_exception_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 2dbde6f510..e8d9658dd4 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -404,7 +404,7 @@ class DeoptimizeStackVisitor FINAL : public StackVisitor { uint32_t register_mask = code_info.GetRegisterMaskOf(stack_map); BitMemoryRegion stack_mask = code_info.GetStackMaskOf(stack_map); DexRegisterMap vreg_map = IsInInlinedFrame() - ? code_info.GetDexRegisterMapAtDepth(GetCurrentInliningDepth() - 1, stack_map) + ? code_info.GetInlineDexRegisterMapOf(stack_map, GetCurrentInlinedFrame()) : code_info.GetDexRegisterMapOf(stack_map); if (vreg_map.empty()) { return; |