blob: c33d1abb8d75ba2f0d0cb45c3f7fa69dbe693269 [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
Brian Carlstromea46f952013-07-30 01:26:50 -070019#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070020#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/object.h"
22#include "mirror/object-inl.h"
23#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080024#include "object_utils.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070025#include "runtime.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070026#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080027#include "throw_location.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080028#include "verify_object-inl.h"
Ian Rogers1809a722013-08-09 22:05:32 -070029#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070030
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080031namespace art {
32
Ian Rogers62d6c772013-02-27 08:32:07 -080033mirror::Object* ShadowFrame::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -070034 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080035 if (m->IsStatic()) {
36 return NULL;
37 } else if (m->IsNative()) {
38 return GetVRegReference(0);
39 } else {
40 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
41 CHECK(code_item != NULL) << PrettyMethod(m);
42 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
43 return GetVRegReference(reg);
44 }
45}
46
Jeff Haoe701f482013-05-24 11:50:49 -070047mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Brian Carlstromea46f952013-07-30 01:26:50 -070048 mirror::ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070049 if (m->IsStatic()) {
50 return NULL;
51 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070052 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070053 }
54}
55
Ian Rogers62d6c772013-02-27 08:32:07 -080056ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
57 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
58}
59
TDYa127ce4cc0d2012-11-18 16:59:53 -080060size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070061 size_t count = 0;
62 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
63 current_fragment = current_fragment->GetLink()) {
64 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
65 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080066 if (current_frame->GetMethod()->IsNative()) {
67 // The JNI ShadowFrame only contains references. (For indirect reference.)
68 count += current_frame->NumberOfVRegs();
69 }
Ian Rogers0399dde2012-06-06 17:09:28 -070070 }
71 }
72 return count;
73}
74
Ian Rogersef7d42f2014-01-06 12:55:46 -080075bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070076 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
77 current_fragment = current_fragment->GetLink()) {
78 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
79 current_frame = current_frame->GetLink()) {
80 if (current_frame->Contains(shadow_frame_entry)) {
81 return true;
82 }
83 }
84 }
85 return false;
86}
87
Ian Rogers7a22fa62013-01-23 12:16:16 -080088StackVisitor::StackVisitor(Thread* thread, Context* context)
89 : thread_(thread), cur_shadow_frame_(NULL),
90 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
91 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080092 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080093}
94
Dave Allisonb373e092014-02-20 16:06:36 -080095uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070096 if (cur_shadow_frame_ != NULL) {
97 return cur_shadow_frame_->GetDexPC();
98 } else if (cur_quick_frame_ != NULL) {
Dave Allisonb373e092014-02-20 16:06:36 -080099 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
Ian Rogers0399dde2012-06-06 17:09:28 -0700100 } else {
101 return 0;
102 }
103}
104
Ian Rogers62d6c772013-02-27 08:32:07 -0800105mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700106 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800107 if (m->IsStatic()) {
108 return NULL;
109 } else if (m->IsNative()) {
110 if (cur_quick_frame_ != NULL) {
Andreas Gampe36fea8d2014-03-10 13:37:40 -0700111 StackIndirectReferenceTable* sirt =
112 reinterpret_cast<StackIndirectReferenceTable*>(
113 reinterpret_cast<char*>(cur_quick_frame_) +
114 m->GetSirtOffsetInBytes());
115 return sirt->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800116 } else {
117 return cur_shadow_frame_->GetVRegReference(0);
118 }
119 } else {
120 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
121 if (code_item == NULL) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800122 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800123 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800124 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 } else {
126 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
127 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
128 }
129 }
130}
131
Ian Rogers0c7abda2012-09-19 13:33:42 -0700132size_t StackVisitor::GetNativePcOffset() const {
133 DCHECK(!IsShadowFrame());
134 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
135}
136
Brian Carlstromea46f952013-07-30 01:26:50 -0700137uint32_t StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700138 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700139 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800140 DCHECK(m == GetMethod());
Ian Rogers1809a722013-08-09 22:05:32 -0700141 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700142 uint32_t vmap_offset;
143 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700144 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800145 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
146 uint32_t spill_mask = is_float ? m->GetFpSpillMask()
147 : m->GetCoreSpillMask();
148 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
Ian Rogers0ec569a2012-07-01 16:43:46 -0700149 } else {
150 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700151 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Ian Rogers0ec569a2012-07-01 16:43:46 -0700152 size_t frame_size = m->GetFrameSizeInBytes();
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700153 return *GetVRegAddr(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
154 frame_size, vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700155 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700156 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700157 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700158 }
159}
160
Brian Carlstromea46f952013-07-30 01:26:50 -0700161void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800162 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700163 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700164 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700165 DCHECK(m == GetMethod());
Ian Rogers1809a722013-08-09 22:05:32 -0700166 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700167 uint32_t vmap_offset;
168 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700169 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800170 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
171 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
172 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
173 SetGPR(reg, new_value);
174 } else {
175 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700176 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Mathieu Chartier67022432012-11-29 18:04:50 -0800177 uint32_t core_spills = m->GetCoreSpillMask();
178 uint32_t fp_spills = m->GetFpSpillMask();
179 size_t frame_size = m->GetFrameSizeInBytes();
180 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
181 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
182 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700183 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700184 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800185 return cur_shadow_frame_->SetVReg(vreg, new_value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700186 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700187}
188
Mathieu Chartier815873e2014-02-13 18:02:13 -0800189uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
190 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
191 return context_->GetGPRAddress(reg);
192}
193
Ian Rogers0399dde2012-06-06 17:09:28 -0700194uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700195 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Ian Rogers0399dde2012-06-06 17:09:28 -0700196 return context_->GetGPR(reg);
197}
198
Mathieu Chartier67022432012-11-29 18:04:50 -0800199void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700200 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Mathieu Chartier67022432012-11-29 18:04:50 -0800201 context_->SetGPR(reg, value);
202}
203
Ian Rogers0399dde2012-06-06 17:09:28 -0700204uintptr_t StackVisitor::GetReturnPc() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700205 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800206 DCHECK(sp != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700207 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
208 return *reinterpret_cast<uintptr_t*>(pc_addr);
209}
210
211void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700212 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers0399dde2012-06-06 17:09:28 -0700213 CHECK(sp != NULL);
214 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
215 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
216}
217
Ian Rogers7a22fa62013-01-23 12:16:16 -0800218size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700219 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800220 explicit NumFramesVisitor(Thread* thread)
221 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700222
223 virtual bool VisitFrame() {
224 frames++;
225 return true;
226 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700227
Ian Rogers0399dde2012-06-06 17:09:28 -0700228 size_t frames;
229 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800230 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700231 visitor.WalkStack(true);
232 return visitor.frames;
233}
234
Ian Rogers7a22fa62013-01-23 12:16:16 -0800235void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800236 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800237 explicit DescribeStackVisitor(Thread* thread)
238 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800239
240 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
241 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
242 return true;
243 }
244 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800245 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800246 visitor.WalkStack(true);
247}
248
Ian Rogers40e3bac2012-11-20 00:09:14 -0800249std::string StackVisitor::DescribeLocation() const {
250 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700251 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800252 if (m == NULL) {
253 return "upcall";
254 }
255 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800256 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800257 if (!IsShadowFrame()) {
258 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
259 }
260 return result;
261}
262
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200263instrumentation::InstrumentationStackFrame& StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Sebastien Hertz123756a2013-11-27 15:49:42 +0100264 CHECK_LT(depth, thread_->GetInstrumentationStack()->size());
Ian Rogers7a22fa62013-01-23 12:16:16 -0800265 return thread_->GetInstrumentationStack()->at(depth);
266}
267
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800269 if (kIsDebugBuild) {
270 mirror::ArtMethod* method = GetMethod();
271 CHECK(method->GetClass() == mirror::ArtMethod::GetJavaLangReflectArtMethod());
272 if (cur_quick_frame_ != nullptr) {
273 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
274 // Frame sanity.
275 size_t frame_size = method->GetFrameSizeInBytes();
276 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700277 // A rough guess at an upper size we expect to see for a frame.
278 // 256 registers
279 // 2 words Sirt overhead
280 // 3+3 register spills
281 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700282 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
283 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
284 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800285 CHECK_LE(frame_size, kMaxExpectedFrameSize);
286 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
287 CHECK_LT(return_pc_offset, frame_size);
288 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700289 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700290}
291
292void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800293 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800294 CHECK_EQ(cur_depth_, 0U);
295 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800296 uint32_t instrumentation_stack_depth = 0;
Ian Rogers7a22fa62013-01-23 12:16:16 -0800297 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700298 current_fragment = current_fragment->GetLink()) {
299 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
300 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
301 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
302 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
303 // Can't be both a shadow and a quick fragment.
304 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -0700305 mirror::ArtMethod* method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800306 while (method != NULL) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700307 SanityCheckFrame();
308 bool should_continue = VisitFrame();
309 if (UNLIKELY(!should_continue)) {
310 return;
311 }
312 if (context_ != NULL) {
313 context_->FillCalleeSaves(*this);
314 }
315 size_t frame_size = method->GetFrameSizeInBytes();
316 // Compute PC for next stack frame from return PC.
317 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
318 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
319 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800320 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700321 // While profiling, the return pc is restored from the side stack, except when walking
322 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700323 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200324 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogers62d6c772013-02-27 08:32:07 -0800325 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800326 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700327 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
328 // Skip runtime save all callee frames which are used to deliver exceptions.
329 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700330 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700331 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100332 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700333 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800334 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100335 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800336 }
337 if (num_frames_ != 0) {
338 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
339 // recursion.
340 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
341 << "Expected: " << instrumentation_frame.frame_id_
342 << " Found: " << GetFrameId();
343 }
jeffhao725a9572012-11-13 18:20:12 -0800344 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700345 }
346 }
347 cur_quick_frame_pc_ = return_pc;
348 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Brian Carlstromea46f952013-07-30 01:26:50 -0700349 cur_quick_frame_ = reinterpret_cast<mirror::ArtMethod**>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700350 cur_depth_++;
351 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800352 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700353 } else if (cur_shadow_frame_ != NULL) {
354 do {
355 SanityCheckFrame();
356 bool should_continue = VisitFrame();
357 if (UNLIKELY(!should_continue)) {
358 return;
359 }
360 cur_depth_++;
361 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700362 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700363 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700364 if (include_transitions) {
365 bool should_continue = VisitFrame();
366 if (!should_continue) {
367 return;
368 }
369 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800370 cur_depth_++;
371 }
372 if (num_frames_ != 0) {
373 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700374 }
375}
376
Elliott Hughes68e76522011-10-05 13:22:16 -0700377} // namespace art