blob: a50538399c8593f70a39534ae86d1150d1200881 [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"
Ian Rogers1809a722013-08-09 22:05:32 -070028#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070029
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080030namespace art {
31
Mathieu Chartier590fee92013-09-13 13:46:47 -070032bool ShadowFrame::VerifyReference(const mirror::Object* val) const {
33 return !Runtime::Current()->GetHeap()->IsInTempSpace(val);
34}
35
Ian Rogers62d6c772013-02-27 08:32:07 -080036mirror::Object* ShadowFrame::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -070037 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080038 if (m->IsStatic()) {
39 return NULL;
40 } else if (m->IsNative()) {
41 return GetVRegReference(0);
42 } else {
43 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
44 CHECK(code_item != NULL) << PrettyMethod(m);
45 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
46 return GetVRegReference(reg);
47 }
48}
49
Jeff Haoe701f482013-05-24 11:50:49 -070050mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Brian Carlstromea46f952013-07-30 01:26:50 -070051 mirror::ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070052 if (m->IsStatic()) {
53 return NULL;
54 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070055 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070056 }
57}
58
Ian Rogers62d6c772013-02-27 08:32:07 -080059ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
60 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
61}
62
TDYa127ce4cc0d2012-11-18 16:59:53 -080063size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070064 size_t count = 0;
65 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
66 current_fragment = current_fragment->GetLink()) {
67 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
68 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080069 if (current_frame->GetMethod()->IsNative()) {
70 // The JNI ShadowFrame only contains references. (For indirect reference.)
71 count += current_frame->NumberOfVRegs();
72 }
Ian Rogers0399dde2012-06-06 17:09:28 -070073 }
74 }
75 return count;
76}
77
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080078bool ManagedStack::ShadowFramesContain(mirror::Object** shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070079 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
80 current_fragment = current_fragment->GetLink()) {
81 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
82 current_frame = current_frame->GetLink()) {
83 if (current_frame->Contains(shadow_frame_entry)) {
84 return true;
85 }
86 }
87 }
88 return false;
89}
90
Ian Rogers7a22fa62013-01-23 12:16:16 -080091StackVisitor::StackVisitor(Thread* thread, Context* context)
92 : thread_(thread), cur_shadow_frame_(NULL),
93 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
94 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080095 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080096}
97
Ian Rogers0399dde2012-06-06 17:09:28 -070098uint32_t StackVisitor::GetDexPc() const {
99 if (cur_shadow_frame_ != NULL) {
100 return cur_shadow_frame_->GetDexPC();
101 } else if (cur_quick_frame_ != NULL) {
Ian Rogers0c7abda2012-09-19 13:33:42 -0700102 return GetMethod()->ToDexPc(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700103 } else {
104 return 0;
105 }
106}
107
Ian Rogers62d6c772013-02-27 08:32:07 -0800108mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700109 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800110 if (m->IsStatic()) {
111 return NULL;
112 } else if (m->IsNative()) {
113 if (cur_quick_frame_ != NULL) {
114 StackIndirectReferenceTable* sirt =
115 reinterpret_cast<StackIndirectReferenceTable*>(
116 reinterpret_cast<char*>(cur_quick_frame_) +
117 m->GetSirtOffsetInBytes());
118 return sirt->GetReference(0);
119 } else {
120 return cur_shadow_frame_->GetVRegReference(0);
121 }
122 } else {
123 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
124 if (code_item == NULL) {
125 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method"
126 << PrettyMethod(m);
127 return NULL;
128 } else {
129 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
130 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
131 }
132 }
133}
134
Ian Rogers0c7abda2012-09-19 13:33:42 -0700135size_t StackVisitor::GetNativePcOffset() const {
136 DCHECK(!IsShadowFrame());
137 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
138}
139
Brian Carlstromea46f952013-07-30 01:26:50 -0700140uint32_t StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700141 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700142 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800143 DCHECK(m == GetMethod());
Ian Rogers1809a722013-08-09 22:05:32 -0700144 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700145 uint32_t vmap_offset;
146 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700147 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800148 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
149 uint32_t spill_mask = is_float ? m->GetFpSpillMask()
150 : m->GetCoreSpillMask();
151 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
Ian Rogers0ec569a2012-07-01 16:43:46 -0700152 } else {
153 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700154 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Ian Rogers0ec569a2012-07-01 16:43:46 -0700155 size_t frame_size = m->GetFrameSizeInBytes();
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700156 return *GetVRegAddr(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
157 frame_size, vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700158 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700159 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700160 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700161 }
162}
163
Brian Carlstromea46f952013-07-30 01:26:50 -0700164void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800165 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700166 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700167 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700168 DCHECK(m == GetMethod());
Ian Rogers1809a722013-08-09 22:05:32 -0700169 const VmapTable vmap_table(m->GetVmapTable());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700170 uint32_t vmap_offset;
171 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700172 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800173 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
174 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
175 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
176 SetGPR(reg, new_value);
177 } else {
178 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700179 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Mathieu Chartier67022432012-11-29 18:04:50 -0800180 uint32_t core_spills = m->GetCoreSpillMask();
181 uint32_t fp_spills = m->GetFpSpillMask();
182 size_t frame_size = m->GetFrameSizeInBytes();
183 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
184 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
185 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700186 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700187 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800188 return cur_shadow_frame_->SetVReg(vreg, new_value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700189 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700190}
191
192uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700193 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Ian Rogers0399dde2012-06-06 17:09:28 -0700194 return context_->GetGPR(reg);
195}
196
Mathieu Chartier67022432012-11-29 18:04:50 -0800197void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700198 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Mathieu Chartier67022432012-11-29 18:04:50 -0800199 context_->SetGPR(reg, value);
200}
201
Ian Rogers0399dde2012-06-06 17:09:28 -0700202uintptr_t StackVisitor::GetReturnPc() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700203 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800204 DCHECK(sp != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700205 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
206 return *reinterpret_cast<uintptr_t*>(pc_addr);
207}
208
209void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700210 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Ian Rogers0399dde2012-06-06 17:09:28 -0700211 CHECK(sp != NULL);
212 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
213 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
214}
215
Ian Rogers7a22fa62013-01-23 12:16:16 -0800216size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700217 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800218 explicit NumFramesVisitor(Thread* thread)
219 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700220
221 virtual bool VisitFrame() {
222 frames++;
223 return true;
224 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700225
Ian Rogers0399dde2012-06-06 17:09:28 -0700226 size_t frames;
227 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800228 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700229 visitor.WalkStack(true);
230 return visitor.frames;
231}
232
Ian Rogers7a22fa62013-01-23 12:16:16 -0800233void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800234 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800235 explicit DescribeStackVisitor(Thread* thread)
236 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800237
238 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
239 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
240 return true;
241 }
242 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800243 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800244 visitor.WalkStack(true);
245}
246
Ian Rogers40e3bac2012-11-20 00:09:14 -0800247std::string StackVisitor::DescribeLocation() const {
248 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700249 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800250 if (m == NULL) {
251 return "upcall";
252 }
253 result += PrettyMethod(m);
Ian Rogers40e3bac2012-11-20 00:09:14 -0800254 result += StringPrintf("' at dex PC 0x%04zx", GetDexPc());
255 if (!IsShadowFrame()) {
256 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
257 }
258 return result;
259}
260
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200261instrumentation::InstrumentationStackFrame& StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800262 return thread_->GetInstrumentationStack()->at(depth);
263}
264
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700265void StackVisitor::SanityCheckFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700266#ifndef NDEBUG
Brian Carlstromea46f952013-07-30 01:26:50 -0700267 mirror::ArtMethod* method = GetMethod();
268 CHECK(method->GetClass() == mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers0399dde2012-06-06 17:09:28 -0700269 if (cur_quick_frame_ != NULL) {
buzbee8320f382012-09-11 16:29:42 -0700270 method->AssertPcIsWithinCode(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700271 // Frame sanity.
272 size_t frame_size = method->GetFrameSizeInBytes();
273 CHECK_NE(frame_size, 0u);
Jeff Haob24b4a72013-07-31 13:47:31 -0700274 // A rough guess at an upper size we expect to see for a frame. The 256 is
275 // a dex register limit. The 16 incorporates callee save spills and
276 // outgoing argument set up.
277 const size_t kMaxExpectedFrameSize = 256 * sizeof(word) + 16;
278 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers0399dde2012-06-06 17:09:28 -0700279 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
280 CHECK_LT(return_pc_offset, frame_size);
281 }
282#endif
283}
284
285void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800286 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800287 CHECK_EQ(cur_depth_, 0U);
288 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800289 uint32_t instrumentation_stack_depth = 0;
Ian Rogers7a22fa62013-01-23 12:16:16 -0800290 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700291 current_fragment = current_fragment->GetLink()) {
292 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
293 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
294 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
295 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
296 // Can't be both a shadow and a quick fragment.
297 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -0700298 mirror::ArtMethod* method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800299 while (method != NULL) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700300 SanityCheckFrame();
301 bool should_continue = VisitFrame();
302 if (UNLIKELY(!should_continue)) {
303 return;
304 }
305 if (context_ != NULL) {
306 context_->FillCalleeSaves(*this);
307 }
308 size_t frame_size = method->GetFrameSizeInBytes();
309 // Compute PC for next stack frame from return PC.
310 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
311 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
312 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800313 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700314 // While profiling, the return pc is restored from the side stack, except when walking
315 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700316 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200317 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogers62d6c772013-02-27 08:32:07 -0800318 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800319 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700320 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
321 // Skip runtime save all callee frames which are used to deliver exceptions.
322 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700323 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700324 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
325 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700326 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800327 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Ian Rogers0399dde2012-06-06 17:09:28 -0700328 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800329 }
330 if (num_frames_ != 0) {
331 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
332 // recursion.
333 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
334 << "Expected: " << instrumentation_frame.frame_id_
335 << " Found: " << GetFrameId();
336 }
jeffhao725a9572012-11-13 18:20:12 -0800337 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700338 }
339 }
340 cur_quick_frame_pc_ = return_pc;
341 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Brian Carlstromea46f952013-07-30 01:26:50 -0700342 cur_quick_frame_ = reinterpret_cast<mirror::ArtMethod**>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700343 cur_depth_++;
344 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800345 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700346 } else if (cur_shadow_frame_ != NULL) {
347 do {
348 SanityCheckFrame();
349 bool should_continue = VisitFrame();
350 if (UNLIKELY(!should_continue)) {
351 return;
352 }
353 cur_depth_++;
354 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700355 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700356 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700357 if (include_transitions) {
358 bool should_continue = VisitFrame();
359 if (!should_continue) {
360 return;
361 }
362 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800363 cur_depth_++;
364 }
365 if (num_frames_ != 0) {
366 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700367 }
368}
369
Elliott Hughes68e76522011-10-05 13:22:16 -0700370} // namespace art