blob: 97a8d01e05bc572f1fd00d787cec56e6b8d149f4 [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"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070021#include "entrypoints/runtime_asm_entrypoints.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070022#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "mirror/object.h"
25#include "mirror/object-inl.h"
26#include "mirror/object_array-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010027#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070028#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070029#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070030#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080031#include "throw_location.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080032#include "verify_object-inl.h"
Ian Rogers1809a722013-08-09 22:05:32 -070033#include "vmap_table.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070034
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080035namespace art {
36
Ian Rogers62d6c772013-02-27 08:32:07 -080037mirror::Object* ShadowFrame::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -070038 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080039 if (m->IsStatic()) {
40 return NULL;
41 } else if (m->IsNative()) {
42 return GetVRegReference(0);
43 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070044 const DexFile::CodeItem* code_item = m->GetCodeItem();
Ian Rogers62d6c772013-02-27 08:32:07 -080045 CHECK(code_item != NULL) << PrettyMethod(m);
46 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
47 return GetVRegReference(reg);
48 }
49}
50
Jeff Haoe701f482013-05-24 11:50:49 -070051mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Brian Carlstromea46f952013-07-30 01:26:50 -070052 mirror::ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070053 if (m->IsStatic()) {
54 return NULL;
55 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070056 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070057 }
58}
59
Ian Rogers62d6c772013-02-27 08:32:07 -080060ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
61 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
62}
63
TDYa127ce4cc0d2012-11-18 16:59:53 -080064size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070065 size_t count = 0;
66 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
67 current_fragment = current_fragment->GetLink()) {
68 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
69 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080070 if (current_frame->GetMethod()->IsNative()) {
71 // The JNI ShadowFrame only contains references. (For indirect reference.)
72 count += current_frame->NumberOfVRegs();
73 }
Ian Rogers0399dde2012-06-06 17:09:28 -070074 }
75 }
76 return count;
77}
78
Ian Rogersef7d42f2014-01-06 12:55:46 -080079bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070080 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
81 current_fragment = current_fragment->GetLink()) {
82 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
83 current_frame = current_frame->GetLink()) {
84 if (current_frame->Contains(shadow_frame_entry)) {
85 return true;
86 }
87 }
88 }
89 return false;
90}
91
Ian Rogers7a22fa62013-01-23 12:16:16 -080092StackVisitor::StackVisitor(Thread* thread, Context* context)
93 : thread_(thread), cur_shadow_frame_(NULL),
94 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
95 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080096 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080097}
98
Ian Rogers5cf98192014-05-29 21:31:50 -070099StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames)
100 : thread_(thread), cur_shadow_frame_(NULL),
101 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0),
102 context_(context) {
103 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
104}
105
Dave Allisonb373e092014-02-20 16:06:36 -0800106uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700107 if (cur_shadow_frame_ != NULL) {
108 return cur_shadow_frame_->GetDexPC();
109 } else if (cur_quick_frame_ != NULL) {
Dave Allisonb373e092014-02-20 16:06:36 -0800110 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
Ian Rogers0399dde2012-06-06 17:09:28 -0700111 } else {
112 return 0;
113 }
114}
115
Sebastien Hertza836bc92014-11-25 16:30:53 +0100116extern "C" mirror::Object* artQuickGetProxyThisObject(StackReference<mirror::ArtMethod>* sp)
117 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
118
Ian Rogers62d6c772013-02-27 08:32:07 -0800119mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700120 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800121 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100122 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800123 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100124 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700125 HandleScope* hs = reinterpret_cast<HandleScope*>(
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700126 reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffset().SizeValue());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700127 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800128 } else {
129 return cur_shadow_frame_->GetVRegReference(0);
130 }
Sebastien Hertza836bc92014-11-25 16:30:53 +0100131 } else if (m->IsProxyMethod()) {
132 if (cur_quick_frame_ != nullptr) {
133 return artQuickGetProxyThisObject(cur_quick_frame_);
134 } else {
135 return cur_shadow_frame_->GetVRegReference(0);
136 }
Nicolas Geoffray9729e522015-03-03 12:44:53 +0000137 } else if (m->IsOptimized(GetInstructionSetPointerSize(
138 Runtime::Current()->GetInstructionSet()))) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100139 // TODO: Implement, currently only used for exceptions when jdwp is enabled.
Ian Rogers2c4257b2014-10-24 14:20:06 -0700140 UNIMPLEMENTED(WARNING)
141 << "StackVisitor::GetThisObject is unimplemented with the optimizing compiler";
Nicolas Geoffray39468442014-09-02 15:17:15 +0100142 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800143 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700144 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100145 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800146 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800147 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800148 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800149 } else {
150 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
151 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
152 }
153 }
154}
155
Ian Rogers0c7abda2012-09-19 13:33:42 -0700156size_t StackVisitor::GetNativePcOffset() const {
157 DCHECK(!IsShadowFrame());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700158 return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700159}
160
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200161bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
162 uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200163 if (cur_quick_frame_ != nullptr) {
164 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800165 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100166 if (m->IsOptimized(sizeof(void*))) {
167 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700168 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100169 return GetVRegFromQuickCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700170 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700171 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100172 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200173 *val = cur_shadow_frame_->GetVReg(vreg);
174 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700175 }
176}
177
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100178bool StackVisitor::GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
179 uint32_t* val) const {
180 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
181 DCHECK(code_pointer != nullptr);
182 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
183 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
184 uint32_t vmap_offset;
185 // TODO: IsInContext stops before spotting floating point registers.
186 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
187 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
188 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
189 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
190 return GetRegisterIfAccessible(reg, kind, val);
191 } else {
192 const DexFile::CodeItem* code_item = m->GetCodeItem();
193 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
194 // its instructions?
195 *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
196 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
197 return true;
198 }
199}
200
201bool StackVisitor::GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
202 uint32_t* val) const {
203 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
204 DCHECK(code_pointer != nullptr);
205 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
206 CodeInfo code_info = m->GetOptimizedCodeInfo();
207 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
208 const DexFile::CodeItem* code_item = m->GetCodeItem();
209 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
210 // its instructions?
211 DCHECK_LT(vreg, code_item->registers_size_);
212 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map,
213 code_item->registers_size_);
214 DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg);
215 switch (location_kind) {
216 case DexRegisterMap::kInStack: {
217 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg);
218 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
219 *val = *reinterpret_cast<const uint32_t*>(addr);
220 return true;
221 }
222 case DexRegisterMap::kInRegister:
223 case DexRegisterMap::kInFpuRegister: {
224 uint32_t reg = dex_register_map.GetMachineRegister(vreg);
225 return GetRegisterIfAccessible(reg, kind, val);
226 }
227 case DexRegisterMap::kConstant:
228 *val = dex_register_map.GetConstant(vreg);
229 return true;
230 case DexRegisterMap::kNone:
231 return false;
232 }
233 UNREACHABLE();
234 return false;
235}
236
237bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
238 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
239 if (!IsAccessibleRegister(reg, is_float)) {
240 return false;
241 }
242 uintptr_t ptr_val = GetRegister(reg, is_float);
243 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
244 if (target64) {
245 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
246 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
247 int64_t value_long = static_cast<int64_t>(ptr_val);
248 if (wide_lo) {
249 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
250 } else if (wide_hi) {
251 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
252 }
253 }
254 *val = ptr_val;
255 return true;
256}
257
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200258bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
259 VRegKind kind_hi, uint64_t* val) const {
260 if (kind_lo == kLongLoVReg) {
261 DCHECK_EQ(kind_hi, kLongHiVReg);
262 } else if (kind_lo == kDoubleLoVReg) {
263 DCHECK_EQ(kind_hi, kDoubleHiVReg);
264 } else {
265 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100266 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200267 }
268 if (cur_quick_frame_ != nullptr) {
269 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
270 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100271 if (m->IsOptimized(sizeof(void*))) {
272 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200273 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100274 return GetVRegPairFromQuickCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200275 }
276 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100277 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200278 *val = cur_shadow_frame_->GetVRegLong(vreg);
279 return true;
280 }
281}
282
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100283bool StackVisitor::GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
284 VRegKind kind_hi, uint64_t* val) const {
285 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
286 DCHECK(code_pointer != nullptr);
287 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
288 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
289 uint32_t vmap_offset_lo, vmap_offset_hi;
290 // TODO: IsInContext stops before spotting floating point registers.
291 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
292 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
293 bool is_float = (kind_lo == kDoubleLoVReg);
294 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
295 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
296 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
297 return GetRegisterPairIfAccessible(reg_lo, reg_hi, kind_lo, val);
298 } else {
299 const DexFile::CodeItem* code_item = m->GetCodeItem();
300 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
301 // its instructions?
302 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
303 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
304 *val = *reinterpret_cast<uint64_t*>(addr);
305 return true;
306 }
307}
308
309bool StackVisitor::GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
310 VRegKind kind_lo, VRegKind kind_hi,
311 uint64_t* val) const {
312 uint32_t low_32bits;
313 uint32_t high_32bits;
314 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
315 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
316 if (success) {
317 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
318 }
319 return success;
320}
321
322bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
323 VRegKind kind_lo, uint64_t* val) const {
324 const bool is_float = (kind_lo == kDoubleLoVReg);
325 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
326 return false;
327 }
328 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
329 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
330 bool target64 = Is64BitInstructionSet(kRuntimeISA);
331 if (target64) {
332 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
333 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
334 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
335 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
336 }
337 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
338 return true;
339}
340
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200341bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800342 VRegKind kind) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200343 if (cur_quick_frame_ != nullptr) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100344 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
345 DCHECK(m == GetMethod());
346 if (m->IsOptimized(sizeof(void*))) {
347 return SetVRegFromOptimizedCode(m, vreg, new_value, kind);
348 } else {
349 return SetVRegFromQuickCode(m, vreg, new_value, kind);
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100350 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800351 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100352 cur_shadow_frame_->SetVReg(vreg, new_value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200353 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700354 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100355}
356
357bool StackVisitor::SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
358 VRegKind kind) {
359 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
360 DCHECK(m == GetMethod());
361 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
362 DCHECK(code_pointer != nullptr);
363 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
364 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
365 uint32_t vmap_offset;
366 // TODO: IsInContext stops before spotting floating point registers.
367 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
368 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
369 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
370 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
371 return SetRegisterIfAccessible(reg, new_value, kind);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700372 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100373 const DexFile::CodeItem* code_item = m->GetCodeItem();
374 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
375 // its instructions?
376 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
377 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
378 *addr = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200379 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700380 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700381}
382
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100383bool StackVisitor::SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
384 VRegKind kind) {
385 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
386 DCHECK(code_pointer != nullptr);
387 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
388 CodeInfo code_info = m->GetOptimizedCodeInfo();
389 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
390 const DexFile::CodeItem* code_item = m->GetCodeItem();
391 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
392 // its instructions?
393 DCHECK_LT(vreg, code_item->registers_size_);
394 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map,
395 code_item->registers_size_);
396 DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg);
397 uint32_t dex_pc = m->ToDexPc(cur_quick_frame_pc_, false);
398 switch (location_kind) {
399 case DexRegisterMap::kInStack: {
400 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg);
401 uint8_t* addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + offset;
402 *reinterpret_cast<uint32_t*>(addr) = new_value;
403 return true;
404 }
405 case DexRegisterMap::kInRegister:
406 case DexRegisterMap::kInFpuRegister: {
407 uint32_t reg = dex_register_map.GetMachineRegister(vreg);
408 return SetRegisterIfAccessible(reg, new_value, kind);
409 }
410 case DexRegisterMap::kConstant:
411 LOG(ERROR) << StringPrintf("Cannot change value of DEX register v%u used as a constant at "
412 "DEX pc 0x%x (native pc 0x%x) of method %s",
413 vreg, dex_pc, native_pc_offset,
414 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
415 return false;
416 case DexRegisterMap::kNone:
417 LOG(ERROR) << StringPrintf("No location for DEX register v%u at DEX pc 0x%x "
418 "(native pc 0x%x) of method %s",
419 vreg, dex_pc, native_pc_offset,
420 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
421 return false;
422 default:
423 LOG(FATAL) << StringPrintf("Unknown location for DEX register v%u at DEX pc 0x%x "
424 "(native pc 0x%x) of method %s",
425 vreg, dex_pc, native_pc_offset,
426 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
427 UNREACHABLE();
428 }
429}
430
431bool StackVisitor::SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind) {
432 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
433 if (!IsAccessibleRegister(reg, is_float)) {
434 return false;
435 }
436 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
437
438 // Create a new value that can hold both low 32 and high 32 bits, in
439 // case we are running 64 bits.
440 uintptr_t full_new_value = new_value;
441 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
442 if (target64) {
443 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
444 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
445 if (wide_lo || wide_hi) {
446 uintptr_t old_reg_val = GetRegister(reg, is_float);
447 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
448 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
449 uint64_t mask = 0xffffffff;
450 if (wide_lo) {
451 mask = mask << 32;
452 } else {
453 new_vreg_portion = new_vreg_portion << 32;
454 }
455 full_new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
456 }
457 }
458 SetRegister(reg, full_new_value, is_float);
459 return true;
460}
461
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200462bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
463 VRegKind kind_lo, VRegKind kind_hi) {
464 if (kind_lo == kLongLoVReg) {
465 DCHECK_EQ(kind_hi, kLongHiVReg);
466 } else if (kind_lo == kDoubleLoVReg) {
467 DCHECK_EQ(kind_hi, kDoubleHiVReg);
468 } else {
469 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
470 }
471 if (cur_quick_frame_ != nullptr) {
472 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
473 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100474 if (m->IsOptimized(sizeof(void*))) {
475 return SetVRegPairFromOptimizedCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200476 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100477 return SetVRegPairFromQuickCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200478 }
479 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100480 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200481 cur_shadow_frame_->SetVRegLong(vreg, new_value);
482 return true;
483 }
484}
485
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100486bool StackVisitor::SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
487 VRegKind kind_lo, VRegKind kind_hi) {
488 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
489 DCHECK(code_pointer != nullptr);
490 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
491 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
492 uint32_t vmap_offset_lo, vmap_offset_hi;
493 // TODO: IsInContext stops before spotting floating point registers.
494 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
495 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
496 bool is_float = (kind_lo == kDoubleLoVReg);
497 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
498 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
499 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
500 return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float);
501 } else {
502 const DexFile::CodeItem* code_item = m->GetCodeItem();
503 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
504 // its instructions?
505 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
506 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
507 *reinterpret_cast<uint64_t*>(addr) = new_value;
508 return true;
509 }
510}
511
512bool StackVisitor::SetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
513 VRegKind kind_lo, VRegKind kind_hi) {
514 uint32_t low_32bits = Low32Bits(new_value);
515 uint32_t high_32bits = High32Bits(new_value);
516 bool success = SetVRegFromOptimizedCode(m, vreg, low_32bits, kind_lo);
517 success &= SetVRegFromOptimizedCode(m, vreg + 1, high_32bits, kind_hi);
518 return success;
519}
520
521bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
522 uint64_t new_value, bool is_float) {
523 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
524 return false;
525 }
526 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
527 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32);
528 bool target64 = Is64BitInstructionSet(kRuntimeISA);
529 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
530 if (target64) {
531 DCHECK_EQ(reg_lo, reg_hi);
532 SetRegister(reg_lo, new_value, is_float);
533 } else {
534 SetRegister(reg_lo, new_value_lo, is_float);
535 SetRegister(reg_hi, new_value_hi, is_float);
536 }
537 return true;
538}
539
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100540bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
541 DCHECK(context_ != nullptr);
542 return context_->IsAccessibleGPR(reg);
543}
544
Mathieu Chartier815873e2014-02-13 18:02:13 -0800545uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100546 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
547 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800548 return context_->GetGPRAddress(reg);
549}
550
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100551uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
552 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
553 DCHECK(context_ != nullptr);
554 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700555}
556
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100557void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
558 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
559 DCHECK(context_ != nullptr);
560 context_->SetGPR(reg, value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200561}
562
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100563bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
564 DCHECK(context_ != nullptr);
565 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200566}
567
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100568uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
569 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
570 DCHECK(context_ != nullptr);
571 return context_->GetFPR(reg);
572}
573
574void StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
575 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
576 DCHECK(context_ != nullptr);
577 context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800578}
579
Ian Rogers0399dde2012-06-06 17:09:28 -0700580uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700581 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800582 DCHECK(sp != NULL);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700583 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700584 return *reinterpret_cast<uintptr_t*>(pc_addr);
585}
586
587void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700588 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Ian Rogers0399dde2012-06-06 17:09:28 -0700589 CHECK(sp != NULL);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700590 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700591 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
592}
593
Ian Rogers7a22fa62013-01-23 12:16:16 -0800594size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700595 struct NumFramesVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800596 explicit NumFramesVisitor(Thread* thread_in)
597 : StackVisitor(thread_in, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700598
Ian Rogers5cf98192014-05-29 21:31:50 -0700599 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700600 frames++;
601 return true;
602 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700603
Ian Rogers0399dde2012-06-06 17:09:28 -0700604 size_t frames;
605 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800606 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700607 visitor.WalkStack(true);
608 return visitor.frames;
609}
610
Ian Rogers5cf98192014-05-29 21:31:50 -0700611bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
612 struct HasMoreFramesVisitor : public StackVisitor {
613 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
614 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
615 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
616 }
617
618 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
619 if (found_frame_) {
620 mirror::ArtMethod* method = GetMethod();
621 if (method != nullptr && !method->IsRuntimeMethod()) {
622 has_more_frames_ = true;
623 next_method_ = method;
624 next_dex_pc_ = GetDexPc();
625 return false; // End stack walk once next method is found.
626 }
627 } else if (GetFrameHeight() == frame_height_) {
628 found_frame_ = true;
629 }
630 return true;
631 }
632
633 size_t frame_height_;
634 bool found_frame_;
635 bool has_more_frames_;
636 mirror::ArtMethod* next_method_;
637 uint32_t next_dex_pc_;
638 };
639 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
640 visitor.WalkStack(true);
641 *next_method = visitor.next_method_;
642 *next_dex_pc = visitor.next_dex_pc_;
643 return visitor.has_more_frames_;
644}
645
Ian Rogers7a22fa62013-01-23 12:16:16 -0800646void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800647 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800648 explicit DescribeStackVisitor(Thread* thread_in)
649 : StackVisitor(thread_in, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800650
Ian Rogers5cf98192014-05-29 21:31:50 -0700651 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800652 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
653 return true;
654 }
655 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800656 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800657 visitor.WalkStack(true);
658}
659
Ian Rogers40e3bac2012-11-20 00:09:14 -0800660std::string StackVisitor::DescribeLocation() const {
661 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700662 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800663 if (m == NULL) {
664 return "upcall";
665 }
666 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800667 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800668 if (!IsShadowFrame()) {
669 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
670 }
671 return result;
672}
673
Ian Rogerse63db272014-07-15 15:36:11 -0700674static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
675 uint32_t depth) {
676 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
677 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800678}
679
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700680void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800681 if (kIsDebugBuild) {
682 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700683 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800684 if (cur_quick_frame_ != nullptr) {
685 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
686 // Frame sanity.
687 size_t frame_size = method->GetFrameSizeInBytes();
688 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700689 // A rough guess at an upper size we expect to see for a frame.
690 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700691 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700692 // 3+3 register spills
693 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700694 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
695 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
696 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800697 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700698 size_t return_pc_offset = method->GetReturnPcOffset().SizeValue();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800699 CHECK_LT(return_pc_offset, frame_size);
700 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700701 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700702}
703
704void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800705 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800706 CHECK_EQ(cur_depth_, 0U);
707 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800708 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700709
Ian Rogers7a22fa62013-01-23 12:16:16 -0800710 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700711 current_fragment = current_fragment->GetLink()) {
712 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
713 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700714 cur_quick_frame_pc_ = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700715
Ian Rogers0399dde2012-06-06 17:09:28 -0700716 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
717 // Can't be both a shadow and a quick fragment.
718 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700719 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800720 while (method != NULL) {
Dave Allison5cd33752014-04-15 15:57:58 -0700721 SanityCheckFrame();
722 bool should_continue = VisitFrame();
723 if (UNLIKELY(!should_continue)) {
724 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700725 }
Dave Allison5cd33752014-04-15 15:57:58 -0700726
Ian Rogers0399dde2012-06-06 17:09:28 -0700727 if (context_ != NULL) {
728 context_->FillCalleeSaves(*this);
729 }
730 size_t frame_size = method->GetFrameSizeInBytes();
731 // Compute PC for next stack frame from return PC.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700732 size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue();
Ian Rogers13735952014-10-08 12:43:28 -0700733 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700734 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800735 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700736 // While profiling, the return pc is restored from the side stack, except when walking
737 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700738 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200739 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700740 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800741 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700742 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
743 // Skip runtime save all callee frames which are used to deliver exceptions.
744 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700745 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700746 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100747 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700748 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800749 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100750 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800751 }
752 if (num_frames_ != 0) {
753 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
754 // recursion.
755 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
756 << "Expected: " << instrumentation_frame.frame_id_
757 << " Found: " << GetFrameId();
758 }
jeffhao725a9572012-11-13 18:20:12 -0800759 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700760 }
761 }
762 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700763 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700764 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700765 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700766 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800767 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700768 } else if (cur_shadow_frame_ != NULL) {
769 do {
770 SanityCheckFrame();
771 bool should_continue = VisitFrame();
772 if (UNLIKELY(!should_continue)) {
773 return;
774 }
775 cur_depth_++;
776 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700777 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700778 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700779 if (include_transitions) {
780 bool should_continue = VisitFrame();
781 if (!should_continue) {
782 return;
783 }
784 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800785 cur_depth_++;
786 }
787 if (num_frames_ != 0) {
788 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700789 }
790}
791
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800792void JavaFrameRootInfo::Describe(std::ostream& os) const {
793 const StackVisitor* visitor = stack_visitor_;
794 CHECK(visitor != nullptr);
795 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
796 visitor->DescribeLocation() << " vreg=" << vreg_;
797}
798
Elliott Hughes68e76522011-10-05 13:22:16 -0700799} // namespace art