blob: b8b10d26e0f045d889f15da347964183fe45a8f2 [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 Rogerse63db272014-07-15 15:36:11 -070019#include "arch/context.h"
Dave Allisonf9439142014-03-27 15:10:22 -070020#include "base/hex_dump.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070021#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070022#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "mirror/object.h"
24#include "mirror/object-inl.h"
25#include "mirror/object_array-inl.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 {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070043 const DexFile::CodeItem* code_item = m->GetCodeItem();
Ian Rogers62d6c772013-02-27 08:32:07 -080044 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()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100118 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800119 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100120 if (cur_quick_frame_ != nullptr) {
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 }
Nicolas Geoffray39468442014-09-02 15:17:15 +0100127 } else if (m->IsOptimized()) {
128 // TODO: Implement, currently only used for exceptions when jdwp is enabled.
129 LOG(WARNING) << "StackVisitor::GetThisObject is unimplemented with the optimizing compiler";
130 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700132 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100133 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800134 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800135 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800136 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800137 } else {
138 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
139 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
140 }
141 }
142}
143
Ian Rogers0c7abda2012-09-19 13:33:42 -0700144size_t StackVisitor::GetNativePcOffset() const {
145 DCHECK(!IsShadowFrame());
146 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
147}
148
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200149bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
150 uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200151 if (cur_quick_frame_ != nullptr) {
152 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800153 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100154 const void* code_pointer = m->GetQuickOatCodePointer();
155 DCHECK(code_pointer != nullptr);
156 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
157 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700158 uint32_t vmap_offset;
159 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700160 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800161 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100162 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200163 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
164 uintptr_t ptr_val;
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200165 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val);
166 if (!success) {
167 return false;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200168 }
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200169 bool target64 = Is64BitInstructionSet(kRuntimeISA);
170 if (target64) {
buzbeeb5860fb2014-06-21 15:31:01 -0700171 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
172 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
173 int64_t value_long = static_cast<int64_t>(ptr_val);
174 if (wide_lo) {
175 ptr_val = static_cast<uintptr_t>(value_long & 0xFFFFFFFF);
176 } else if (wide_hi) {
177 ptr_val = static_cast<uintptr_t>(value_long >> 32);
178 }
179 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200180 *val = ptr_val;
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200181 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700182 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700183 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200184 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
185 // its instructions?
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200186 *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
Vladimir Marko7624d252014-05-02 14:40:15 +0100187 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200188 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700189 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700190 } else {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200191 *val = cur_shadow_frame_->GetVReg(vreg);
192 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700193 }
194}
195
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200196bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
197 VRegKind kind_hi, uint64_t* val) const {
198 if (kind_lo == kLongLoVReg) {
199 DCHECK_EQ(kind_hi, kLongHiVReg);
200 } else if (kind_lo == kDoubleLoVReg) {
201 DCHECK_EQ(kind_hi, kDoubleHiVReg);
202 } else {
203 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
204 }
205 if (cur_quick_frame_ != nullptr) {
206 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
207 DCHECK(m == GetMethod());
208 const void* code_pointer = m->GetQuickOatCodePointer();
209 DCHECK(code_pointer != nullptr);
210 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
211 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
212 uint32_t vmap_offset_lo, vmap_offset_hi;
213 // TODO: IsInContext stops before spotting floating point registers.
214 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
215 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
216 bool is_float = (kind_lo == kDoubleLoVReg);
217 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
218 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
219 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
220 uintptr_t ptr_val_lo, ptr_val_hi;
221 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo);
222 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi);
223 if (!success) {
224 return false;
225 }
226 bool target64 = Is64BitInstructionSet(kRuntimeISA);
227 if (target64) {
228 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
229 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
230 ptr_val_lo = static_cast<uintptr_t>(value_long_lo & 0xFFFFFFFF);
231 ptr_val_hi = static_cast<uintptr_t>(value_long_hi >> 32);
232 }
233 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
234 return true;
235 } else {
236 const DexFile::CodeItem* code_item = m->GetCodeItem();
237 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
238 // its instructions?
239 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
240 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
241 *val = *reinterpret_cast<uint64_t*>(addr);
242 return true;
243 }
244 } else {
245 *val = cur_shadow_frame_->GetVRegLong(vreg);
246 return true;
247 }
248}
249
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200250bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800251 VRegKind kind) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200252 if (cur_quick_frame_ != nullptr) {
253 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700254 DCHECK(m == GetMethod());
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100255 const void* code_pointer = m->GetQuickOatCodePointer();
256 DCHECK(code_pointer != nullptr);
257 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
258 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700259 uint32_t vmap_offset;
260 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers1809a722013-08-09 22:05:32 -0700261 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800262 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
Vladimir Marko7624d252014-05-02 14:40:15 +0100263 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200264 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200265 bool target64 = Is64BitInstructionSet(kRuntimeISA);
buzbeeb5860fb2014-06-21 15:31:01 -0700266 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
267 if (target64) {
268 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
269 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
270 if (wide_lo || wide_hi) {
271 uintptr_t old_reg_val;
272 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val);
273 if (!success) {
274 return false;
275 }
276 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
277 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
278 uint64_t mask = 0xffffffff;
279 if (wide_lo) {
280 mask = mask << 32;
281 } else {
282 new_vreg_portion = new_vreg_portion << 32;
283 }
284 new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
285 }
286 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200287 if (is_float) {
288 return SetFPR(reg, new_value);
289 } else {
290 return SetGPR(reg, new_value);
291 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800292 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700293 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200294 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
295 // its instructions?
296 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
297 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
298 *addr = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200299 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700300 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700301 } else {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200302 cur_shadow_frame_->SetVReg(vreg, new_value);
303 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700304 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700305}
306
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200307bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
308 VRegKind kind_lo, VRegKind kind_hi) {
309 if (kind_lo == kLongLoVReg) {
310 DCHECK_EQ(kind_hi, kLongHiVReg);
311 } else if (kind_lo == kDoubleLoVReg) {
312 DCHECK_EQ(kind_hi, kDoubleHiVReg);
313 } else {
314 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
315 }
316 if (cur_quick_frame_ != nullptr) {
317 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
318 DCHECK(m == GetMethod());
319 const void* code_pointer = m->GetQuickOatCodePointer();
320 DCHECK(code_pointer != nullptr);
321 const VmapTable vmap_table(m->GetVmapTable(code_pointer));
322 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
323 uint32_t vmap_offset_lo, vmap_offset_hi;
324 // TODO: IsInContext stops before spotting floating point registers.
325 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
326 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
327 bool is_float = (kind_lo == kDoubleLoVReg);
328 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
329 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
330 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
331 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
332 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32);
333 bool target64 = Is64BitInstructionSet(kRuntimeISA);
334 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
335 if (target64) {
336 uintptr_t old_reg_val_lo, old_reg_val_hi;
337 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo);
338 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi);
339 if (!success) {
340 return false;
341 }
342 uint64_t new_vreg_portion_lo = static_cast<uint64_t>(new_value_lo);
343 uint64_t new_vreg_portion_hi = static_cast<uint64_t>(new_value_hi) << 32;
344 uint64_t old_reg_val_lo_as_wide = static_cast<uint64_t>(old_reg_val_lo);
345 uint64_t old_reg_val_hi_as_wide = static_cast<uint64_t>(old_reg_val_hi);
346 uint64_t mask_lo = static_cast<uint64_t>(0xffffffff) << 32;
347 uint64_t mask_hi = 0xffffffff;
348 new_value_lo = static_cast<uintptr_t>((old_reg_val_lo_as_wide & mask_lo) | new_vreg_portion_lo);
349 new_value_hi = static_cast<uintptr_t>((old_reg_val_hi_as_wide & mask_hi) | new_vreg_portion_hi);
350 }
351 bool success = is_float ? SetFPR(reg_lo, new_value_lo) : SetGPR(reg_lo, new_value_lo);
352 success &= is_float ? SetFPR(reg_hi, new_value_hi) : SetGPR(reg_hi, new_value_hi);
353 return success;
354 } else {
355 const DexFile::CodeItem* code_item = m->GetCodeItem();
356 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
357 // its instructions?
358 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
359 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
360 *reinterpret_cast<uint64_t*>(addr) = new_value;
361 return true;
362 }
363 } else {
364 cur_shadow_frame_->SetVRegLong(vreg, new_value);
365 return true;
366 }
367}
368
Mathieu Chartier815873e2014-02-13 18:02:13 -0800369uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
370 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
371 return context_->GetGPRAddress(reg);
372}
373
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200374bool StackVisitor::GetGPR(uint32_t reg, uintptr_t* val) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700375 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200376 return context_->GetGPR(reg, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700377}
378
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200379bool StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700380 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200381 return context_->SetGPR(reg, value);
382}
383
384bool StackVisitor::GetFPR(uint32_t reg, uintptr_t* val) const {
385 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
386 return context_->GetFPR(reg, val);
387}
388
389bool StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
390 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
391 return context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800392}
393
Ian Rogers0399dde2012-06-06 17:09:28 -0700394uintptr_t StackVisitor::GetReturnPc() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700395 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800396 DCHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700397 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700398 return *reinterpret_cast<uintptr_t*>(pc_addr);
399}
400
401void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700402 byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame());
Ian Rogers0399dde2012-06-06 17:09:28 -0700403 CHECK(sp != NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700404 byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes();
Ian Rogers0399dde2012-06-06 17:09:28 -0700405 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
406}
407
Ian Rogers7a22fa62013-01-23 12:16:16 -0800408size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700409 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800410 explicit NumFramesVisitor(Thread* thread)
411 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700412
Ian Rogers5cf98192014-05-29 21:31:50 -0700413 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700414 frames++;
415 return true;
416 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700417
Ian Rogers0399dde2012-06-06 17:09:28 -0700418 size_t frames;
419 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800420 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700421 visitor.WalkStack(true);
422 return visitor.frames;
423}
424
Ian Rogers5cf98192014-05-29 21:31:50 -0700425bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
426 struct HasMoreFramesVisitor : public StackVisitor {
427 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
428 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
429 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
430 }
431
432 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
433 if (found_frame_) {
434 mirror::ArtMethod* method = GetMethod();
435 if (method != nullptr && !method->IsRuntimeMethod()) {
436 has_more_frames_ = true;
437 next_method_ = method;
438 next_dex_pc_ = GetDexPc();
439 return false; // End stack walk once next method is found.
440 }
441 } else if (GetFrameHeight() == frame_height_) {
442 found_frame_ = true;
443 }
444 return true;
445 }
446
447 size_t frame_height_;
448 bool found_frame_;
449 bool has_more_frames_;
450 mirror::ArtMethod* next_method_;
451 uint32_t next_dex_pc_;
452 };
453 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
454 visitor.WalkStack(true);
455 *next_method = visitor.next_method_;
456 *next_dex_pc = visitor.next_dex_pc_;
457 return visitor.has_more_frames_;
458}
459
Ian Rogers7a22fa62013-01-23 12:16:16 -0800460void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800461 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800462 explicit DescribeStackVisitor(Thread* thread)
463 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800464
Ian Rogers5cf98192014-05-29 21:31:50 -0700465 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800466 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
467 return true;
468 }
469 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800470 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800471 visitor.WalkStack(true);
472}
473
Ian Rogers40e3bac2012-11-20 00:09:14 -0800474std::string StackVisitor::DescribeLocation() const {
475 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700476 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800477 if (m == NULL) {
478 return "upcall";
479 }
480 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800481 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800482 if (!IsShadowFrame()) {
483 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
484 }
485 return result;
486}
487
Ian Rogerse63db272014-07-15 15:36:11 -0700488static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
489 uint32_t depth) {
490 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
491 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800492}
493
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700494void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800495 if (kIsDebugBuild) {
496 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700497 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800498 if (cur_quick_frame_ != nullptr) {
499 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
500 // Frame sanity.
501 size_t frame_size = method->GetFrameSizeInBytes();
502 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700503 // A rough guess at an upper size we expect to see for a frame.
504 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700505 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700506 // 3+3 register spills
507 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700508 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
509 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
510 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800511 CHECK_LE(frame_size, kMaxExpectedFrameSize);
512 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
513 CHECK_LT(return_pc_offset, frame_size);
514 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700515 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700516}
517
518void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800519 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800520 CHECK_EQ(cur_depth_, 0U);
521 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800522 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700523
Ian Rogers7a22fa62013-01-23 12:16:16 -0800524 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700525 current_fragment = current_fragment->GetLink()) {
526 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
527 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
528 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
Dave Allisonf9439142014-03-27 15:10:22 -0700529
Ian Rogers0399dde2012-06-06 17:09:28 -0700530 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
531 // Can't be both a shadow and a quick fragment.
532 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700533 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800534 while (method != NULL) {
Dave Allison5cd33752014-04-15 15:57:58 -0700535 SanityCheckFrame();
536 bool should_continue = VisitFrame();
537 if (UNLIKELY(!should_continue)) {
538 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700539 }
Dave Allison5cd33752014-04-15 15:57:58 -0700540
Ian Rogers0399dde2012-06-06 17:09:28 -0700541 if (context_ != NULL) {
542 context_->FillCalleeSaves(*this);
543 }
544 size_t frame_size = method->GetFrameSizeInBytes();
545 // Compute PC for next stack frame from return PC.
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100546 size_t return_pc_offset = method->GetReturnPcOffsetInBytes(frame_size);
Ian Rogers0399dde2012-06-06 17:09:28 -0700547 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
548 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800549 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700550 // While profiling, the return pc is restored from the side stack, except when walking
551 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers848871b2013-08-05 10:56:33 -0700552 if (GetQuickInstrumentationExitPc() == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200553 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700554 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800555 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700556 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
557 // Skip runtime save all callee frames which are used to deliver exceptions.
558 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700559 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700560 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100561 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700562 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800563 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100564 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800565 }
566 if (num_frames_ != 0) {
567 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
568 // recursion.
569 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
570 << "Expected: " << instrumentation_frame.frame_id_
571 << " Found: " << GetFrameId();
572 }
jeffhao725a9572012-11-13 18:20:12 -0800573 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700574 }
575 }
576 cur_quick_frame_pc_ = return_pc;
577 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700578 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700579 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700580 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800581 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700582 } else if (cur_shadow_frame_ != NULL) {
583 do {
584 SanityCheckFrame();
585 bool should_continue = VisitFrame();
586 if (UNLIKELY(!should_continue)) {
587 return;
588 }
589 cur_depth_++;
590 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700591 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700592 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700593 if (include_transitions) {
594 bool should_continue = VisitFrame();
595 if (!should_continue) {
596 return;
597 }
598 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800599 cur_depth_++;
600 }
601 if (num_frames_ != 0) {
602 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700603 }
604}
605
Elliott Hughes68e76522011-10-05 13:22:16 -0700606} // namespace art