blob: 24f71ed38a48f40f9ebbd4c3d8056c858cdbcd4f [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"
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
TDYa127ce4cc0d2012-11-18 16:59:53 -080059size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070060 size_t count = 0;
61 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
62 current_fragment = current_fragment->GetLink()) {
63 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
64 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080065 if (current_frame->GetMethod()->IsNative()) {
66 // The JNI ShadowFrame only contains references. (For indirect reference.)
67 count += current_frame->NumberOfVRegs();
68 }
Ian Rogers0399dde2012-06-06 17:09:28 -070069 }
70 }
71 return count;
72}
73
Ian Rogersef7d42f2014-01-06 12:55:46 -080074bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070075 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
76 current_fragment = current_fragment->GetLink()) {
77 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
78 current_frame = current_frame->GetLink()) {
79 if (current_frame->Contains(shadow_frame_entry)) {
80 return true;
81 }
82 }
83 }
84 return false;
85}
86
Ian Rogers7a22fa62013-01-23 12:16:16 -080087StackVisitor::StackVisitor(Thread* thread, Context* context)
88 : thread_(thread), cur_shadow_frame_(NULL),
89 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
90 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080091 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080092}
93
Ian Rogers5cf98192014-05-29 21:31:50 -070094StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames)
95 : thread_(thread), cur_shadow_frame_(NULL),
96 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0),
97 context_(context) {
98 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
99}
100
Dave Allisonb373e092014-02-20 16:06:36 -0800101uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700102 if (cur_shadow_frame_ != NULL) {
103 return cur_shadow_frame_->GetDexPC();
104 } else if (cur_quick_frame_ != NULL) {
Dave Allisonb373e092014-02-20 16:06:36 -0800105 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
Ian Rogers0399dde2012-06-06 17:09:28 -0700106 } else {
107 return 0;
108 }
109}
110
Sebastien Hertza836bc92014-11-25 16:30:53 +0100111extern "C" mirror::Object* artQuickGetProxyThisObject(StackReference<mirror::ArtMethod>* sp)
112 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
113
Ian Rogers62d6c772013-02-27 08:32:07 -0800114mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700115 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800116 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100117 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800118 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100119 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700120 HandleScope* hs = reinterpret_cast<HandleScope*>(
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700121 reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffset().SizeValue());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700122 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800123 } else {
124 return cur_shadow_frame_->GetVRegReference(0);
125 }
Sebastien Hertza836bc92014-11-25 16:30:53 +0100126 } else if (m->IsProxyMethod()) {
127 if (cur_quick_frame_ != nullptr) {
128 return artQuickGetProxyThisObject(cur_quick_frame_);
129 } else {
130 return cur_shadow_frame_->GetVRegReference(0);
131 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800132 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700133 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100134 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800135 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800136 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800137 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800138 } else {
139 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
140 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
141 }
142 }
143}
144
Ian Rogers0c7abda2012-09-19 13:33:42 -0700145size_t StackVisitor::GetNativePcOffset() const {
146 DCHECK(!IsShadowFrame());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700147 return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700148}
149
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200150bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
151 uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200152 if (cur_quick_frame_ != nullptr) {
153 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800154 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100155 if (m->IsOptimized(sizeof(void*))) {
156 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700157 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100158 return GetVRegFromQuickCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700159 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700160 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100161 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200162 *val = cur_shadow_frame_->GetVReg(vreg);
163 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700164 }
165}
166
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100167bool StackVisitor::GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
168 uint32_t* val) const {
169 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
170 DCHECK(code_pointer != nullptr);
171 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
172 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
173 uint32_t vmap_offset;
174 // TODO: IsInContext stops before spotting floating point registers.
175 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
176 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
177 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
178 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
179 return GetRegisterIfAccessible(reg, kind, val);
180 } else {
181 const DexFile::CodeItem* code_item = m->GetCodeItem();
182 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
183 // its instructions?
184 *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
185 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
186 return true;
187 }
188}
189
190bool StackVisitor::GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
191 uint32_t* val) const {
192 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
193 DCHECK(code_pointer != nullptr);
194 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
195 CodeInfo code_info = m->GetOptimizedCodeInfo();
196 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
197 const DexFile::CodeItem* code_item = m->GetCodeItem();
198 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
199 // its instructions?
200 DCHECK_LT(vreg, code_item->registers_size_);
201 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map,
202 code_item->registers_size_);
203 DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg);
204 switch (location_kind) {
205 case DexRegisterMap::kInStack: {
206 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg);
207 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
208 *val = *reinterpret_cast<const uint32_t*>(addr);
209 return true;
210 }
211 case DexRegisterMap::kInRegister:
212 case DexRegisterMap::kInFpuRegister: {
213 uint32_t reg = dex_register_map.GetMachineRegister(vreg);
214 return GetRegisterIfAccessible(reg, kind, val);
215 }
216 case DexRegisterMap::kConstant:
217 *val = dex_register_map.GetConstant(vreg);
218 return true;
219 case DexRegisterMap::kNone:
220 return false;
221 }
222 UNREACHABLE();
223 return false;
224}
225
226bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
227 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
228 if (!IsAccessibleRegister(reg, is_float)) {
229 return false;
230 }
231 uintptr_t ptr_val = GetRegister(reg, is_float);
232 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
233 if (target64) {
234 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
235 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
236 int64_t value_long = static_cast<int64_t>(ptr_val);
237 if (wide_lo) {
238 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
239 } else if (wide_hi) {
240 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
241 }
242 }
243 *val = ptr_val;
244 return true;
245}
246
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200247bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
248 VRegKind kind_hi, uint64_t* val) const {
249 if (kind_lo == kLongLoVReg) {
250 DCHECK_EQ(kind_hi, kLongHiVReg);
251 } else if (kind_lo == kDoubleLoVReg) {
252 DCHECK_EQ(kind_hi, kDoubleHiVReg);
253 } else {
254 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100255 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200256 }
257 if (cur_quick_frame_ != nullptr) {
258 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
259 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100260 if (m->IsOptimized(sizeof(void*))) {
261 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200262 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100263 return GetVRegPairFromQuickCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200264 }
265 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100266 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200267 *val = cur_shadow_frame_->GetVRegLong(vreg);
268 return true;
269 }
270}
271
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100272bool StackVisitor::GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
273 VRegKind kind_hi, uint64_t* val) const {
274 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
275 DCHECK(code_pointer != nullptr);
276 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
277 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
278 uint32_t vmap_offset_lo, vmap_offset_hi;
279 // TODO: IsInContext stops before spotting floating point registers.
280 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
281 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
282 bool is_float = (kind_lo == kDoubleLoVReg);
283 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
284 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
285 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
286 return GetRegisterPairIfAccessible(reg_lo, reg_hi, kind_lo, val);
287 } else {
288 const DexFile::CodeItem* code_item = m->GetCodeItem();
289 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
290 // its instructions?
291 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
292 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
293 *val = *reinterpret_cast<uint64_t*>(addr);
294 return true;
295 }
296}
297
298bool StackVisitor::GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
299 VRegKind kind_lo, VRegKind kind_hi,
300 uint64_t* val) const {
301 uint32_t low_32bits;
302 uint32_t high_32bits;
303 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
304 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
305 if (success) {
306 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
307 }
308 return success;
309}
310
311bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
312 VRegKind kind_lo, uint64_t* val) const {
313 const bool is_float = (kind_lo == kDoubleLoVReg);
314 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
315 return false;
316 }
317 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
318 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
319 bool target64 = Is64BitInstructionSet(kRuntimeISA);
320 if (target64) {
321 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
322 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
323 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
324 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
325 }
326 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
327 return true;
328}
329
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200330bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800331 VRegKind kind) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200332 if (cur_quick_frame_ != nullptr) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100333 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
334 DCHECK(m == GetMethod());
335 if (m->IsOptimized(sizeof(void*))) {
336 return SetVRegFromOptimizedCode(m, vreg, new_value, kind);
337 } else {
338 return SetVRegFromQuickCode(m, vreg, new_value, kind);
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100339 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800340 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100341 cur_shadow_frame_->SetVReg(vreg, new_value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200342 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700343 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100344}
345
346bool StackVisitor::SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
347 VRegKind kind) {
348 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
349 DCHECK(m == GetMethod());
350 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
351 DCHECK(code_pointer != nullptr);
352 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
353 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
354 uint32_t vmap_offset;
355 // TODO: IsInContext stops before spotting floating point registers.
356 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
357 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
358 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
359 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
360 return SetRegisterIfAccessible(reg, new_value, kind);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700361 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100362 const DexFile::CodeItem* code_item = m->GetCodeItem();
363 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
364 // its instructions?
365 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
366 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
367 *addr = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200368 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700369 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700370}
371
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100372bool StackVisitor::SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
373 VRegKind kind) {
374 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
375 DCHECK(code_pointer != nullptr);
376 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
377 CodeInfo code_info = m->GetOptimizedCodeInfo();
378 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
379 const DexFile::CodeItem* code_item = m->GetCodeItem();
380 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
381 // its instructions?
382 DCHECK_LT(vreg, code_item->registers_size_);
383 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map,
384 code_item->registers_size_);
385 DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg);
386 uint32_t dex_pc = m->ToDexPc(cur_quick_frame_pc_, false);
387 switch (location_kind) {
388 case DexRegisterMap::kInStack: {
389 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg);
390 uint8_t* addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + offset;
391 *reinterpret_cast<uint32_t*>(addr) = new_value;
392 return true;
393 }
394 case DexRegisterMap::kInRegister:
395 case DexRegisterMap::kInFpuRegister: {
396 uint32_t reg = dex_register_map.GetMachineRegister(vreg);
397 return SetRegisterIfAccessible(reg, new_value, kind);
398 }
399 case DexRegisterMap::kConstant:
400 LOG(ERROR) << StringPrintf("Cannot change value of DEX register v%u used as a constant at "
401 "DEX pc 0x%x (native pc 0x%x) of method %s",
402 vreg, dex_pc, native_pc_offset,
403 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
404 return false;
405 case DexRegisterMap::kNone:
406 LOG(ERROR) << StringPrintf("No location for DEX register v%u at DEX pc 0x%x "
407 "(native pc 0x%x) of method %s",
408 vreg, dex_pc, native_pc_offset,
409 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
410 return false;
411 default:
412 LOG(FATAL) << StringPrintf("Unknown location for DEX register v%u at DEX pc 0x%x "
413 "(native pc 0x%x) of method %s",
414 vreg, dex_pc, native_pc_offset,
415 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
416 UNREACHABLE();
417 }
418}
419
420bool StackVisitor::SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind) {
421 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
422 if (!IsAccessibleRegister(reg, is_float)) {
423 return false;
424 }
425 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
426
427 // Create a new value that can hold both low 32 and high 32 bits, in
428 // case we are running 64 bits.
429 uintptr_t full_new_value = new_value;
430 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
431 if (target64) {
432 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
433 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
434 if (wide_lo || wide_hi) {
435 uintptr_t old_reg_val = GetRegister(reg, is_float);
436 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
437 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
438 uint64_t mask = 0xffffffff;
439 if (wide_lo) {
440 mask = mask << 32;
441 } else {
442 new_vreg_portion = new_vreg_portion << 32;
443 }
444 full_new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
445 }
446 }
447 SetRegister(reg, full_new_value, is_float);
448 return true;
449}
450
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200451bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
452 VRegKind kind_lo, VRegKind kind_hi) {
453 if (kind_lo == kLongLoVReg) {
454 DCHECK_EQ(kind_hi, kLongHiVReg);
455 } else if (kind_lo == kDoubleLoVReg) {
456 DCHECK_EQ(kind_hi, kDoubleHiVReg);
457 } else {
458 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
459 }
460 if (cur_quick_frame_ != nullptr) {
461 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
462 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100463 if (m->IsOptimized(sizeof(void*))) {
464 return SetVRegPairFromOptimizedCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200465 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100466 return SetVRegPairFromQuickCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200467 }
468 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100469 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200470 cur_shadow_frame_->SetVRegLong(vreg, new_value);
471 return true;
472 }
473}
474
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100475bool StackVisitor::SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
476 VRegKind kind_lo, VRegKind kind_hi) {
477 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
478 DCHECK(code_pointer != nullptr);
479 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
480 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
481 uint32_t vmap_offset_lo, vmap_offset_hi;
482 // TODO: IsInContext stops before spotting floating point registers.
483 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
484 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
485 bool is_float = (kind_lo == kDoubleLoVReg);
486 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
487 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
488 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
489 return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float);
490 } else {
491 const DexFile::CodeItem* code_item = m->GetCodeItem();
492 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile
493 // its instructions?
494 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
495 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
496 *reinterpret_cast<uint64_t*>(addr) = new_value;
497 return true;
498 }
499}
500
501bool StackVisitor::SetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
502 VRegKind kind_lo, VRegKind kind_hi) {
503 uint32_t low_32bits = Low32Bits(new_value);
504 uint32_t high_32bits = High32Bits(new_value);
505 bool success = SetVRegFromOptimizedCode(m, vreg, low_32bits, kind_lo);
506 success &= SetVRegFromOptimizedCode(m, vreg + 1, high_32bits, kind_hi);
507 return success;
508}
509
510bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
511 uint64_t new_value, bool is_float) {
512 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
513 return false;
514 }
515 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
516 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32);
517 bool target64 = Is64BitInstructionSet(kRuntimeISA);
518 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
519 if (target64) {
520 DCHECK_EQ(reg_lo, reg_hi);
521 SetRegister(reg_lo, new_value, is_float);
522 } else {
523 SetRegister(reg_lo, new_value_lo, is_float);
524 SetRegister(reg_hi, new_value_hi, is_float);
525 }
526 return true;
527}
528
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100529bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
530 DCHECK(context_ != nullptr);
531 return context_->IsAccessibleGPR(reg);
532}
533
Mathieu Chartier815873e2014-02-13 18:02:13 -0800534uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100535 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
536 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800537 return context_->GetGPRAddress(reg);
538}
539
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100540uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
541 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
542 DCHECK(context_ != nullptr);
543 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700544}
545
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100546void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
547 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
548 DCHECK(context_ != nullptr);
549 context_->SetGPR(reg, value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200550}
551
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100552bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
553 DCHECK(context_ != nullptr);
554 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200555}
556
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100557uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
558 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
559 DCHECK(context_ != nullptr);
560 return context_->GetFPR(reg);
561}
562
563void StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
564 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
565 DCHECK(context_ != nullptr);
566 context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800567}
568
Ian Rogers0399dde2012-06-06 17:09:28 -0700569uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700570 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800571 DCHECK(sp != NULL);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700572 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700573 return *reinterpret_cast<uintptr_t*>(pc_addr);
574}
575
576void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700577 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Ian Rogers0399dde2012-06-06 17:09:28 -0700578 CHECK(sp != NULL);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700579 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700580 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
581}
582
Ian Rogers7a22fa62013-01-23 12:16:16 -0800583size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700584 struct NumFramesVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800585 explicit NumFramesVisitor(Thread* thread_in)
586 : StackVisitor(thread_in, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700587
Ian Rogers5cf98192014-05-29 21:31:50 -0700588 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700589 frames++;
590 return true;
591 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700592
Ian Rogers0399dde2012-06-06 17:09:28 -0700593 size_t frames;
594 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800595 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700596 visitor.WalkStack(true);
597 return visitor.frames;
598}
599
Ian Rogers5cf98192014-05-29 21:31:50 -0700600bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
601 struct HasMoreFramesVisitor : public StackVisitor {
602 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
603 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
604 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
605 }
606
607 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
608 if (found_frame_) {
609 mirror::ArtMethod* method = GetMethod();
610 if (method != nullptr && !method->IsRuntimeMethod()) {
611 has_more_frames_ = true;
612 next_method_ = method;
613 next_dex_pc_ = GetDexPc();
614 return false; // End stack walk once next method is found.
615 }
616 } else if (GetFrameHeight() == frame_height_) {
617 found_frame_ = true;
618 }
619 return true;
620 }
621
622 size_t frame_height_;
623 bool found_frame_;
624 bool has_more_frames_;
625 mirror::ArtMethod* next_method_;
626 uint32_t next_dex_pc_;
627 };
628 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
629 visitor.WalkStack(true);
630 *next_method = visitor.next_method_;
631 *next_dex_pc = visitor.next_dex_pc_;
632 return visitor.has_more_frames_;
633}
634
Ian Rogers7a22fa62013-01-23 12:16:16 -0800635void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800636 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800637 explicit DescribeStackVisitor(Thread* thread_in)
638 : StackVisitor(thread_in, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800639
Ian Rogers5cf98192014-05-29 21:31:50 -0700640 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800641 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
642 return true;
643 }
644 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800645 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800646 visitor.WalkStack(true);
647}
648
Ian Rogers40e3bac2012-11-20 00:09:14 -0800649std::string StackVisitor::DescribeLocation() const {
650 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700651 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800652 if (m == NULL) {
653 return "upcall";
654 }
655 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800656 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800657 if (!IsShadowFrame()) {
658 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
659 }
660 return result;
661}
662
Ian Rogerse63db272014-07-15 15:36:11 -0700663static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
664 uint32_t depth) {
665 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
666 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800667}
668
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800670 if (kIsDebugBuild) {
671 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700672 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800673 if (cur_quick_frame_ != nullptr) {
674 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
675 // Frame sanity.
676 size_t frame_size = method->GetFrameSizeInBytes();
677 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700678 // A rough guess at an upper size we expect to see for a frame.
679 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700680 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700681 // 3+3 register spills
682 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700683 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
684 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
685 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800686 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700687 size_t return_pc_offset = method->GetReturnPcOffset().SizeValue();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800688 CHECK_LT(return_pc_offset, frame_size);
689 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700690 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700691}
692
693void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800694 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800695 CHECK_EQ(cur_depth_, 0U);
696 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800697 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700698
Ian Rogers7a22fa62013-01-23 12:16:16 -0800699 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700700 current_fragment = current_fragment->GetLink()) {
701 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
702 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700703 cur_quick_frame_pc_ = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700704
Ian Rogers0399dde2012-06-06 17:09:28 -0700705 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
706 // Can't be both a shadow and a quick fragment.
707 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700708 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800709 while (method != NULL) {
Dave Allison5cd33752014-04-15 15:57:58 -0700710 SanityCheckFrame();
711 bool should_continue = VisitFrame();
712 if (UNLIKELY(!should_continue)) {
713 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700714 }
Dave Allison5cd33752014-04-15 15:57:58 -0700715
Ian Rogers0399dde2012-06-06 17:09:28 -0700716 if (context_ != NULL) {
717 context_->FillCalleeSaves(*this);
718 }
719 size_t frame_size = method->GetFrameSizeInBytes();
720 // Compute PC for next stack frame from return PC.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700721 size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue();
Ian Rogers13735952014-10-08 12:43:28 -0700722 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700723 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800724 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700725 // While profiling, the return pc is restored from the side stack, except when walking
726 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700727 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200728 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700729 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800730 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700731 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
732 // Skip runtime save all callee frames which are used to deliver exceptions.
733 } else if (instrumentation_frame.interpreter_entry_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700734 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700735 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100736 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700737 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800738 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100739 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800740 }
741 if (num_frames_ != 0) {
742 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
743 // recursion.
744 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
745 << "Expected: " << instrumentation_frame.frame_id_
746 << " Found: " << GetFrameId();
747 }
jeffhao725a9572012-11-13 18:20:12 -0800748 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700749 }
750 }
751 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700752 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700753 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700754 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700755 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800756 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700757 } else if (cur_shadow_frame_ != NULL) {
758 do {
759 SanityCheckFrame();
760 bool should_continue = VisitFrame();
761 if (UNLIKELY(!should_continue)) {
762 return;
763 }
764 cur_depth_++;
765 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700766 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700767 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700768 if (include_transitions) {
769 bool should_continue = VisitFrame();
770 if (!should_continue) {
771 return;
772 }
773 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800774 cur_depth_++;
775 }
776 if (num_frames_ != 0) {
777 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700778 }
779}
780
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800781void JavaFrameRootInfo::Describe(std::ostream& os) const {
782 const StackVisitor* visitor = stack_visitor_;
783 CHECK(visitor != nullptr);
784 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
785 visitor->DescribeLocation() << " vreg=" << vreg_;
786}
787
Elliott Hughes68e76522011-10-05 13:22:16 -0700788} // namespace art