blob: 229238e0f7fe620a3162c89279765a75f62a8f6b [file] [log] [blame]
Elliott Hughes68e76522011-10-05 13:22:16 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "stack.h"
18
Andreas Gampe46ee31b2016-12-14 10:11:49 -080019#include "android-base/stringprintf.h"
20
Ian Rogerse63db272014-07-15 15:36:11 -070021#include "arch/context.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Andreas Gampe8228cdf2017-05-30 15:03:54 -070023#include "base/callee_save_type.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070024#include "base/enums.h"
Dave Allisonf9439142014-03-27 15:10:22 -070025#include "base/hex_dump.h"
David Sehr9e734c72018-01-04 17:56:19 -080026#include "dex/dex_file_types.h"
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010027#include "entrypoints/entrypoint_utils-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070028#include "entrypoints/runtime_asm_entrypoints.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "gc/space/image_space.h"
30#include "gc/space/space-inl.h"
Andreas Gampe36a296f2017-06-13 14:11:11 -070031#include "interpreter/shadow_frame.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010032#include "jit/jit.h"
33#include "jit/jit_code_cache.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070034#include "linear_alloc.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070035#include "managed_stack.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070036#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/object-inl.h"
38#include "mirror/object_array-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010039#include "oat_quick_method_header.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010040#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070041#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070042#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070043#include "thread_list.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070044
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080045namespace art {
46
Andreas Gampe46ee31b2016-12-14 10:11:49 -080047using android::base::StringPrintf;
48
Mathieu Chartier8405bfd2016-02-05 12:00:49 -080049static constexpr bool kDebugStackWalk = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -070050
Hiroshi Yamauchi02f365f2017-02-03 15:06:00 -080051StackVisitor::StackVisitor(Thread* thread,
52 Context* context,
53 StackWalkKind walk_kind,
54 bool check_suspended)
55 : StackVisitor(thread, context, walk_kind, 0, check_suspended) {}
Ian Rogers7a22fa62013-01-23 12:16:16 -080056
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010057StackVisitor::StackVisitor(Thread* thread,
58 Context* context,
59 StackWalkKind walk_kind,
Hiroshi Yamauchi02f365f2017-02-03 15:06:00 -080060 size_t num_frames,
61 bool check_suspended)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010062 : thread_(thread),
63 walk_kind_(walk_kind),
64 cur_shadow_frame_(nullptr),
65 cur_quick_frame_(nullptr),
66 cur_quick_frame_pc_(0),
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010067 cur_oat_quick_method_header_(nullptr),
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010068 num_frames_(num_frames),
69 cur_depth_(0),
Nicolas Geoffray57f61612015-05-15 13:20:41 +010070 current_inlining_depth_(0),
Hiroshi Yamauchi02f365f2017-02-03 15:06:00 -080071 context_(context),
72 check_suspended_(check_suspended) {
73 if (check_suspended_) {
74 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
75 }
Ian Rogers5cf98192014-05-29 21:31:50 -070076}
77
Andreas Gampe36a296f2017-06-13 14:11:11 -070078static InlineInfo GetCurrentInlineInfo(const OatQuickMethodHeader* method_header,
79 uintptr_t cur_quick_frame_pc)
80 REQUIRES_SHARED(Locks::mutator_lock_) {
81 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010082 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +000083 CodeInfoEncoding encoding = code_info.ExtractEncoding();
David Brazdilf677ebf2015-05-29 16:29:43 +010084 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +010085 DCHECK(stack_map.IsValid());
David Brazdilf677ebf2015-05-29 16:29:43 +010086 return code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +010087}
88
Mathieu Chartiere401d142015-04-22 13:56:20 -070089ArtMethod* StackVisitor::GetMethod() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +010090 if (cur_shadow_frame_ != nullptr) {
91 return cur_shadow_frame_->GetMethod();
92 } else if (cur_quick_frame_ != nullptr) {
93 if (IsInInlinedFrame()) {
94 size_t depth_in_stack_map = current_inlining_depth_ - 1;
Andreas Gampe36a296f2017-06-13 14:11:11 -070095 InlineInfo inline_info = GetCurrentInlineInfo(GetCurrentOatQuickMethodHeader(),
96 cur_quick_frame_pc_);
David Srbecky61b28a12016-02-25 21:55:03 +000097 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
98 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -070099 MethodInfo method_info = method_header->GetOptimizedMethodInfo();
Mathieu Chartier45bf2502016-03-31 11:07:09 -0700100 DCHECK(walk_kind_ != StackWalkKind::kSkipInlinedFrames);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100101 return GetResolvedMethod(*GetCurrentQuickFrame(),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700102 method_info,
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100103 inline_info,
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800104 encoding.inline_info.encoding,
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100105 depth_in_stack_map);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100106 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700107 return *cur_quick_frame_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100108 }
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100109 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700110 return nullptr;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100111}
112
Dave Allisonb373e092014-02-20 16:06:36 -0800113uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700114 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700115 return cur_shadow_frame_->GetDexPC();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700116 } else if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100117 if (IsInInlinedFrame()) {
118 size_t depth_in_stack_map = current_inlining_depth_ - 1;
David Srbecky61b28a12016-02-25 21:55:03 +0000119 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
120 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
Andreas Gampe36a296f2017-06-13 14:11:11 -0700121 return GetCurrentInlineInfo(GetCurrentOatQuickMethodHeader(), cur_quick_frame_pc_).
122 GetDexPcAtDepth(encoding.inline_info.encoding, depth_in_stack_map);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100123 } else if (cur_oat_quick_method_header_ == nullptr) {
Andreas Gampee2abbc62017-09-15 11:59:26 -0700124 return dex::kDexNoIndex;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100125 } else {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100126 return cur_oat_quick_method_header_->ToDexPc(
127 GetMethod(), cur_quick_frame_pc_, abort_on_failure);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100128 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700129 } else {
130 return 0;
131 }
132}
133
Mathieu Chartiere401d142015-04-22 13:56:20 -0700134extern "C" mirror::Object* artQuickGetProxyThisObject(ArtMethod** sp)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700135 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertza836bc92014-11-25 16:30:53 +0100136
Ian Rogers62d6c772013-02-27 08:32:07 -0800137mirror::Object* StackVisitor::GetThisObject() const {
Andreas Gampe542451c2016-07-26 09:02:02 -0700138 DCHECK_EQ(Runtime::Current()->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700139 ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800140 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100141 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800142 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100143 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700144 HandleScope* hs = reinterpret_cast<HandleScope*>(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100145 reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700146 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800147 } else {
148 return cur_shadow_frame_->GetVRegReference(0);
149 }
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000150 } else if (m->IsProxyMethod()) {
Sebastien Hertza836bc92014-11-25 16:30:53 +0100151 if (cur_quick_frame_ != nullptr) {
152 return artQuickGetProxyThisObject(cur_quick_frame_);
153 } else {
154 return cur_shadow_frame_->GetVRegReference(0);
155 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800156 } else {
David Sehr0225f8e2018-01-31 08:52:24 +0000157 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800158 if (!accessor.HasCodeItem()) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800159 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
David Sehr709b0702016-10-13 09:12:37 -0700160 << ArtMethod::PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800161 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800162 } else {
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800163 uint16_t reg = accessor.RegistersSize() - accessor.InsSize();
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000164 uint32_t value = 0;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700165 bool success = GetVReg(m, reg, kReferenceVReg, &value);
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000166 // We currently always guarantee the `this` object is live throughout the method.
David Sehr709b0702016-10-13 09:12:37 -0700167 CHECK(success) << "Failed to read the this object in " << ArtMethod::PrettyMethod(m);
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000168 return reinterpret_cast<mirror::Object*>(value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800169 }
170 }
171}
172
Ian Rogers0c7abda2012-09-19 13:33:42 -0700173size_t StackVisitor::GetNativePcOffset() const {
174 DCHECK(!IsShadowFrame());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100175 return GetCurrentOatQuickMethodHeader()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700176}
177
Mingyao Yang99170c62015-07-06 11:10:37 -0700178bool StackVisitor::GetVRegFromDebuggerShadowFrame(uint16_t vreg,
179 VRegKind kind,
180 uint32_t* val) const {
181 size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId();
182 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id);
183 if (shadow_frame != nullptr) {
184 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id);
185 DCHECK(updated_vreg_flags != nullptr);
186 if (updated_vreg_flags[vreg]) {
187 // Value is set by the debugger.
188 if (kind == kReferenceVReg) {
189 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
190 shadow_frame->GetVRegReference(vreg)));
191 } else {
192 *val = shadow_frame->GetVReg(vreg);
193 }
194 return true;
195 }
196 }
197 // No value is set by the debugger.
198 return false;
199}
200
Mathieu Chartiere401d142015-04-22 13:56:20 -0700201bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200202 if (cur_quick_frame_ != nullptr) {
203 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800204 DCHECK(m == GetMethod());
Mingyao Yang99170c62015-07-06 11:10:37 -0700205 // Check if there is value set by the debugger.
206 if (GetVRegFromDebuggerShadowFrame(vreg, kind, val)) {
207 return true;
208 }
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100209 DCHECK(cur_oat_quick_method_header_->IsOptimized());
210 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700211 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100212 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz09687442015-11-17 10:35:39 +0100213 if (kind == kReferenceVReg) {
214 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
215 cur_shadow_frame_->GetVRegReference(vreg)));
216 } else {
217 *val = cur_shadow_frame_->GetVReg(vreg);
218 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200219 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700220 }
221}
222
Mathieu Chartiere401d142015-04-22 13:56:20 -0700223bool StackVisitor::GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100224 uint32_t* val) const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100225 DCHECK_EQ(m, GetMethod());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800226 // Can't be null or how would we compile its instructions?
227 DCHECK(m->GetCodeItem() != nullptr) << m->PrettyMethod();
David Sehr0225f8e2018-01-31 08:52:24 +0000228 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800229 uint16_t number_of_dex_registers = accessor.RegistersSize();
230 DCHECK_LT(vreg, number_of_dex_registers);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100231 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
232 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000233 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100234
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100235 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100236 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +0100237 DCHECK(stack_map.IsValid());
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100238 size_t depth_in_stack_map = current_inlining_depth_ - 1;
239
240 DexRegisterMap dex_register_map = IsInInlinedFrame()
David Brazdilf677ebf2015-05-29 16:29:43 +0100241 ? code_info.GetDexRegisterMapAtDepth(depth_in_stack_map,
242 code_info.GetInlineInfoOf(stack_map, encoding),
243 encoding,
244 number_of_dex_registers)
245 : code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_dex_registers);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100246
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000247 if (!dex_register_map.IsValid()) {
248 return false;
249 }
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000250 DexRegisterLocation::Kind location_kind =
David Brazdilf677ebf2015-05-29 16:29:43 +0100251 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100252 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000253 case DexRegisterLocation::Kind::kInStack: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100254 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg,
255 number_of_dex_registers,
256 code_info,
257 encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100258 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
259 *val = *reinterpret_cast<const uint32_t*>(addr);
260 return true;
261 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000262 case DexRegisterLocation::Kind::kInRegister:
David Brazdild9cb68e2015-08-25 13:52:43 +0100263 case DexRegisterLocation::Kind::kInRegisterHigh:
264 case DexRegisterLocation::Kind::kInFpuRegister:
265 case DexRegisterLocation::Kind::kInFpuRegisterHigh: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100266 uint32_t reg =
267 dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100268 return GetRegisterIfAccessible(reg, kind, val);
269 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000270 case DexRegisterLocation::Kind::kConstant:
David Brazdilf677ebf2015-05-29 16:29:43 +0100271 *val = dex_register_map.GetConstant(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100272 return true;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000273 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100274 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000275 default:
276 LOG(FATAL)
David Srbecky7dc11782016-02-25 13:23:56 +0000277 << "Unexpected location kind "
278 << dex_register_map.GetLocationInternalKind(vreg,
279 number_of_dex_registers,
280 code_info,
281 encoding);
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000282 UNREACHABLE();
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100283 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100284}
285
286bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
287 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
David Brazdil77a48ae2015-09-15 12:34:04 +0000288
Vladimir Marko239d6ea2016-09-05 10:44:04 +0100289 if (kRuntimeISA == InstructionSet::kX86 && is_float) {
290 // X86 float registers are 64-bit and each XMM register is provided as two separate
291 // 32-bit registers by the context.
292 reg = (kind == kDoubleHiVReg) ? (2 * reg + 1) : (2 * reg);
293 }
David Brazdil77a48ae2015-09-15 12:34:04 +0000294
Goran Jakovljevic986660c2015-12-10 11:44:50 +0100295 // MIPS32 float registers are used as 64-bit (for MIPS32r2 it is pair
296 // F(2n)-F(2n+1), and for MIPS32r6 it is 64-bit register F(2n)). When
297 // accessing upper 32-bits from double, reg + 1 should be used.
298 if ((kRuntimeISA == InstructionSet::kMips) && (kind == kDoubleHiVReg)) {
299 DCHECK_ALIGNED(reg, 2);
300 reg++;
301 }
302
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100303 if (!IsAccessibleRegister(reg, is_float)) {
304 return false;
305 }
306 uintptr_t ptr_val = GetRegister(reg, is_float);
307 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
308 if (target64) {
309 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
310 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
311 int64_t value_long = static_cast<int64_t>(ptr_val);
312 if (wide_lo) {
313 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
314 } else if (wide_hi) {
315 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
316 }
317 }
318 *val = ptr_val;
319 return true;
320}
321
Mingyao Yang99170c62015-07-06 11:10:37 -0700322bool StackVisitor::GetVRegPairFromDebuggerShadowFrame(uint16_t vreg,
323 VRegKind kind_lo,
324 VRegKind kind_hi,
325 uint64_t* val) const {
326 uint32_t low_32bits;
327 uint32_t high_32bits;
328 bool success = GetVRegFromDebuggerShadowFrame(vreg, kind_lo, &low_32bits);
329 success &= GetVRegFromDebuggerShadowFrame(vreg + 1, kind_hi, &high_32bits);
330 if (success) {
331 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
332 }
333 return success;
334}
335
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200337 VRegKind kind_hi, uint64_t* val) const {
338 if (kind_lo == kLongLoVReg) {
339 DCHECK_EQ(kind_hi, kLongHiVReg);
340 } else if (kind_lo == kDoubleLoVReg) {
341 DCHECK_EQ(kind_hi, kDoubleHiVReg);
342 } else {
343 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100344 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200345 }
Mingyao Yang99170c62015-07-06 11:10:37 -0700346 // Check if there is value set by the debugger.
347 if (GetVRegPairFromDebuggerShadowFrame(vreg, kind_lo, kind_hi, val)) {
348 return true;
349 }
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200350 if (cur_quick_frame_ != nullptr) {
351 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
352 DCHECK(m == GetMethod());
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100353 DCHECK(cur_oat_quick_method_header_->IsOptimized());
354 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200355 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100356 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200357 *val = cur_shadow_frame_->GetVRegLong(vreg);
358 return true;
359 }
360}
361
Mathieu Chartiere401d142015-04-22 13:56:20 -0700362bool StackVisitor::GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100363 VRegKind kind_lo, VRegKind kind_hi,
364 uint64_t* val) const {
365 uint32_t low_32bits;
366 uint32_t high_32bits;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700367 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
368 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100369 if (success) {
370 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
371 }
372 return success;
373}
374
375bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
376 VRegKind kind_lo, uint64_t* val) const {
377 const bool is_float = (kind_lo == kDoubleLoVReg);
378 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
379 return false;
380 }
381 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
382 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
383 bool target64 = Is64BitInstructionSet(kRuntimeISA);
384 if (target64) {
385 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
386 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
387 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
388 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
389 }
390 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
391 return true;
392}
393
Mingyao Yang636b9252015-07-31 16:40:24 -0700394bool StackVisitor::SetVReg(ArtMethod* m,
395 uint16_t vreg,
396 uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800397 VRegKind kind) {
David Sehr0225f8e2018-01-31 08:52:24 +0000398 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800399 if (!accessor.HasCodeItem()) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700400 return false;
401 }
402 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
403 if (shadow_frame == nullptr) {
404 // This is a compiled frame: we must prepare and update a shadow frame that will
405 // be executed by the interpreter after deoptimization of the stack.
406 const size_t frame_id = GetFrameId();
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800407 const uint16_t num_regs = accessor.RegistersSize();
Mingyao Yang99170c62015-07-06 11:10:37 -0700408 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
409 CHECK(shadow_frame != nullptr);
410 // Remember the vreg has been set for debugging and must not be overwritten by the
411 // original value during deoptimization of the stack.
412 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
413 }
414 if (kind == kReferenceVReg) {
415 shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value));
416 } else {
417 shadow_frame->SetVReg(vreg, new_value);
418 }
419 return true;
420}
421
Mingyao Yang636b9252015-07-31 16:40:24 -0700422bool StackVisitor::SetVRegPair(ArtMethod* m,
423 uint16_t vreg,
424 uint64_t new_value,
425 VRegKind kind_lo,
426 VRegKind kind_hi) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700427 if (kind_lo == kLongLoVReg) {
428 DCHECK_EQ(kind_hi, kLongHiVReg);
429 } else if (kind_lo == kDoubleLoVReg) {
430 DCHECK_EQ(kind_hi, kDoubleHiVReg);
431 } else {
432 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
433 UNREACHABLE();
434 }
David Sehr0225f8e2018-01-31 08:52:24 +0000435 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800436 if (!accessor.HasCodeItem()) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700437 return false;
438 }
439 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
440 if (shadow_frame == nullptr) {
441 // This is a compiled frame: we must prepare for deoptimization (see SetVRegFromDebugger).
442 const size_t frame_id = GetFrameId();
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800443 const uint16_t num_regs = accessor.RegistersSize();
Mingyao Yang99170c62015-07-06 11:10:37 -0700444 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
445 CHECK(shadow_frame != nullptr);
446 // Remember the vreg pair has been set for debugging and must not be overwritten by the
447 // original value during deoptimization of the stack.
448 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
449 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true;
450 }
451 shadow_frame->SetVRegLong(vreg, new_value);
452 return true;
453}
454
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100455bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
456 DCHECK(context_ != nullptr);
457 return context_->IsAccessibleGPR(reg);
458}
459
Mathieu Chartier815873e2014-02-13 18:02:13 -0800460uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100461 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
462 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800463 return context_->GetGPRAddress(reg);
464}
465
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100466uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
467 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
468 DCHECK(context_ != nullptr);
469 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700470}
471
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100472bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
473 DCHECK(context_ != nullptr);
474 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200475}
476
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100477uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
478 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
479 DCHECK(context_ != nullptr);
480 return context_->GetFPR(reg);
481}
482
Ian Rogers0399dde2012-06-06 17:09:28 -0700483uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700484 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700485 DCHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100486 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700487 return *reinterpret_cast<uintptr_t*>(pc_addr);
488}
489
490void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700491 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700492 CHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100493 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700494 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
495}
496
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100497size_t StackVisitor::ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700498 struct NumFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100499 NumFramesVisitor(Thread* thread_in, StackWalkKind walk_kind_in)
500 : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700501
Ian Rogers5cf98192014-05-29 21:31:50 -0700502 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700503 frames++;
504 return true;
505 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700506
Ian Rogers0399dde2012-06-06 17:09:28 -0700507 size_t frames;
508 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100509 NumFramesVisitor visitor(thread, walk_kind);
Ian Rogers0399dde2012-06-06 17:09:28 -0700510 visitor.WalkStack(true);
511 return visitor.frames;
512}
513
Mathieu Chartiere401d142015-04-22 13:56:20 -0700514bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700515 struct HasMoreFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100516 HasMoreFramesVisitor(Thread* thread,
517 StackWalkKind walk_kind,
518 size_t num_frames,
519 size_t frame_height)
520 : StackVisitor(thread, nullptr, walk_kind, num_frames),
521 frame_height_(frame_height),
522 found_frame_(false),
523 has_more_frames_(false),
524 next_method_(nullptr),
525 next_dex_pc_(0) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700526 }
527
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700528 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700529 if (found_frame_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700530 ArtMethod* method = GetMethod();
Ian Rogers5cf98192014-05-29 21:31:50 -0700531 if (method != nullptr && !method->IsRuntimeMethod()) {
532 has_more_frames_ = true;
533 next_method_ = method;
534 next_dex_pc_ = GetDexPc();
535 return false; // End stack walk once next method is found.
536 }
537 } else if (GetFrameHeight() == frame_height_) {
538 found_frame_ = true;
539 }
540 return true;
541 }
542
543 size_t frame_height_;
544 bool found_frame_;
545 bool has_more_frames_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700546 ArtMethod* next_method_;
Ian Rogers5cf98192014-05-29 21:31:50 -0700547 uint32_t next_dex_pc_;
548 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100549 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
Ian Rogers5cf98192014-05-29 21:31:50 -0700550 visitor.WalkStack(true);
551 *next_method = visitor.next_method_;
552 *next_dex_pc = visitor.next_dex_pc_;
553 return visitor.has_more_frames_;
554}
555
Ian Rogers7a22fa62013-01-23 12:16:16 -0800556void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800557 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800558 explicit DescribeStackVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100559 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800560
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700561 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800562 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
563 return true;
564 }
565 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800566 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800567 visitor.WalkStack(true);
568}
569
Ian Rogers40e3bac2012-11-20 00:09:14 -0800570std::string StackVisitor::DescribeLocation() const {
571 std::string result("Visiting method '");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700572 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700573 if (m == nullptr) {
Ian Rogers306057f2012-11-26 12:45:53 -0800574 return "upcall";
575 }
David Sehr709b0702016-10-13 09:12:37 -0700576 result += m->PrettyMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800577 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800578 if (!IsShadowFrame()) {
579 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
580 }
581 return result;
582}
583
Alex Lightdba61482016-12-21 08:20:29 -0800584void StackVisitor::SetMethod(ArtMethod* method) {
585 DCHECK(GetMethod() != nullptr);
586 if (cur_shadow_frame_ != nullptr) {
587 cur_shadow_frame_->SetMethod(method);
588 } else {
589 DCHECK(cur_quick_frame_ != nullptr);
590 CHECK(!IsInInlinedFrame()) << "We do not support setting inlined method's ArtMethod!";
Alex Light1ebe4fe2017-01-30 14:57:11 -0800591 *cur_quick_frame_ = method;
Alex Lightdba61482016-12-21 08:20:29 -0800592 }
593}
594
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100595static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700596 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100597 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) {
598 return;
599 }
600
601 if (pc == reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())) {
602 return;
603 }
604
Mingyao Yang88ca8ba2017-05-23 14:21:07 -0700605 Runtime* runtime = Runtime::Current();
606 if (runtime->UseJitCompilation() &&
607 runtime->GetJit()->GetCodeCache()->ContainsPc(reinterpret_cast<const void*>(pc))) {
608 return;
609 }
610
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100611 const void* code = method->GetEntryPointFromQuickCompiledCode();
Alex Lightdb01a092017-04-03 15:39:55 -0700612 if (code == GetQuickInstrumentationEntryPoint() || code == GetInvokeObsoleteMethodStub()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100613 return;
614 }
615
616 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
617 if (class_linker->IsQuickToInterpreterBridge(code) ||
618 class_linker->IsQuickResolutionStub(code)) {
619 return;
620 }
621
Calin Juravleffc87072016-04-20 14:22:09 +0100622 if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100623 return;
624 }
625
Mingyao Yang063fc772016-08-02 11:02:54 -0700626 uint32_t code_size = OatQuickMethodHeader::FromEntryPoint(code)->GetCodeSize();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100627 uintptr_t code_start = reinterpret_cast<uintptr_t>(code);
628 CHECK(code_start <= pc && pc <= (code_start + code_size))
David Sehr709b0702016-10-13 09:12:37 -0700629 << method->PrettyMethod()
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100630 << " pc=" << std::hex << pc
Roland Levillain0d5a2812015-11-13 10:07:31 +0000631 << " code_start=" << code_start
632 << " code_size=" << code_size;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100633}
634
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700635void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800636 if (kIsDebugBuild) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700637 ArtMethod* method = GetMethod();
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +0100638 mirror::Class* declaring_class = method->GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700639 // Runtime methods have null declaring class.
640 if (!method->IsRuntimeMethod()) {
641 CHECK(declaring_class != nullptr);
642 CHECK_EQ(declaring_class->GetClass(), declaring_class->GetClass()->GetClass())
643 << declaring_class;
644 } else {
645 CHECK(declaring_class == nullptr);
646 }
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700647 Runtime* const runtime = Runtime::Current();
648 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc();
649 if (!linear_alloc->Contains(method)) {
650 // Check class linker linear allocs.
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +0100651 // We get the canonical method as copied methods may have their declaring
652 // class from another class loader.
653 ArtMethod* canonical = method->GetCanonicalMethod();
654 mirror::Class* klass = canonical->GetDeclaringClass();
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700655 LinearAlloc* const class_linear_alloc = (klass != nullptr)
Mathieu Chartier5b830502016-03-02 10:30:23 -0800656 ? runtime->GetClassLinker()->GetAllocatorForClassLoader(klass->GetClassLoader())
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700657 : linear_alloc;
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +0100658 if (!class_linear_alloc->Contains(canonical)) {
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700659 // Check image space.
660 bool in_image = false;
661 for (auto& space : runtime->GetHeap()->GetContinuousSpaces()) {
662 if (space->IsImageSpace()) {
663 auto* image_space = space->AsImageSpace();
664 const auto& header = image_space->GetImageHeader();
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700665 const ImageSection& methods = header.GetMethodsSection();
666 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection();
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +0100667 const size_t offset = reinterpret_cast<const uint8_t*>(canonical) - image_space->Begin();
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700668 if (methods.Contains(offset) || runtime_methods.Contains(offset)) {
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700669 in_image = true;
670 break;
671 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700672 }
673 }
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +0100674 CHECK(in_image) << canonical->PrettyMethod() << " not in linear alloc or image";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700675 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700676 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800677 if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100678 AssertPcIsWithinQuickCode(method, cur_quick_frame_pc_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800679 // Frame sanity.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100680 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800681 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700682 // A rough guess at an upper size we expect to see for a frame.
683 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700684 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700685 // 3+3 register spills
686 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700687 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
688 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
689 const size_t kMaxExpectedFrameSize = 2 * KB;
David Sehr709b0702016-10-13 09:12:37 -0700690 CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100691 size_t return_pc_offset = GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800692 CHECK_LT(return_pc_offset, frame_size);
693 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700694 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700695}
696
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100697// Counts the number of references in the parameter list of the corresponding method.
698// Note: Thus does _not_ include "this" for non-static methods.
699static uint32_t GetNumberOfReferenceArgsWithoutReceiver(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700700 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100701 uint32_t shorty_len;
702 const char* shorty = method->GetShorty(&shorty_len);
703 uint32_t refs = 0;
704 for (uint32_t i = 1; i < shorty_len ; ++i) {
705 if (shorty[i] == 'L') {
706 refs++;
707 }
708 }
709 return refs;
710}
711
712QuickMethodFrameInfo StackVisitor::GetCurrentQuickFrameInfo() const {
713 if (cur_oat_quick_method_header_ != nullptr) {
714 return cur_oat_quick_method_header_->GetFrameInfo();
715 }
716
717 ArtMethod* method = GetMethod();
718 Runtime* runtime = Runtime::Current();
719
720 if (method->IsAbstract()) {
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700721 return runtime->GetCalleeSaveMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100722 }
723
724 // This goes before IsProxyMethod since runtime methods have a null declaring class.
725 if (method->IsRuntimeMethod()) {
726 return runtime->GetRuntimeMethodFrameInfo(method);
727 }
728
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100729 if (method->IsProxyMethod()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000730 // There is only one direct method of a proxy class: the constructor. A direct method is
731 // cloned from the original java.lang.reflect.Proxy and is executed as usual quick
732 // compiled method without any stubs. Therefore the method must have a OatQuickMethodHeader.
733 DCHECK(!method->IsDirect() && !method->IsConstructor())
734 << "Constructors of proxy classes must have a OatQuickMethodHeader";
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700735 return runtime->GetCalleeSaveMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100736 }
737
Vladimir Marko2196c652017-11-30 16:16:07 +0000738 // The only remaining case is if the method is native and uses the generic JNI stub,
739 // called either directly or through some (resolution, instrumentation) trampoline.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100740 DCHECK(method->IsNative());
Vladimir Marko2196c652017-11-30 16:16:07 +0000741 if (kIsDebugBuild) {
742 ClassLinker* class_linker = runtime->GetClassLinker();
743 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(method,
744 kRuntimePointerSize);
745 CHECK(class_linker->IsQuickGenericJniStub(entry_point) ||
746 // The current entrypoint (after filtering out trampolines) may have changed
747 // from GenericJNI to JIT-compiled stub since we have entered this frame.
748 (runtime->GetJit() != nullptr &&
749 runtime->GetJit()->GetCodeCache()->ContainsPc(entry_point))) << method->PrettyMethod();
750 }
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100751 // Generic JNI frame.
752 uint32_t handle_refs = GetNumberOfReferenceArgsWithoutReceiver(method) + 1;
753 size_t scope_size = HandleScope::SizeOf(handle_refs);
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100754 QuickMethodFrameInfo callee_info =
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700755 runtime->GetCalleeSaveMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100756
757 // Callee saves + handle scope + method ref + alignment
758 // Note: -sizeof(void*) since callee-save frame stores a whole method pointer.
759 size_t frame_size = RoundUp(
760 callee_info.FrameSizeInBytes() - sizeof(void*) + sizeof(ArtMethod*) + scope_size,
761 kStackAlignment);
762 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());
763}
764
Andreas Gampe585da952016-12-02 14:52:29 -0800765template <StackVisitor::CountTransitions kCount>
Ian Rogers0399dde2012-06-06 17:09:28 -0700766void StackVisitor::WalkStack(bool include_transitions) {
Hiroshi Yamauchi02f365f2017-02-03 15:06:00 -0800767 if (check_suspended_) {
768 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
769 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800770 CHECK_EQ(cur_depth_, 0U);
771 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
Alex Lightb81a9842016-12-15 00:59:05 +0000772 uint32_t instrumentation_stack_depth = 0;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000773 size_t inlined_frames_count = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700774
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700775 for (const ManagedStack* current_fragment = thread_->GetManagedStack();
776 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700777 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
778 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700779 cur_quick_frame_pc_ = 0;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100780 cur_oat_quick_method_header_ = nullptr;
Dave Allisonf9439142014-03-27 15:10:22 -0700781
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700782 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
Ian Rogers0399dde2012-06-06 17:09:28 -0700783 // Can't be both a shadow and a quick fragment.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700784 DCHECK(current_fragment->GetTopShadowFrame() == nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700785 ArtMethod* method = *cur_quick_frame_;
Vladimir Marko2196c652017-11-30 16:16:07 +0000786 DCHECK(method != nullptr);
787 bool header_retrieved = false;
788 if (method->IsNative()) {
789 // We do not have a PC for the first frame, so we cannot simply use
790 // ArtMethod::GetOatQuickMethodHeader() as we're unable to distinguish there
791 // between GenericJNI frame and JIT-compiled JNI stub; the entrypoint may have
792 // changed since the frame was entered. The top quick frame tag indicates
793 // GenericJNI here, otherwise it's either AOT-compiled or JNI-compiled JNI stub.
794 if (UNLIKELY(current_fragment->GetTopQuickFrameTag())) {
795 // The generic JNI does not have any method header.
796 cur_oat_quick_method_header_ = nullptr;
797 } else {
798 const void* existing_entry_point = method->GetEntryPointFromQuickCompiledCode();
799 CHECK(existing_entry_point != nullptr);
800 Runtime* runtime = Runtime::Current();
801 ClassLinker* class_linker = runtime->GetClassLinker();
802 // Check whether we can quickly get the header from the current entrypoint.
803 if (!class_linker->IsQuickGenericJniStub(existing_entry_point) &&
804 !class_linker->IsQuickResolutionStub(existing_entry_point) &&
805 existing_entry_point != GetQuickInstrumentationEntryPoint()) {
806 cur_oat_quick_method_header_ =
807 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
808 } else {
809 const void* code = method->GetOatMethodQuickCode(class_linker->GetImagePointerSize());
810 if (code != nullptr) {
811 cur_oat_quick_method_header_ = OatQuickMethodHeader::FromEntryPoint(code);
812 } else {
813 // This must be a JITted JNI stub frame.
814 CHECK(runtime->GetJit() != nullptr);
815 code = runtime->GetJit()->GetCodeCache()->GetJniStubCode(method);
816 CHECK(code != nullptr) << method->PrettyMethod();
817 cur_oat_quick_method_header_ = OatQuickMethodHeader::FromCodePointer(code);
818 }
819 }
820 }
821 header_retrieved = true;
822 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700823 while (method != nullptr) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000824 if (!header_retrieved) {
825 cur_oat_quick_method_header_ = method->GetOatQuickMethodHeader(cur_quick_frame_pc_);
826 }
827 header_retrieved = false; // Force header retrieval in next iteration.
Dave Allison5cd33752014-04-15 15:57:58 -0700828 SanityCheckFrame();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100829
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100830 if ((walk_kind_ == StackWalkKind::kIncludeInlinedFrames)
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100831 && (cur_oat_quick_method_header_ != nullptr)
832 && cur_oat_quick_method_header_->IsOptimized()) {
833 CodeInfo code_info = cur_oat_quick_method_header_->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000834 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100835 uint32_t native_pc_offset =
836 cur_oat_quick_method_header_->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100837 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800838 if (stack_map.IsValid() && stack_map.HasInlineInfo(encoding.stack_map.encoding)) {
David Brazdilf677ebf2015-05-29 16:29:43 +0100839 InlineInfo inline_info = code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100840 DCHECK_EQ(current_inlining_depth_, 0u);
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800841 for (current_inlining_depth_ = inline_info.GetDepth(encoding.inline_info.encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100842 current_inlining_depth_ != 0;
843 --current_inlining_depth_) {
844 bool should_continue = VisitFrame();
845 if (UNLIKELY(!should_continue)) {
846 return;
847 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100848 cur_depth_++;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000849 inlined_frames_count++;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100850 }
851 }
852 }
853
Dave Allison5cd33752014-04-15 15:57:58 -0700854 bool should_continue = VisitFrame();
855 if (UNLIKELY(!should_continue)) {
856 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700857 }
Dave Allison5cd33752014-04-15 15:57:58 -0700858
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100859 QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700860 if (context_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100861 context_->FillCalleeSaves(reinterpret_cast<uint8_t*>(cur_quick_frame_), frame_info);
Ian Rogers0399dde2012-06-06 17:09:28 -0700862 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700863 // Compute PC for next stack frame from return PC.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100864 size_t frame_size = frame_info.FrameSizeInBytes();
865 size_t return_pc_offset = frame_size - sizeof(void*);
Ian Rogers13735952014-10-08 12:43:28 -0700866 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700867 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100868
Ian Rogers62d6c772013-02-27 08:32:07 -0800869 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700870 // While profiling, the return pc is restored from the side stack, except when walking
871 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700872 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Andreas Gampe585da952016-12-02 14:52:29 -0800873 CHECK_LT(instrumentation_stack_depth, thread_->GetInstrumentationStack()->size());
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200874 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Alex Lightb81a9842016-12-15 00:59:05 +0000875 thread_->GetInstrumentationStack()->at(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800876 instrumentation_stack_depth++;
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100877 if (GetMethod() ==
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700878 Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveAllCalleeSaves)) {
Jeff Haofb2802d2013-07-24 13:53:05 -0700879 // Skip runtime save all callee frames which are used to deliver exceptions.
880 } else if (instrumentation_frame.interpreter_entry_) {
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100881 ArtMethod* callee =
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700882 Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs);
David Sehr709b0702016-10-13 09:12:37 -0700883 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee)
884 << " Found: " << ArtMethod::PrettyMethod(GetMethod());
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000885 } else {
Alex Lighteee0bd42017-02-14 15:31:45 +0000886 // Instrumentation generally doesn't distinguish between a method's obsolete and
887 // non-obsolete version.
888 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(),
889 GetMethod()->GetNonObsoleteMethod())
890 << "Expected: "
891 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod())
892 << " Found: " << ArtMethod::PrettyMethod(GetMethod()->GetNonObsoleteMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800893 }
894 if (num_frames_ != 0) {
895 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
896 // recursion.
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000897 size_t frame_id = instrumentation::Instrumentation::ComputeFrameId(
898 thread_,
899 cur_depth_,
900 inlined_frames_count);
901 CHECK_EQ(instrumentation_frame.frame_id_, frame_id);
Ian Rogers62d6c772013-02-27 08:32:07 -0800902 }
jeffhao725a9572012-11-13 18:20:12 -0800903 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700904 }
905 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100906
Ian Rogers0399dde2012-06-06 17:09:28 -0700907 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700908 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700909 cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame);
910
911 if (kDebugStackWalk) {
David Sehr709b0702016-10-13 09:12:37 -0700912 LOG(INFO) << ArtMethod::PrettyMethod(method) << "@" << method << " size=" << frame_size
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100913 << std::boolalpha
914 << " optimized=" << (cur_oat_quick_method_header_ != nullptr &&
915 cur_oat_quick_method_header_->IsOptimized())
Mathieu Chartiere401d142015-04-22 13:56:20 -0700916 << " native=" << method->IsNative()
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100917 << std::noboolalpha
Mathieu Chartiere401d142015-04-22 13:56:20 -0700918 << " entrypoints=" << method->GetEntryPointFromQuickCompiledCode()
Alex Lighteee0bd42017-02-14 15:31:45 +0000919 << "," << (method->IsNative() ? method->GetEntryPointFromJni() : nullptr)
Mathieu Chartiere401d142015-04-22 13:56:20 -0700920 << " next=" << *cur_quick_frame_;
921 }
922
Andreas Gampef040be62017-04-14 21:49:33 -0700923 if (kCount == CountTransitions::kYes || !method->IsRuntimeMethod()) {
924 cur_depth_++;
925 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700926 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800927 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700928 } else if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700929 do {
930 SanityCheckFrame();
931 bool should_continue = VisitFrame();
932 if (UNLIKELY(!should_continue)) {
933 return;
934 }
935 cur_depth_++;
936 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700937 } while (cur_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700938 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700939 if (include_transitions) {
940 bool should_continue = VisitFrame();
941 if (!should_continue) {
942 return;
943 }
944 }
Andreas Gampe585da952016-12-02 14:52:29 -0800945 if (kCount == CountTransitions::kYes) {
946 cur_depth_++;
947 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800948 }
949 if (num_frames_ != 0) {
950 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700951 }
952}
953
Andreas Gampe585da952016-12-02 14:52:29 -0800954template void StackVisitor::WalkStack<StackVisitor::CountTransitions::kYes>(bool);
955template void StackVisitor::WalkStack<StackVisitor::CountTransitions::kNo>(bool);
956
Elliott Hughes68e76522011-10-05 13:22:16 -0700957} // namespace art