blob: ab3bd855b253a0725e4f8c0c307949322529d759 [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
Dave Allisonf9439142014-03-27 15:10:22 -070019#include "base/hex_dump.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070020#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070021#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "mirror/object.h"
23#include "mirror/object-inl.h"
24#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080025#include "object_utils.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070026#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070027#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070028#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080029#include "throw_location.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080030#include "verify_object-inl.h"
Ian Rogers1809a722013-08-09 22:05:32 -070031#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070032
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080033namespace art {
34
Dave Allisonf9439142014-03-27 15:10:22 -070035// Define a piece of memory, the address of which can be used as a marker
36// for the gap in the stack added during stack overflow handling.
37static uint32_t stack_overflow_object;
38
39// The stack overflow gap marker is simply a valid unique address.
40void* stack_overflow_gap_marker = &stack_overflow_object;
41
42
Ian Rogers62d6c772013-02-27 08:32:07 -080043mirror::Object* ShadowFrame::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -070044 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080045 if (m->IsStatic()) {
46 return NULL;
47 } else if (m->IsNative()) {
48 return GetVRegReference(0);
49 } else {
50 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
51 CHECK(code_item != NULL) << PrettyMethod(m);
52 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
53 return GetVRegReference(reg);
54 }
55}
56
Jeff Haoe701f482013-05-24 11:50:49 -070057mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Brian Carlstromea46f952013-07-30 01:26:50 -070058 mirror::ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070059 if (m->IsStatic()) {
60 return NULL;
61 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070062 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070063 }
64}
65
Ian Rogers62d6c772013-02-27 08:32:07 -080066ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
67 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
68}
69
TDYa127ce4cc0d2012-11-18 16:59:53 -080070size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070071 size_t count = 0;
72 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
73 current_fragment = current_fragment->GetLink()) {
74 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
75 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080076 if (current_frame->GetMethod()->IsNative()) {
77 // The JNI ShadowFrame only contains references. (For indirect reference.)
78 count += current_frame->NumberOfVRegs();
79 }
Ian Rogers0399dde2012-06-06 17:09:28 -070080 }
81 }
82 return count;
83}
84
Ian Rogersef7d42f2014-01-06 12:55:46 -080085bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070086 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
87 current_fragment = current_fragment->GetLink()) {
88 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
89 current_frame = current_frame->GetLink()) {
90 if (current_frame->Contains(shadow_frame_entry)) {
91 return true;
92 }
93 }
94 }
95 return false;
96}
97
Ian Rogers7a22fa62013-01-23 12:16:16 -080098StackVisitor::StackVisitor(Thread* thread, Context* context)
99 : thread_(thread), cur_shadow_frame_(NULL),
100 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
101 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800102 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -0800103}
104
Dave Allisonb373e092014-02-20 16:06:36 -0800105uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700106 if (cur_shadow_frame_ != NULL) {
107 return cur_shadow_frame_->GetDexPC();
108 } else if (cur_quick_frame_ != NULL) {
Dave Allisonb373e092014-02-20 16:06:36 -0800109 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
Ian Rogers0399dde2012-06-06 17:09:28 -0700110 } else {
111 return 0;
112 }
113}
114
Ian Rogers62d6c772013-02-27 08:32:07 -0800115mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700116 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800117 if (m->IsStatic()) {
118 return NULL;
119 } else if (m->IsNative()) {
120 if (cur_quick_frame_ != NULL) {
Andreas Gampe36fea8d2014-03-10 13:37:40 -0700121 StackIndirectReferenceTable* sirt =
122 reinterpret_cast<StackIndirectReferenceTable*>(
123 reinterpret_cast<char*>(cur_quick_frame_) +
124 m->GetSirtOffsetInBytes());
125 return sirt->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800126 } else {
127 return cur_shadow_frame_->GetVRegReference(0);
128 }
129 } else {
130 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
131 if (code_item == NULL) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800132 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800133 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800134 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800135 } else {
136 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
137 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
138 }
139 }
140}
141
Ian Rogers0c7abda2012-09-19 13:33:42 -0700142size_t StackVisitor::GetNativePcOffset() const {
143 DCHECK(!IsShadowFrame());
144 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
145}
146
Brian Carlstromea46f952013-07-30 01:26:50 -0700147uint32_t StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) 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());
Ian Rogers1809a722013-08-09 22:05:32 -0700151 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700152 uint32_t vmap_offset;
153 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700154 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800155 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
156 uint32_t spill_mask = is_float ? m->GetFpSpillMask()
157 : m->GetCoreSpillMask();
158 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
Ian Rogers0ec569a2012-07-01 16:43:46 -0700159 } else {
160 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700161 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Ian Rogers0ec569a2012-07-01 16:43:46 -0700162 size_t frame_size = m->GetFrameSizeInBytes();
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700163 return *GetVRegAddr(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
164 frame_size, vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700165 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700166 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700167 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700168 }
169}
170
Brian Carlstromea46f952013-07-30 01:26:50 -0700171void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800172 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700173 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700174 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700175 DCHECK(m == GetMethod());
Ian Rogers1809a722013-08-09 22:05:32 -0700176 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700177 uint32_t vmap_offset;
178 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700179 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800180 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
181 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
182 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
183 SetGPR(reg, new_value);
184 } else {
185 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700186 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Mathieu Chartier67022432012-11-29 18:04:50 -0800187 uint32_t core_spills = m->GetCoreSpillMask();
188 uint32_t fp_spills = m->GetFpSpillMask();
189 size_t frame_size = m->GetFrameSizeInBytes();
190 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
191 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
192 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700193 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700194 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800195 return cur_shadow_frame_->SetVReg(vreg, new_value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700196 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700197}
198
Mathieu Chartier815873e2014-02-13 18:02:13 -0800199uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
200 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
201 return context_->GetGPRAddress(reg);
202}
203
Ian Rogers0399dde2012-06-06 17:09:28 -0700204uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700205 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Ian Rogers0399dde2012-06-06 17:09:28 -0700206 return context_->GetGPR(reg);
207}
208
Mathieu Chartier67022432012-11-29 18:04:50 -0800209void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700210 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Mathieu Chartier67022432012-11-29 18:04:50 -0800211 context_->SetGPR(reg, value);
212}
213
Ian Rogers0399dde2012-06-06 17:09:28 -0700214uintptr_t StackVisitor::GetReturnPc() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700215 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800216 DCHECK(sp != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700217 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
218 return *reinterpret_cast<uintptr_t*>(pc_addr);
219}
220
221void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700222 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers0399dde2012-06-06 17:09:28 -0700223 CHECK(sp != NULL);
224 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
225 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
226}
227
Ian Rogers7a22fa62013-01-23 12:16:16 -0800228size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700229 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800230 explicit NumFramesVisitor(Thread* thread)
231 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700232
233 virtual bool VisitFrame() {
234 frames++;
235 return true;
236 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700237
Ian Rogers0399dde2012-06-06 17:09:28 -0700238 size_t frames;
239 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800240 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700241 visitor.WalkStack(true);
242 return visitor.frames;
243}
244
Ian Rogers7a22fa62013-01-23 12:16:16 -0800245void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800246 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800247 explicit DescribeStackVisitor(Thread* thread)
248 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800249
250 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
251 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
252 return true;
253 }
254 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800255 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800256 visitor.WalkStack(true);
257}
258
Ian Rogers40e3bac2012-11-20 00:09:14 -0800259std::string StackVisitor::DescribeLocation() const {
260 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700261 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800262 if (m == NULL) {
263 return "upcall";
264 }
265 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800266 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800267 if (!IsShadowFrame()) {
268 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
269 }
270 return result;
271}
272
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200273instrumentation::InstrumentationStackFrame& StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Sebastien Hertz123756a2013-11-27 15:49:42 +0100274 CHECK_LT(depth, thread_->GetInstrumentationStack()->size());
Ian Rogers7a22fa62013-01-23 12:16:16 -0800275 return thread_->GetInstrumentationStack()->at(depth);
276}
277
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700278void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800279 if (kIsDebugBuild) {
280 mirror::ArtMethod* method = GetMethod();
281 CHECK(method->GetClass() == mirror::ArtMethod::GetJavaLangReflectArtMethod());
282 if (cur_quick_frame_ != nullptr) {
283 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
284 // Frame sanity.
285 size_t frame_size = method->GetFrameSizeInBytes();
286 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700287 // A rough guess at an upper size we expect to see for a frame.
288 // 256 registers
289 // 2 words Sirt overhead
290 // 3+3 register spills
291 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700292 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
293 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
294 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800295 CHECK_LE(frame_size, kMaxExpectedFrameSize);
296 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
297 CHECK_LT(return_pc_offset, frame_size);
298 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700299 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700300}
301
302void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800303 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800304 CHECK_EQ(cur_depth_, 0U);
305 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800306 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700307
308 bool kDebugStackWalk = false;
309 bool kDebugStackWalkVeryVerbose = false; // The name says it all.
310
311 if (kDebugStackWalk) {
312 LOG(INFO) << "walking stack";
313 }
Ian Rogers7a22fa62013-01-23 12:16:16 -0800314 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700315 current_fragment = current_fragment->GetLink()) {
316 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
317 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
318 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
Dave Allisonf9439142014-03-27 15:10:22 -0700319 if (kDebugStackWalkVeryVerbose) {
320 LOG(INFO) << "cur_quick_frame: " << cur_quick_frame_;
321 LOG(INFO) << "cur_quick_frame_pc: " << std::hex << cur_quick_frame_pc_;
322 }
323
Ian Rogers0399dde2012-06-06 17:09:28 -0700324 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
325 // Can't be both a shadow and a quick fragment.
326 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -0700327 mirror::ArtMethod* method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800328 while (method != NULL) {
Dave Allisonf9439142014-03-27 15:10:22 -0700329 // Check for a stack overflow gap marker.
330 if (method == reinterpret_cast<mirror::ArtMethod*>(stack_overflow_gap_marker)) {
331 // Marker for a stack overflow. This is followed by the offset from the
332 // current SP to the next frame. There is a gap in the stack here. Jump
333 // the gap silently.
334 // Caveat coder: the layout of the overflow marker depends on the architecture.
335 // The first element is address sized (8 bytes on a 64 bit machine). The second
336 // element is 32 bits. So be careful with those address calculations.
337
338 // Get the address of the offset, just beyond the marker pointer.
339 byte* gapsizeaddr = reinterpret_cast<byte*>(cur_quick_frame_) + sizeof(uintptr_t);
340 uint32_t gap = *reinterpret_cast<uint32_t*>(gapsizeaddr);
341 CHECK_GT(gap, Thread::kStackOverflowProtectedSize);
342 mirror::ArtMethod** next_frame = reinterpret_cast<mirror::ArtMethod**>(
343 reinterpret_cast<byte*>(gapsizeaddr) + gap);
344 if (kDebugStackWalk) {
345 LOG(INFO) << "stack overflow marker hit, gap: " << gap << ", next_frame: " <<
346 next_frame;
347 }
348 cur_quick_frame_ = next_frame;
349 method = *next_frame;
350 CHECK(method != nullptr);
351 } else {
352 SanityCheckFrame();
353 bool should_continue = VisitFrame();
354 if (UNLIKELY(!should_continue)) {
355 return;
356 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700357 }
358 if (context_ != NULL) {
359 context_->FillCalleeSaves(*this);
360 }
361 size_t frame_size = method->GetFrameSizeInBytes();
362 // Compute PC for next stack frame from return PC.
363 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
364 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
365 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Dave Allisonf9439142014-03-27 15:10:22 -0700366 if (kDebugStackWalkVeryVerbose) {
367 LOG(INFO) << "frame size: " << frame_size << ", return_pc: " << std::hex << return_pc;
368 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800369 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700370 // While profiling, the return pc is restored from the side stack, except when walking
371 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700372 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200373 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogers62d6c772013-02-27 08:32:07 -0800374 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800375 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700376 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
377 // Skip runtime save all callee frames which are used to deliver exceptions.
378 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700379 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700380 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100381 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700382 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800383 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100384 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800385 }
386 if (num_frames_ != 0) {
387 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
388 // recursion.
389 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
390 << "Expected: " << instrumentation_frame.frame_id_
391 << " Found: " << GetFrameId();
392 }
jeffhao725a9572012-11-13 18:20:12 -0800393 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700394 }
395 }
396 cur_quick_frame_pc_ = return_pc;
397 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Brian Carlstromea46f952013-07-30 01:26:50 -0700398 cur_quick_frame_ = reinterpret_cast<mirror::ArtMethod**>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700399 cur_depth_++;
400 method = *cur_quick_frame_;
Dave Allisonf9439142014-03-27 15:10:22 -0700401 if (kDebugStackWalkVeryVerbose) {
402 LOG(INFO) << "new cur_quick_frame_: " << cur_quick_frame_;
403 LOG(INFO) << "new cur_quick_frame_pc_: " << std::hex << cur_quick_frame_pc_;
404 }
jeffhao6641ea12013-01-02 18:13:42 -0800405 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700406 } else if (cur_shadow_frame_ != NULL) {
407 do {
408 SanityCheckFrame();
409 bool should_continue = VisitFrame();
410 if (UNLIKELY(!should_continue)) {
411 return;
412 }
413 cur_depth_++;
414 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700415 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700416 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700417 if (include_transitions) {
418 bool should_continue = VisitFrame();
419 if (!should_continue) {
420 return;
421 }
422 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800423 cur_depth_++;
424 }
425 if (num_frames_ != 0) {
426 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700427 }
428}
429
Elliott Hughes68e76522011-10-05 13:22:16 -0700430} // namespace art