blob: aa3e320127ed7a31ef161d73119e2436b4ffc5a5 [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()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070039 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -080040 } 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();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070044 CHECK(code_item != nullptr) << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -080045 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()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070053 return nullptr;
Jeff Haoe701f482013-05-24 11:50:49 -070054 } 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;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070061 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070062 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070063 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070064 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 {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070075 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070076 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070077 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070078 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)
Mathieu Chartier2cebb242015-04-21 16:50:40 -070088 : thread_(thread), cur_shadow_frame_(nullptr),
89 cur_quick_frame_(nullptr), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
Ian Rogers7a22fa62013-01-23 12:16:16 -080090 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)
Mathieu Chartier2cebb242015-04-21 16:50:40 -070095 : thread_(thread), cur_shadow_frame_(nullptr),
96 cur_quick_frame_(nullptr), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0),
Ian Rogers5cf98192014-05-29 21:31:50 -070097 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 {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700102 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700103 return cur_shadow_frame_->GetDexPC();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700104 } else if (cur_quick_frame_ != nullptr) {
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_;
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000140 uint32_t value = 0;
141 bool success = GetVReg(m, reg, kReferenceVReg, &value);
142 // We currently always guarantee the `this` object is live throughout the method.
143 CHECK(success) << "Failed to read the this object in " << PrettyMethod(m);
144 return reinterpret_cast<mirror::Object*>(value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800145 }
146 }
147}
148
Ian Rogers0c7abda2012-09-19 13:33:42 -0700149size_t StackVisitor::GetNativePcOffset() const {
150 DCHECK(!IsShadowFrame());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700151 return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700152}
153
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200154bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
155 uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200156 if (cur_quick_frame_ != nullptr) {
157 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800158 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100159 if (m->IsOptimized(sizeof(void*))) {
160 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700161 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100162 return GetVRegFromQuickCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700163 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700164 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100165 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200166 *val = cur_shadow_frame_->GetVReg(vreg);
167 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700168 }
169}
170
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100171bool StackVisitor::GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
172 uint32_t* val) const {
173 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
174 DCHECK(code_pointer != nullptr);
175 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
176 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
177 uint32_t vmap_offset;
178 // TODO: IsInContext stops before spotting floating point registers.
179 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
180 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
181 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
182 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
183 return GetRegisterIfAccessible(reg, kind, val);
184 } else {
185 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700186 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100187 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000188 *val = *GetVRegAddrFromQuickCode(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
189 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100190 return true;
191 }
192}
193
194bool StackVisitor::GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
195 uint32_t* val) const {
196 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
197 DCHECK(code_pointer != nullptr);
198 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
199 CodeInfo code_info = m->GetOptimizedCodeInfo();
200 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
201 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700202 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100203 // its instructions?
204 DCHECK_LT(vreg, code_item->registers_size_);
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000205 uint16_t number_of_dex_registers = code_item->registers_size_;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000206 DexRegisterMap dex_register_map =
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000207 code_info.GetDexRegisterMapOf(stack_map, number_of_dex_registers);
208 DexRegisterLocation::Kind location_kind =
Roland Levillaina552e1c2015-03-26 15:01:03 +0000209 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100210 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000211 case DexRegisterLocation::Kind::kInStack: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000212 const int32_t offset =
213 dex_register_map.GetStackOffsetInBytes(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100214 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
215 *val = *reinterpret_cast<const uint32_t*>(addr);
216 return true;
217 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000218 case DexRegisterLocation::Kind::kInRegister:
219 case DexRegisterLocation::Kind::kInFpuRegister: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000220 uint32_t reg = dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100221 return GetRegisterIfAccessible(reg, kind, val);
222 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000223 case DexRegisterLocation::Kind::kConstant:
Roland Levillaina552e1c2015-03-26 15:01:03 +0000224 *val = dex_register_map.GetConstant(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100225 return true;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000226 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100227 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000228 default:
229 LOG(FATAL)
230 << "Unexpected location kind"
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000231 << DexRegisterLocation::PrettyDescriptor(
Roland Levillaina552e1c2015-03-26 15:01:03 +0000232 dex_register_map.GetLocationInternalKind(vreg, number_of_dex_registers, code_info));
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000233 UNREACHABLE();
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100234 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100235}
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();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700300 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100301 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000302 uint32_t* addr = GetVRegAddrFromQuickCode(
303 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
304 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100305 *val = *reinterpret_cast<uint64_t*>(addr);
306 return true;
307 }
308}
309
310bool StackVisitor::GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
311 VRegKind kind_lo, VRegKind kind_hi,
312 uint64_t* val) const {
313 uint32_t low_32bits;
314 uint32_t high_32bits;
315 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
316 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
317 if (success) {
318 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
319 }
320 return success;
321}
322
323bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
324 VRegKind kind_lo, uint64_t* val) const {
325 const bool is_float = (kind_lo == kDoubleLoVReg);
326 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
327 return false;
328 }
329 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
330 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
331 bool target64 = Is64BitInstructionSet(kRuntimeISA);
332 if (target64) {
333 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
334 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
335 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
336 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
337 }
338 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
339 return true;
340}
341
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200342bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800343 VRegKind kind) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200344 if (cur_quick_frame_ != nullptr) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100345 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
346 DCHECK(m == GetMethod());
347 if (m->IsOptimized(sizeof(void*))) {
348 return SetVRegFromOptimizedCode(m, vreg, new_value, kind);
349 } else {
350 return SetVRegFromQuickCode(m, vreg, new_value, kind);
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100351 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800352 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100353 cur_shadow_frame_->SetVReg(vreg, new_value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200354 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700355 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100356}
357
358bool StackVisitor::SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
359 VRegKind kind) {
360 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
361 DCHECK(m == GetMethod());
362 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
363 DCHECK(code_pointer != nullptr);
364 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
365 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
366 uint32_t vmap_offset;
367 // TODO: IsInContext stops before spotting floating point registers.
368 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
369 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
370 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
371 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
372 return SetRegisterIfAccessible(reg, new_value, kind);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700373 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100374 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700375 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100376 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000377 uint32_t* addr = GetVRegAddrFromQuickCode(
378 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
379 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100380 *addr = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200381 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700382 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700383}
384
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100385bool StackVisitor::SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
386 VRegKind kind) {
387 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
388 DCHECK(code_pointer != nullptr);
389 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_);
390 CodeInfo code_info = m->GetOptimizedCodeInfo();
391 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
392 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700393 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100394 // its instructions?
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000395 uint16_t number_of_dex_registers = code_item->registers_size_;
396 DCHECK_LT(vreg, number_of_dex_registers);
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000397 DexRegisterMap dex_register_map =
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000398 code_info.GetDexRegisterMapOf(stack_map, number_of_dex_registers);
399 DexRegisterLocation::Kind location_kind =
Roland Levillaina552e1c2015-03-26 15:01:03 +0000400 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100401 uint32_t dex_pc = m->ToDexPc(cur_quick_frame_pc_, false);
402 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000403 case DexRegisterLocation::Kind::kInStack: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000404 const int32_t offset =
405 dex_register_map.GetStackOffsetInBytes(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100406 uint8_t* addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + offset;
407 *reinterpret_cast<uint32_t*>(addr) = new_value;
408 return true;
409 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000410 case DexRegisterLocation::Kind::kInRegister:
411 case DexRegisterLocation::Kind::kInFpuRegister: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000412 uint32_t reg = dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100413 return SetRegisterIfAccessible(reg, new_value, kind);
414 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000415 case DexRegisterLocation::Kind::kConstant:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100416 LOG(ERROR) << StringPrintf("Cannot change value of DEX register v%u used as a constant at "
417 "DEX pc 0x%x (native pc 0x%x) of method %s",
418 vreg, dex_pc, native_pc_offset,
419 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
420 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000421 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100422 LOG(ERROR) << StringPrintf("No location for DEX register v%u at DEX pc 0x%x "
423 "(native pc 0x%x) of method %s",
424 vreg, dex_pc, native_pc_offset,
425 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
426 return false;
427 default:
428 LOG(FATAL) << StringPrintf("Unknown location for DEX register v%u at DEX pc 0x%x "
429 "(native pc 0x%x) of method %s",
430 vreg, dex_pc, native_pc_offset,
431 PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str());
432 UNREACHABLE();
433 }
434}
435
436bool StackVisitor::SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind) {
437 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
438 if (!IsAccessibleRegister(reg, is_float)) {
439 return false;
440 }
441 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
442
443 // Create a new value that can hold both low 32 and high 32 bits, in
444 // case we are running 64 bits.
445 uintptr_t full_new_value = new_value;
446 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
447 if (target64) {
448 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
449 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
450 if (wide_lo || wide_hi) {
451 uintptr_t old_reg_val = GetRegister(reg, is_float);
452 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
453 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
454 uint64_t mask = 0xffffffff;
455 if (wide_lo) {
456 mask = mask << 32;
457 } else {
458 new_vreg_portion = new_vreg_portion << 32;
459 }
460 full_new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
461 }
462 }
463 SetRegister(reg, full_new_value, is_float);
464 return true;
465}
466
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200467bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
468 VRegKind kind_lo, VRegKind kind_hi) {
469 if (kind_lo == kLongLoVReg) {
470 DCHECK_EQ(kind_hi, kLongHiVReg);
471 } else if (kind_lo == kDoubleLoVReg) {
472 DCHECK_EQ(kind_hi, kDoubleHiVReg);
473 } else {
474 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
475 }
476 if (cur_quick_frame_ != nullptr) {
477 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
478 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100479 if (m->IsOptimized(sizeof(void*))) {
480 return SetVRegPairFromOptimizedCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200481 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100482 return SetVRegPairFromQuickCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200483 }
484 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100485 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200486 cur_shadow_frame_->SetVRegLong(vreg, new_value);
487 return true;
488 }
489}
490
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700491bool StackVisitor::SetVRegPairFromQuickCode(
492 mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, VRegKind kind_lo, VRegKind kind_hi) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100493 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
494 DCHECK(code_pointer != nullptr);
495 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
496 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
497 uint32_t vmap_offset_lo, vmap_offset_hi;
498 // TODO: IsInContext stops before spotting floating point registers.
499 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
500 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
501 bool is_float = (kind_lo == kDoubleLoVReg);
502 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
503 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
504 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
505 return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float);
506 } else {
507 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700508 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100509 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000510 uint32_t* addr = GetVRegAddrFromQuickCode(
511 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
512 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100513 *reinterpret_cast<uint64_t*>(addr) = new_value;
514 return true;
515 }
516}
517
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700518bool StackVisitor::SetVRegPairFromOptimizedCode(
519 mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, VRegKind kind_lo, VRegKind kind_hi) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100520 uint32_t low_32bits = Low32Bits(new_value);
521 uint32_t high_32bits = High32Bits(new_value);
522 bool success = SetVRegFromOptimizedCode(m, vreg, low_32bits, kind_lo);
523 success &= SetVRegFromOptimizedCode(m, vreg + 1, high_32bits, kind_hi);
524 return success;
525}
526
527bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
528 uint64_t new_value, bool is_float) {
529 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
530 return false;
531 }
532 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
533 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32);
534 bool target64 = Is64BitInstructionSet(kRuntimeISA);
535 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
536 if (target64) {
537 DCHECK_EQ(reg_lo, reg_hi);
538 SetRegister(reg_lo, new_value, is_float);
539 } else {
540 SetRegister(reg_lo, new_value_lo, is_float);
541 SetRegister(reg_hi, new_value_hi, is_float);
542 }
543 return true;
544}
545
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100546bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
547 DCHECK(context_ != nullptr);
548 return context_->IsAccessibleGPR(reg);
549}
550
Mathieu Chartier815873e2014-02-13 18:02:13 -0800551uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100552 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
553 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800554 return context_->GetGPRAddress(reg);
555}
556
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100557uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
558 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
559 DCHECK(context_ != nullptr);
560 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700561}
562
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100563void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
564 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
565 DCHECK(context_ != nullptr);
566 context_->SetGPR(reg, value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200567}
568
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100569bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
570 DCHECK(context_ != nullptr);
571 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200572}
573
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100574uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
575 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
576 DCHECK(context_ != nullptr);
577 return context_->GetFPR(reg);
578}
579
580void StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
581 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
582 DCHECK(context_ != nullptr);
583 context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800584}
585
Ian Rogers0399dde2012-06-06 17:09:28 -0700586uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700587 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700588 DCHECK(sp != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700589 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700590 return *reinterpret_cast<uintptr_t*>(pc_addr);
591}
592
593void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700594 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700595 CHECK(sp != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700596 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700597 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
598}
599
Ian Rogers7a22fa62013-01-23 12:16:16 -0800600size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700601 struct NumFramesVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800602 explicit NumFramesVisitor(Thread* thread_in)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700603 : StackVisitor(thread_in, nullptr), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700604
Ian Rogers5cf98192014-05-29 21:31:50 -0700605 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700606 frames++;
607 return true;
608 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700609
Ian Rogers0399dde2012-06-06 17:09:28 -0700610 size_t frames;
611 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800612 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700613 visitor.WalkStack(true);
614 return visitor.frames;
615}
616
Ian Rogers5cf98192014-05-29 21:31:50 -0700617bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
618 struct HasMoreFramesVisitor : public StackVisitor {
619 explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height)
620 : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height),
621 found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) {
622 }
623
624 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
625 if (found_frame_) {
626 mirror::ArtMethod* method = GetMethod();
627 if (method != nullptr && !method->IsRuntimeMethod()) {
628 has_more_frames_ = true;
629 next_method_ = method;
630 next_dex_pc_ = GetDexPc();
631 return false; // End stack walk once next method is found.
632 }
633 } else if (GetFrameHeight() == frame_height_) {
634 found_frame_ = true;
635 }
636 return true;
637 }
638
639 size_t frame_height_;
640 bool found_frame_;
641 bool has_more_frames_;
642 mirror::ArtMethod* next_method_;
643 uint32_t next_dex_pc_;
644 };
645 HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight());
646 visitor.WalkStack(true);
647 *next_method = visitor.next_method_;
648 *next_dex_pc = visitor.next_dex_pc_;
649 return visitor.has_more_frames_;
650}
651
Ian Rogers7a22fa62013-01-23 12:16:16 -0800652void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800653 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800654 explicit DescribeStackVisitor(Thread* thread_in)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700655 : StackVisitor(thread_in, nullptr) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800656
Ian Rogers5cf98192014-05-29 21:31:50 -0700657 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800658 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
659 return true;
660 }
661 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800662 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800663 visitor.WalkStack(true);
664}
665
Ian Rogers40e3bac2012-11-20 00:09:14 -0800666std::string StackVisitor::DescribeLocation() const {
667 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700668 mirror::ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700669 if (m == nullptr) {
Ian Rogers306057f2012-11-26 12:45:53 -0800670 return "upcall";
671 }
672 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800673 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800674 if (!IsShadowFrame()) {
675 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
676 }
677 return result;
678}
679
Ian Rogerse63db272014-07-15 15:36:11 -0700680static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
681 uint32_t depth) {
682 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
683 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800684}
685
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700686void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800687 if (kIsDebugBuild) {
688 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700689 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800690 if (cur_quick_frame_ != nullptr) {
691 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
692 // Frame sanity.
693 size_t frame_size = method->GetFrameSizeInBytes();
694 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700695 // A rough guess at an upper size we expect to see for a frame.
696 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700697 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700698 // 3+3 register spills
699 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700700 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
701 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
702 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800703 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700704 size_t return_pc_offset = method->GetReturnPcOffset().SizeValue();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800705 CHECK_LT(return_pc_offset, frame_size);
706 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700707 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700708}
709
710void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800711 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800712 CHECK_EQ(cur_depth_, 0U);
713 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800714 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700715
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700716 for (const ManagedStack* current_fragment = thread_->GetManagedStack();
717 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700718 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
719 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700720 cur_quick_frame_pc_ = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700721
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700722 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
Ian Rogers0399dde2012-06-06 17:09:28 -0700723 // Can't be both a shadow and a quick fragment.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700724 DCHECK(current_fragment->GetTopShadowFrame() == nullptr);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700725 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700726 while (method != nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700727 SanityCheckFrame();
728 bool should_continue = VisitFrame();
729 if (UNLIKELY(!should_continue)) {
730 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700731 }
Dave Allison5cd33752014-04-15 15:57:58 -0700732
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700733 if (context_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700734 context_->FillCalleeSaves(*this);
735 }
736 size_t frame_size = method->GetFrameSizeInBytes();
737 // Compute PC for next stack frame from return PC.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700738 size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue();
Ian Rogers13735952014-10-08 12:43:28 -0700739 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700740 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800741 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700742 // While profiling, the return pc is restored from the side stack, except when walking
743 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700744 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200745 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700746 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800747 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700748 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
749 // Skip runtime save all callee frames which are used to deliver exceptions.
750 } else if (instrumentation_frame.interpreter_entry_) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700751 mirror::ArtMethod* callee =
752 Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700753 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100754 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700755 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800756 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100757 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800758 }
759 if (num_frames_ != 0) {
760 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
761 // recursion.
762 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
763 << "Expected: " << instrumentation_frame.frame_id_
764 << " Found: " << GetFrameId();
765 }
jeffhao725a9572012-11-13 18:20:12 -0800766 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700767 }
768 }
769 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700770 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700771 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700772 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700773 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800774 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700775 } else if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700776 do {
777 SanityCheckFrame();
778 bool should_continue = VisitFrame();
779 if (UNLIKELY(!should_continue)) {
780 return;
781 }
782 cur_depth_++;
783 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700784 } while (cur_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700785 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700786 if (include_transitions) {
787 bool should_continue = VisitFrame();
788 if (!should_continue) {
789 return;
790 }
791 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800792 cur_depth_++;
793 }
794 if (num_frames_ != 0) {
795 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700796 }
797}
798
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800799void JavaFrameRootInfo::Describe(std::ostream& os) const {
800 const StackVisitor* visitor = stack_visitor_;
801 CHECK(visitor != nullptr);
802 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
803 visitor->DescribeLocation() << " vreg=" << vreg_;
804}
805
Elliott Hughes68e76522011-10-05 13:22:16 -0700806} // namespace art