blob: a6cf24e5030a49e5efd3bd5d14189d1fe979030d [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
Ian Rogerse63db272014-07-15 15:36:11 -070019#include "arch/context.h"
Dave Allisonf9439142014-03-27 15:10:22 -070020#include "base/hex_dump.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070021#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070022#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "mirror/object.h"
24#include "mirror/object-inl.h"
25#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080026#include "object_utils.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010027#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070028#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070029#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070030#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080031#include "throw_location.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080032#include "verify_object-inl.h"
Ian Rogers1809a722013-08-09 22:05:32 -070033#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070034
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080035namespace art {
36
Ian Rogers62d6c772013-02-27 08:32:07 -080037mirror::Object* ShadowFrame::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -070038 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080039 if (m->IsStatic()) {
40 return NULL;
41 } else if (m->IsNative()) {
42 return GetVRegReference(0);
43 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070044 const DexFile::CodeItem* code_item = m->GetCodeItem();
Ian Rogers62d6c772013-02-27 08:32:07 -080045 CHECK(code_item != NULL) << PrettyMethod(m);
46 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
47 return GetVRegReference(reg);
48 }
49}
50
Jeff Haoe701f482013-05-24 11:50:49 -070051mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Brian Carlstromea46f952013-07-30 01:26:50 -070052 mirror::ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070053 if (m->IsStatic()) {
54 return NULL;
55 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070056 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070057 }
58}
59
Ian Rogers62d6c772013-02-27 08:32:07 -080060ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
61 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
62}
63
TDYa127ce4cc0d2012-11-18 16:59:53 -080064size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070065 size_t count = 0;
66 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
67 current_fragment = current_fragment->GetLink()) {
68 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
69 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080070 if (current_frame->GetMethod()->IsNative()) {
71 // The JNI ShadowFrame only contains references. (For indirect reference.)
72 count += current_frame->NumberOfVRegs();
73 }
Ian Rogers0399dde2012-06-06 17:09:28 -070074 }
75 }
76 return count;
77}
78
Ian Rogersef7d42f2014-01-06 12:55:46 -080079bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070080 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
81 current_fragment = current_fragment->GetLink()) {
82 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
83 current_frame = current_frame->GetLink()) {
84 if (current_frame->Contains(shadow_frame_entry)) {
85 return true;
86 }
87 }
88 }
89 return false;
90}
91
Ian Rogers7a22fa62013-01-23 12:16:16 -080092StackVisitor::StackVisitor(Thread* thread, Context* context)
93 : thread_(thread), cur_shadow_frame_(NULL),
94 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
95 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080096 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080097}
98
Ian Rogers5cf98192014-05-29 21:31:50 -070099StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames)
100 : thread_(thread), cur_shadow_frame_(NULL),
101 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0),
102 context_(context) {
103 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
104}
105
Dave Allisonb373e092014-02-20 16:06:36 -0800106uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700107 if (cur_shadow_frame_ != NULL) {
108 return cur_shadow_frame_->GetDexPC();
109 } else if (cur_quick_frame_ != NULL) {
Dave Allisonb373e092014-02-20 16:06:36 -0800110 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
Ian Rogers0399dde2012-06-06 17:09:28 -0700111 } else {
112 return 0;
113 }
114}
115
Ian Rogers62d6c772013-02-27 08:32:07 -0800116mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700117 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800118 if (m->IsStatic()) {
119 return NULL;
120 } else if (m->IsNative()) {
121 if (cur_quick_frame_ != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700122 HandleScope* hs = reinterpret_cast<HandleScope*>(
123 reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffsetInBytes());
124 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 } else {
126 return cur_shadow_frame_->GetVRegReference(0);
127 }
128 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700129 const DexFile::CodeItem* code_item = m->GetCodeItem();
Ian Rogers62d6c772013-02-27 08:32:07 -0800130 if (code_item == NULL) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800131 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800132 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800133 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800134 } else {
135 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
136 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
137 }
138 }
139}
140
Ian Rogers0c7abda2012-09-19 13:33:42 -0700141size_t StackVisitor::GetNativePcOffset() const {
142 DCHECK(!IsShadowFrame());
143 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
144}
145
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200146bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
147 uint32_t* val) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700148 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700149 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800150 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100151 const void* code_pointer = m->GetQuickOatCodePointer();
152 DCHECK(code_pointer != nullptr);
153 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
154 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700155 uint32_t vmap_offset;
156 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700157 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800158 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100159 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200160 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
161 uintptr_t ptr_val;
162 bool success = false;
buzbeeb5860fb2014-06-21 15:31:01 -0700163 bool target64 = (kRuntimeISA == kArm64) || (kRuntimeISA == kX86_64);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200164 if (is_float) {
165 success = GetFPR(reg, &ptr_val);
166 } else {
167 success = GetGPR(reg, &ptr_val);
168 }
buzbeeb5860fb2014-06-21 15:31:01 -0700169 if (success && target64) {
170 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
171 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
172 int64_t value_long = static_cast<int64_t>(ptr_val);
173 if (wide_lo) {
174 ptr_val = static_cast<uintptr_t>(value_long & 0xFFFFFFFF);
175 } else if (wide_hi) {
176 ptr_val = static_cast<uintptr_t>(value_long >> 32);
177 }
178 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200179 *val = ptr_val;
180 return success;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700181 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700182 const DexFile::CodeItem* code_item = m->GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700183 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200184 *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
Vladimir Marko7624d252014-05-02 14:40:15 +0100185 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200186 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700187 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700188 } else {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200189 *val = cur_shadow_frame_->GetVReg(vreg);
190 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700191 }
192}
193
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200194bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800195 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700196 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700197 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700198 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100199 const void* code_pointer = m->GetQuickOatCodePointer();
200 DCHECK(code_pointer != nullptr);
201 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
202 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700203 uint32_t vmap_offset;
204 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700205 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800206 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100207 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200208 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
buzbeeb5860fb2014-06-21 15:31:01 -0700209 bool target64 = (kRuntimeISA == kArm64) || (kRuntimeISA == kX86_64);
210 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
211 if (target64) {
212 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
213 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
214 if (wide_lo || wide_hi) {
215 uintptr_t old_reg_val;
216 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val);
217 if (!success) {
218 return false;
219 }
220 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
221 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
222 uint64_t mask = 0xffffffff;
223 if (wide_lo) {
224 mask = mask << 32;
225 } else {
226 new_vreg_portion = new_vreg_portion << 32;
227 }
228 new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
229 }
230 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200231 if (is_float) {
232 return SetFPR(reg, new_value);
233 } else {
234 return SetGPR(reg, new_value);
235 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800236 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700237 const DexFile::CodeItem* code_item = m->GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700238 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Vladimir Marko7624d252014-05-02 14:40:15 +0100239 int offset = GetVRegOffset(code_item, frame_info.CoreSpillMask(), frame_info.FpSpillMask(),
240 frame_info.FrameSizeInBytes(), vreg, kRuntimeISA);
Mathieu Chartier67022432012-11-29 18:04:50 -0800241 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
242 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200243 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700244 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700245 } else {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200246 cur_shadow_frame_->SetVReg(vreg, new_value);
247 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700248 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700249}
250
Mathieu Chartier815873e2014-02-13 18:02:13 -0800251uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
252 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
253 return context_->GetGPRAddress(reg);
254}
255
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200256bool StackVisitor::GetGPR(uint32_t reg, uintptr_t* val) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700257 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200258 return context_->GetGPR(reg, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700259}
260
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200261bool StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700262 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200263 return context_->SetGPR(reg, value);
264}
265
266bool StackVisitor::GetFPR(uint32_t reg, uintptr_t* val) const {
267 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
268 return context_->GetFPR(reg, val);
269}
270
271bool StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
272 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
273 return context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800274}
275
Ian Rogers0399dde2012-06-06 17:09:28 -0700276uintptr_t StackVisitor::GetReturnPc() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700277 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800278 DCHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700279 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700280 return *reinterpret_cast<uintptr_t*>(pc_addr);
281}
282
283void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700284 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers0399dde2012-06-06 17:09:28 -0700285 CHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700286 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700287 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
288}
289
Ian Rogers7a22fa62013-01-23 12:16:16 -0800290size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700291 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800292 explicit NumFramesVisitor(Thread* thread)
293 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700294
Ian Rogers5cf98192014-05-29 21:31:50 -0700295 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700296 frames++;
297 return true;
298 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700299
Ian Rogers0399dde2012-06-06 17:09:28 -0700300 size_t frames;
301 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800302 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700303 visitor.WalkStack(true);
304 return visitor.frames;
305}
306
Ian Rogers5cf98192014-05-29 21:31:50 -0700307bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
308 struct HasMoreFramesVisitor : public StackVisitor {
309 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
310 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
311 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
312 }
313
314 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
315 if (found_frame_) {
316 mirror::ArtMethod* method = GetMethod();
317 if (method != nullptr && !method->IsRuntimeMethod()) {
318 has_more_frames_ = true;
319 next_method_ = method;
320 next_dex_pc_ = GetDexPc();
321 return false; // End stack walk once next method is found.
322 }
323 } else if (GetFrameHeight() == frame_height_) {
324 found_frame_ = true;
325 }
326 return true;
327 }
328
329 size_t frame_height_;
330 bool found_frame_;
331 bool has_more_frames_;
332 mirror::ArtMethod* next_method_;
333 uint32_t next_dex_pc_;
334 };
335 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
336 visitor.WalkStack(true);
337 *next_method = visitor.next_method_;
338 *next_dex_pc = visitor.next_dex_pc_;
339 return visitor.has_more_frames_;
340}
341
Ian Rogers7a22fa62013-01-23 12:16:16 -0800342void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800343 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800344 explicit DescribeStackVisitor(Thread* thread)
345 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800346
Ian Rogers5cf98192014-05-29 21:31:50 -0700347 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800348 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
349 return true;
350 }
351 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800352 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800353 visitor.WalkStack(true);
354}
355
Ian Rogers40e3bac2012-11-20 00:09:14 -0800356std::string StackVisitor::DescribeLocation() const {
357 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700358 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800359 if (m == NULL) {
360 return "upcall";
361 }
362 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800363 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800364 if (!IsShadowFrame()) {
365 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
366 }
367 return result;
368}
369
Ian Rogerse63db272014-07-15 15:36:11 -0700370static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
371 uint32_t depth) {
372 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
373 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800374}
375
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700376void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800377 if (kIsDebugBuild) {
378 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700379 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800380 if (cur_quick_frame_ != nullptr) {
381 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
382 // Frame sanity.
383 size_t frame_size = method->GetFrameSizeInBytes();
384 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700385 // A rough guess at an upper size we expect to see for a frame.
386 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700387 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700388 // 3+3 register spills
389 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700390 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
391 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
392 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800393 CHECK_LE(frame_size, kMaxExpectedFrameSize);
394 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
395 CHECK_LT(return_pc_offset, frame_size);
396 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700397 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700398}
399
400void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800401 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 CHECK_EQ(cur_depth_, 0U);
403 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800404 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700405
Ian Rogers7a22fa62013-01-23 12:16:16 -0800406 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700407 current_fragment = current_fragment->GetLink()) {
408 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
409 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
410 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
Dave Allisonf9439142014-03-27 15:10:22 -0700411
Ian Rogers0399dde2012-06-06 17:09:28 -0700412 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
413 // Can't be both a shadow and a quick fragment.
414 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700415 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800416 while (method != NULL) {
Dave Allison5cd33752014-04-15 15:57:58 -0700417 SanityCheckFrame();
418 bool should_continue = VisitFrame();
419 if (UNLIKELY(!should_continue)) {
420 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700421 }
Dave Allison5cd33752014-04-15 15:57:58 -0700422
Ian Rogers0399dde2012-06-06 17:09:28 -0700423 if (context_ != NULL) {
424 context_->FillCalleeSaves(*this);
425 }
426 size_t frame_size = method->GetFrameSizeInBytes();
427 // Compute PC for next stack frame from return PC.
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100428 size_t return_pc_offset = method->GetReturnPcOffsetInBytes(frame_size);
Ian Rogers0399dde2012-06-06 17:09:28 -0700429 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
430 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800431 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700432 // While profiling, the return pc is restored from the side stack, except when walking
433 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700434 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200435 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700436 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800437 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700438 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
439 // Skip runtime save all callee frames which are used to deliver exceptions.
440 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700441 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700442 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100443 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700444 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800445 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100446 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800447 }
448 if (num_frames_ != 0) {
449 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
450 // recursion.
451 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
452 << "Expected: " << instrumentation_frame.frame_id_
453 << " Found: " << GetFrameId();
454 }
jeffhao725a9572012-11-13 18:20:12 -0800455 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700456 }
457 }
458 cur_quick_frame_pc_ = return_pc;
459 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700460 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700461 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700462 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800463 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700464 } else if (cur_shadow_frame_ != NULL) {
465 do {
466 SanityCheckFrame();
467 bool should_continue = VisitFrame();
468 if (UNLIKELY(!should_continue)) {
469 return;
470 }
471 cur_depth_++;
472 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700473 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700474 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700475 if (include_transitions) {
476 bool should_continue = VisitFrame();
477 if (!should_continue) {
478 return;
479 }
480 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800481 cur_depth_++;
482 }
483 if (num_frames_ != 0) {
484 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700485 }
486}
487
Elliott Hughes68e76522011-10-05 13:22:16 -0700488} // namespace art