blob: ef098169810112ded7a47126dde8df55312fef56 [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"
Vladimir Marko7624d252014-05-02 14:40:15 +010026#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070027#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070028#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070029#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080030#include "throw_location.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080031#include "verify_object-inl.h"
Ian Rogers1809a722013-08-09 22:05:32 -070032#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070033
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080034namespace art {
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 Rogersef7d42f2014-01-06 12:55:46 -080078bool ManagedStack::ShadowFramesContain(StackReference<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 Rogers5cf98192014-05-29 21:31:50 -070098StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames)
99 : thread_(thread), cur_shadow_frame_(NULL),
100 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0),
101 context_(context) {
102 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
103}
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) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700121 HandleScope* hs = reinterpret_cast<HandleScope*>(
122 reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffsetInBytes());
123 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800124 } else {
125 return cur_shadow_frame_->GetVRegReference(0);
126 }
127 } else {
128 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
129 if (code_item == NULL) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800130 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800132 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800133 } else {
134 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
135 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
136 }
137 }
138}
139
Ian Rogers0c7abda2012-09-19 13:33:42 -0700140size_t StackVisitor::GetNativePcOffset() const {
141 DCHECK(!IsShadowFrame());
142 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
143}
144
Brian Carlstromea46f952013-07-30 01:26:50 -0700145uint32_t StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700146 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700147 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800148 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100149 const void* code_pointer = m->GetQuickOatCodePointer();
150 DCHECK(code_pointer != nullptr);
151 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
152 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700153 uint32_t vmap_offset;
154 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700155 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800156 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100157 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800158 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?
Vladimir Marko7624d252014-05-02 14:40:15 +0100162 return *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
163 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700164 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700165 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700166 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700167 }
168}
169
Brian Carlstromea46f952013-07-30 01:26:50 -0700170void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800171 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700172 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700173 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700174 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100175 const void* code_pointer = m->GetQuickOatCodePointer();
176 DCHECK(code_pointer != nullptr);
177 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
178 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700179 uint32_t vmap_offset;
180 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700181 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800182 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100183 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Mathieu Chartier67022432012-11-29 18:04:50 -0800184 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
185 SetGPR(reg, new_value);
186 } else {
187 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700188 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Vladimir Marko7624d252014-05-02 14:40:15 +0100189 int offset = GetVRegOffset(code_item, frame_info.CoreSpillMask(), frame_info.FpSpillMask(),
190 frame_info.FrameSizeInBytes(), vreg, kRuntimeISA);
Mathieu Chartier67022432012-11-29 18:04:50 -0800191 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 {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700215 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800216 DCHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700217 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700218 return *reinterpret_cast<uintptr_t*>(pc_addr);
219}
220
221void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700222 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers0399dde2012-06-06 17:09:28 -0700223 CHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700224 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700225 *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
Ian Rogers5cf98192014-05-29 21:31:50 -0700233 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700234 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 Rogers5cf98192014-05-29 21:31:50 -0700245bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
246 struct HasMoreFramesVisitor : public StackVisitor {
247 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
248 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
249 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
250 }
251
252 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
253 if (found_frame_) {
254 mirror::ArtMethod* method = GetMethod();
255 if (method != nullptr && !method->IsRuntimeMethod()) {
256 has_more_frames_ = true;
257 next_method_ = method;
258 next_dex_pc_ = GetDexPc();
259 return false; // End stack walk once next method is found.
260 }
261 } else if (GetFrameHeight() == frame_height_) {
262 found_frame_ = true;
263 }
264 return true;
265 }
266
267 size_t frame_height_;
268 bool found_frame_;
269 bool has_more_frames_;
270 mirror::ArtMethod* next_method_;
271 uint32_t next_dex_pc_;
272 };
273 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
274 visitor.WalkStack(true);
275 *next_method = visitor.next_method_;
276 *next_dex_pc = visitor.next_dex_pc_;
277 return visitor.has_more_frames_;
278}
279
Ian Rogers7a22fa62013-01-23 12:16:16 -0800280void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800281 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800282 explicit DescribeStackVisitor(Thread* thread)
283 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800284
Ian Rogers5cf98192014-05-29 21:31:50 -0700285 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800286 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
287 return true;
288 }
289 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800290 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800291 visitor.WalkStack(true);
292}
293
Ian Rogers40e3bac2012-11-20 00:09:14 -0800294std::string StackVisitor::DescribeLocation() const {
295 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700296 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800297 if (m == NULL) {
298 return "upcall";
299 }
300 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800301 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800302 if (!IsShadowFrame()) {
303 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
304 }
305 return result;
306}
307
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200308instrumentation::InstrumentationStackFrame& StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Sebastien Hertz123756a2013-11-27 15:49:42 +0100309 CHECK_LT(depth, thread_->GetInstrumentationStack()->size());
Ian Rogers7a22fa62013-01-23 12:16:16 -0800310 return thread_->GetInstrumentationStack()->at(depth);
311}
312
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700313void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800314 if (kIsDebugBuild) {
315 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700316 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800317 if (cur_quick_frame_ != nullptr) {
318 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
319 // Frame sanity.
320 size_t frame_size = method->GetFrameSizeInBytes();
321 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700322 // A rough guess at an upper size we expect to see for a frame.
323 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700324 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700325 // 3+3 register spills
326 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700327 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
328 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
329 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800330 CHECK_LE(frame_size, kMaxExpectedFrameSize);
331 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
332 CHECK_LT(return_pc_offset, frame_size);
333 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700334 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700335}
336
337void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800338 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800339 CHECK_EQ(cur_depth_, 0U);
340 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800341 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700342
Ian Rogers7a22fa62013-01-23 12:16:16 -0800343 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700344 current_fragment = current_fragment->GetLink()) {
345 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
346 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
347 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
Dave Allisonf9439142014-03-27 15:10:22 -0700348
Ian Rogers0399dde2012-06-06 17:09:28 -0700349 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
350 // Can't be both a shadow and a quick fragment.
351 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700352 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800353 while (method != NULL) {
Dave Allison5cd33752014-04-15 15:57:58 -0700354 SanityCheckFrame();
355 bool should_continue = VisitFrame();
356 if (UNLIKELY(!should_continue)) {
357 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700358 }
Dave Allison5cd33752014-04-15 15:57:58 -0700359
Ian Rogers0399dde2012-06-06 17:09:28 -0700360 if (context_ != NULL) {
361 context_->FillCalleeSaves(*this);
362 }
363 size_t frame_size = method->GetFrameSizeInBytes();
364 // Compute PC for next stack frame from return PC.
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100365 size_t return_pc_offset = method->GetReturnPcOffsetInBytes(frame_size);
Ian Rogers0399dde2012-06-06 17:09:28 -0700366 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
367 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800368 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700369 // While profiling, the return pc is restored from the side stack, except when walking
370 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700371 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200372 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogers62d6c772013-02-27 08:32:07 -0800373 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800374 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700375 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
376 // Skip runtime save all callee frames which are used to deliver exceptions.
377 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700378 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700379 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100380 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700381 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800382 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100383 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800384 }
385 if (num_frames_ != 0) {
386 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
387 // recursion.
388 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
389 << "Expected: " << instrumentation_frame.frame_id_
390 << " Found: " << GetFrameId();
391 }
jeffhao725a9572012-11-13 18:20:12 -0800392 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700393 }
394 }
395 cur_quick_frame_pc_ = return_pc;
396 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700397 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700398 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700399 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800400 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700401 } else if (cur_shadow_frame_ != NULL) {
402 do {
403 SanityCheckFrame();
404 bool should_continue = VisitFrame();
405 if (UNLIKELY(!should_continue)) {
406 return;
407 }
408 cur_depth_++;
409 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700410 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700411 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700412 if (include_transitions) {
413 bool should_continue = VisitFrame();
414 if (!should_continue) {
415 return;
416 }
417 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800418 cur_depth_++;
419 }
420 if (num_frames_ != 0) {
421 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700422 }
423}
424
Elliott Hughes68e76522011-10-05 13:22:16 -0700425} // namespace art