From 42fcd9838a87abaf7a2ef86853a5287f86dbe391 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 22 Apr 2014 11:03:52 +0000 Subject: Revert "Revert "64bit changes to the stack walker for the Quick ABI."" This reverts commit 8d5ead52a92675c258113d3dfa71bf8fceba5d9f. Change-Id: I6b4774a9bd180de33551975e106322ba1192e6ab --- runtime/stack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack.cc') diff --git a/runtime/stack.cc b/runtime/stack.cc index ab3bd855b2..9c709ae505 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -187,7 +187,7 @@ void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_val uint32_t core_spills = m->GetCoreSpillMask(); uint32_t fp_spills = m->GetFpSpillMask(); size_t frame_size = m->GetFrameSizeInBytes(); - int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg); + int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA); byte* vreg_addr = reinterpret_cast(GetCurrentQuickFrame()) + offset; *reinterpret_cast(vreg_addr) = new_value; } -- cgit v1.2.3-59-g8ed1b