blob: 8690a36387fa09550128fc6eab258b682cbbd268 [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 Rogers0399dde2012-06-06 17:09:28 -070019#include "oat/runtime/context.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include "mirror/abstract_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"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070026#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080027#include "throw_location.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070028
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080029namespace art {
30
Ian Rogers62d6c772013-02-27 08:32:07 -080031mirror::Object* ShadowFrame::GetThisObject() const {
32 mirror::AbstractMethod* m = GetMethod();
33 if (m->IsStatic()) {
34 return NULL;
35 } else if (m->IsNative()) {
36 return GetVRegReference(0);
37 } else {
38 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
39 CHECK(code_item != NULL) << PrettyMethod(m);
40 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
41 return GetVRegReference(reg);
42 }
43}
44
45ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
46 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
47}
48
TDYa127ce4cc0d2012-11-18 16:59:53 -080049size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070050 size_t count = 0;
51 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
52 current_fragment = current_fragment->GetLink()) {
53 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
54 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080055 if (current_frame->GetMethod()->IsNative()) {
56 // The JNI ShadowFrame only contains references. (For indirect reference.)
57 count += current_frame->NumberOfVRegs();
58 }
Ian Rogers0399dde2012-06-06 17:09:28 -070059 }
60 }
61 return count;
62}
63
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080064bool ManagedStack::ShadowFramesContain(mirror::Object** shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070065 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()) {
69 if (current_frame->Contains(shadow_frame_entry)) {
70 return true;
71 }
72 }
73 }
74 return false;
75}
76
Ian Rogers7a22fa62013-01-23 12:16:16 -080077StackVisitor::StackVisitor(Thread* thread, Context* context)
78 : thread_(thread), cur_shadow_frame_(NULL),
79 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
80 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080081 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080082}
83
Ian Rogers0399dde2012-06-06 17:09:28 -070084uint32_t StackVisitor::GetDexPc() const {
85 if (cur_shadow_frame_ != NULL) {
86 return cur_shadow_frame_->GetDexPC();
87 } else if (cur_quick_frame_ != NULL) {
Ian Rogers0c7abda2012-09-19 13:33:42 -070088 return GetMethod()->ToDexPc(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -070089 } else {
90 return 0;
91 }
92}
93
Ian Rogers62d6c772013-02-27 08:32:07 -080094mirror::Object* StackVisitor::GetThisObject() const {
95 mirror::AbstractMethod* m = GetMethod();
96 if (m->IsStatic()) {
97 return NULL;
98 } else if (m->IsNative()) {
99 if (cur_quick_frame_ != NULL) {
100 StackIndirectReferenceTable* sirt =
101 reinterpret_cast<StackIndirectReferenceTable*>(
102 reinterpret_cast<char*>(cur_quick_frame_) +
103 m->GetSirtOffsetInBytes());
104 return sirt->GetReference(0);
105 } else {
106 return cur_shadow_frame_->GetVRegReference(0);
107 }
108 } else {
109 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
110 if (code_item == NULL) {
111 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method"
112 << PrettyMethod(m);
113 return NULL;
114 } else {
115 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
116 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
117 }
118 }
119}
120
Ian Rogers0c7abda2012-09-19 13:33:42 -0700121size_t StackVisitor::GetNativePcOffset() const {
122 DCHECK(!IsShadowFrame());
123 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
124}
125
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800126uint32_t StackVisitor::GetVReg(mirror::AbstractMethod* m, uint16_t vreg, VRegKind kind) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700127 if (cur_quick_frame_ != NULL) {
128 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800129 DCHECK(m == GetMethod());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700130 const VmapTable vmap_table(m->GetVmapTableRaw());
131 uint32_t vmap_offset;
132 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800133 if (vmap_table.IsInContext(vreg, vmap_offset, kind)) {
134 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
135 uint32_t spill_mask = is_float ? m->GetFpSpillMask()
136 : m->GetCoreSpillMask();
137 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
Ian Rogers0ec569a2012-07-01 16:43:46 -0700138 } else {
139 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
140 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Ian Rogers0ec569a2012-07-01 16:43:46 -0700141 size_t frame_size = m->GetFrameSizeInBytes();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800142 return GetVReg(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
143 frame_size, vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700144 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700145 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700146 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700147 }
148}
149
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800150void StackVisitor::SetVReg(mirror::AbstractMethod* m, uint16_t vreg, uint32_t new_value,
151 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700152 if (cur_quick_frame_ != NULL) {
153 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
154 DCHECK(m == GetMethod());
155 const VmapTable vmap_table(m->GetVmapTableRaw());
156 uint32_t vmap_offset;
157 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800158 if (vmap_table.IsInContext(vreg, vmap_offset, kind)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800159 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
160 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
161 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
162 SetGPR(reg, new_value);
163 } else {
164 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
165 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
166 uint32_t core_spills = m->GetCoreSpillMask();
167 uint32_t fp_spills = m->GetFpSpillMask();
168 size_t frame_size = m->GetFrameSizeInBytes();
169 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
170 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
171 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700172 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700173 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800174 return cur_shadow_frame_->SetVReg(vreg, new_value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700175 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700176}
177
178uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700179 DCHECK (cur_quick_frame_ != NULL) << "This is a quick frame routine";
Ian Rogers0399dde2012-06-06 17:09:28 -0700180 return context_->GetGPR(reg);
181}
182
Mathieu Chartier67022432012-11-29 18:04:50 -0800183void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
184 DCHECK (cur_quick_frame_ != NULL) << "This is a quick frame routine";
185 context_->SetGPR(reg, value);
186}
187
Ian Rogers0399dde2012-06-06 17:09:28 -0700188uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800189 mirror::AbstractMethod** sp = GetCurrentQuickFrame();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800190 DCHECK(sp != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700191 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
192 return *reinterpret_cast<uintptr_t*>(pc_addr);
193}
194
195void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 mirror::AbstractMethod** sp = GetCurrentQuickFrame();
Ian Rogers0399dde2012-06-06 17:09:28 -0700197 CHECK(sp != NULL);
198 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
199 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
200}
201
Ian Rogers7a22fa62013-01-23 12:16:16 -0800202size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700203 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800204 explicit NumFramesVisitor(Thread* thread)
205 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700206
207 virtual bool VisitFrame() {
208 frames++;
209 return true;
210 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700211
Ian Rogers0399dde2012-06-06 17:09:28 -0700212 size_t frames;
213 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800214 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700215 visitor.WalkStack(true);
216 return visitor.frames;
217}
218
Ian Rogers7a22fa62013-01-23 12:16:16 -0800219void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800220 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800221 explicit DescribeStackVisitor(Thread* thread)
222 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800223
224 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
225 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
226 return true;
227 }
228 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800229 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800230 visitor.WalkStack(true);
231}
232
Ian Rogers40e3bac2012-11-20 00:09:14 -0800233std::string StackVisitor::DescribeLocation() const {
234 std::string result("Visiting method '");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235 mirror::AbstractMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800236 if (m == NULL) {
237 return "upcall";
238 }
239 result += PrettyMethod(m);
Ian Rogers40e3bac2012-11-20 00:09:14 -0800240 result += StringPrintf("' at dex PC 0x%04zx", GetDexPc());
241 if (!IsShadowFrame()) {
242 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
243 }
244 return result;
245}
246
Ian Rogers62d6c772013-02-27 08:32:07 -0800247instrumentation::InstrumentationStackFrame StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800248 return thread_->GetInstrumentationStack()->at(depth);
249}
250
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700251void StackVisitor::SanityCheckFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700252#ifndef NDEBUG
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800253 mirror::AbstractMethod* method = GetMethod();
254 CHECK(method->GetClass() == mirror::AbstractMethod::GetMethodClass() ||
255 method->GetClass() == mirror::AbstractMethod::GetConstructorClass());
Ian Rogers0399dde2012-06-06 17:09:28 -0700256 if (cur_quick_frame_ != NULL) {
buzbee8320f382012-09-11 16:29:42 -0700257 method->AssertPcIsWithinCode(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700258 // Frame sanity.
259 size_t frame_size = method->GetFrameSizeInBytes();
260 CHECK_NE(frame_size, 0u);
261 CHECK_LT(frame_size, 1024u);
262 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
263 CHECK_LT(return_pc_offset, frame_size);
264 }
265#endif
266}
267
268void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800269 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800270 CHECK_EQ(cur_depth_, 0U);
271 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800272 uint32_t instrumentation_stack_depth = 0;
Ian Rogers7a22fa62013-01-23 12:16:16 -0800273 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700274 current_fragment = current_fragment->GetLink()) {
275 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
276 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
277 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
278 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
279 // Can't be both a shadow and a quick fragment.
280 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800281 mirror::AbstractMethod* method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800282 while (method != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800283 DCHECK(cur_quick_frame_pc_ != GetInstrumentationExitPc());
Ian Rogers0399dde2012-06-06 17:09:28 -0700284 SanityCheckFrame();
285 bool should_continue = VisitFrame();
286 if (UNLIKELY(!should_continue)) {
287 return;
288 }
289 if (context_ != NULL) {
290 context_->FillCalleeSaves(*this);
291 }
292 size_t frame_size = method->GetFrameSizeInBytes();
293 // Compute PC for next stack frame from return PC.
294 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
295 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
296 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800297 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700298 // While profiling, the return pc is restored from the side stack, except when walking
299 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers62d6c772013-02-27 08:32:07 -0800300 if (GetInstrumentationExitPc() == return_pc) {
301 instrumentation::InstrumentationStackFrame instrumentation_frame =
302 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800303 instrumentation_stack_depth++;
Ian Rogers62d6c772013-02-27 08:32:07 -0800304 if (instrumentation_frame.method_ != GetMethod()) {
305 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Ian Rogers0399dde2012-06-06 17:09:28 -0700306 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800307 }
308 if (num_frames_ != 0) {
309 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
310 // recursion.
311 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
312 << "Expected: " << instrumentation_frame.frame_id_
313 << " Found: " << GetFrameId();
314 }
jeffhao725a9572012-11-13 18:20:12 -0800315 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700316 }
317 }
318 cur_quick_frame_pc_ = return_pc;
319 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 cur_quick_frame_ = reinterpret_cast<mirror::AbstractMethod**>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700321 cur_depth_++;
322 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800323 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700324 } else if (cur_shadow_frame_ != NULL) {
325 do {
326 SanityCheckFrame();
327 bool should_continue = VisitFrame();
328 if (UNLIKELY(!should_continue)) {
329 return;
330 }
331 cur_depth_++;
332 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
333 } while(cur_shadow_frame_ != NULL);
334 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700335 if (include_transitions) {
336 bool should_continue = VisitFrame();
337 if (!should_continue) {
338 return;
339 }
340 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800341 cur_depth_++;
342 }
343 if (num_frames_ != 0) {
344 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700345 }
346}
347
Elliott Hughes68e76522011-10-05 13:22:16 -0700348} // namespace art