blob: 6795516c83d889de76c115dd28b65e813681466c [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"
Mathieu Chartier50030ef2015-05-08 14:19:26 -070022#include "gc_map.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070023#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "mirror/object.h"
26#include "mirror/object-inl.h"
27#include "mirror/object_array-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010028#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070029#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070030#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070031#include "thread_list.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()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070040 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -080041 } 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();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070045 CHECK(code_item != nullptr) << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -080046 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()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070054 return nullptr;
Jeff Haoe701f482013-05-24 11:50:49 -070055 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070056 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070057 }
58}
59
TDYa127ce4cc0d2012-11-18 16:59:53 -080060size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070061 size_t count = 0;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070062 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070063 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070064 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070065 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080066 if (current_frame->GetMethod()->IsNative()) {
67 // The JNI ShadowFrame only contains references. (For indirect reference.)
68 count += current_frame->NumberOfVRegs();
69 }
Ian Rogers0399dde2012-06-06 17:09:28 -070070 }
71 }
72 return count;
73}
74
Ian Rogersef7d42f2014-01-06 12:55:46 -080075bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070076 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070077 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070078 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070079 current_frame = current_frame->GetLink()) {
80 if (current_frame->Contains(shadow_frame_entry)) {
81 return true;
82 }
83 }
84 }
85 return false;
86}
87
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010088StackVisitor::StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
89 : StackVisitor(thread, context, walk_kind, 0) {}
Ian Rogers7a22fa62013-01-23 12:16:16 -080090
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010091StackVisitor::StackVisitor(Thread* thread,
92 Context* context,
93 StackWalkKind walk_kind,
94 size_t num_frames)
95 : thread_(thread),
96 walk_kind_(walk_kind),
97 cur_shadow_frame_(nullptr),
98 cur_quick_frame_(nullptr),
99 cur_quick_frame_pc_(0),
100 num_frames_(num_frames),
101 cur_depth_(0),
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100102 current_inlining_depth_(0),
Ian Rogers5cf98192014-05-29 21:31:50 -0700103 context_(context) {
104 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
105}
106
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100107InlineInfo StackVisitor::GetCurrentInlineInfo() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
108 mirror::ArtMethod* outer_method = GetCurrentQuickFrame()->AsMirrorPtr();
109 uint32_t native_pc_offset = outer_method->NativeQuickPcOffset(cur_quick_frame_pc_);
110 CodeInfo code_info = outer_method->GetOptimizedCodeInfo();
111 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
112 return code_info.GetInlineInfoOf(stack_map);
113}
114
115mirror::ArtMethod* StackVisitor::GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
116 if (cur_shadow_frame_ != nullptr) {
117 return cur_shadow_frame_->GetMethod();
118 } else if (cur_quick_frame_ != nullptr) {
119 if (IsInInlinedFrame()) {
120 size_t depth_in_stack_map = current_inlining_depth_ - 1;
121 return GetCurrentQuickFrame()->AsMirrorPtr()->GetDexCacheResolvedMethod(
122 GetCurrentInlineInfo().GetMethodIndexAtDepth(depth_in_stack_map));
123 } else {
124 return cur_quick_frame_->AsMirrorPtr();
125 }
126 } else {
127 return nullptr;
128 }
129}
130
Dave Allisonb373e092014-02-20 16:06:36 -0800131uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700132 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700133 return cur_shadow_frame_->GetDexPC();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700134 } else if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100135 if (IsInInlinedFrame()) {
136 size_t depth_in_stack_map = current_inlining_depth_ - 1;
137 return GetCurrentInlineInfo().GetDexPcAtDepth(depth_in_stack_map);
138 } else {
139 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
140 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700141 } else {
142 return 0;
143 }
144}
145
Sebastien Hertza836bc92014-11-25 16:30:53 +0100146extern "C" mirror::Object* artQuickGetProxyThisObject(StackReference<mirror::ArtMethod>* sp)
147 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
148
Ian Rogers62d6c772013-02-27 08:32:07 -0800149mirror::Object* StackVisitor::GetThisObject() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700150 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800151 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100152 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800153 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100154 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700155 HandleScope* hs = reinterpret_cast<HandleScope*>(
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700156 reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffset().SizeValue());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700157 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800158 } else {
159 return cur_shadow_frame_->GetVRegReference(0);
160 }
Sebastien Hertza836bc92014-11-25 16:30:53 +0100161 } else if (m->IsProxyMethod()) {
162 if (cur_quick_frame_ != nullptr) {
163 return artQuickGetProxyThisObject(cur_quick_frame_);
164 } else {
165 return cur_shadow_frame_->GetVRegReference(0);
166 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800167 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700168 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100169 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800170 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800171 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800172 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 } else {
174 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000175 uint32_t value = 0;
176 bool success = GetVReg(m, reg, kReferenceVReg, &value);
177 // We currently always guarantee the `this` object is live throughout the method.
178 CHECK(success) << "Failed to read the this object in " << PrettyMethod(m);
179 return reinterpret_cast<mirror::Object*>(value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800180 }
181 }
182}
183
Ian Rogers0c7abda2012-09-19 13:33:42 -0700184size_t StackVisitor::GetNativePcOffset() const {
185 DCHECK(!IsShadowFrame());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700186 return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700187}
188
Mathieu Chartier50030ef2015-05-08 14:19:26 -0700189bool StackVisitor::IsReferenceVReg(mirror::ArtMethod* m, uint16_t vreg) {
190 // Process register map (which native and runtime methods don't have)
191 if (m->IsNative() || m->IsRuntimeMethod() || m->IsProxyMethod()) {
192 return false;
193 }
194 if (m->IsOptimized(sizeof(void*))) {
195 return true; // TODO: Implement.
196 }
197 const uint8_t* native_gc_map = m->GetNativeGcMap(sizeof(void*));
198 CHECK(native_gc_map != nullptr) << PrettyMethod(m);
199 const DexFile::CodeItem* code_item = m->GetCodeItem();
200 // Can't be null or how would we compile its instructions?
201 DCHECK(code_item != nullptr) << PrettyMethod(m);
202 NativePcOffsetToReferenceMap map(native_gc_map);
203 size_t num_regs = std::min(map.RegWidth() * 8, static_cast<size_t>(code_item->registers_size_));
204 const uint8_t* reg_bitmap = nullptr;
205 if (num_regs > 0) {
206 Runtime* runtime = Runtime::Current();
207 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(m, sizeof(void*));
208 uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point);
209 reg_bitmap = map.FindBitMap(native_pc_offset);
210 DCHECK(reg_bitmap != nullptr);
211 }
212 // Does this register hold a reference?
213 return vreg < num_regs && TestBitmap(vreg, reg_bitmap);
214}
215
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200216bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
217 uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200218 if (cur_quick_frame_ != nullptr) {
219 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800220 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100221 if (m->IsOptimized(sizeof(void*))) {
222 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700223 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100224 return GetVRegFromQuickCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700225 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700226 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100227 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200228 *val = cur_shadow_frame_->GetVReg(vreg);
229 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700230 }
231}
232
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100233bool StackVisitor::GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
234 uint32_t* val) const {
235 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
236 DCHECK(code_pointer != nullptr);
237 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
238 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
239 uint32_t vmap_offset;
240 // TODO: IsInContext stops before spotting floating point registers.
241 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
242 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
243 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
244 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
245 return GetRegisterIfAccessible(reg, kind, val);
246 } else {
247 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700248 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100249 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000250 *val = *GetVRegAddrFromQuickCode(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
251 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100252 return true;
253 }
254}
255
256bool StackVisitor::GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
257 uint32_t* val) const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100258 DCHECK_EQ(m, GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100259 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700260 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100261 // its instructions?
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000262 uint16_t number_of_dex_registers = code_item->registers_size_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100263 DCHECK_LT(vreg, code_item->registers_size_);
264
265 mirror::ArtMethod* outer_method = GetCurrentQuickFrame()->AsMirrorPtr();
266 const void* code_pointer = outer_method->GetQuickOatCodePointer(sizeof(void*));
267 DCHECK(code_pointer != nullptr);
268 CodeInfo code_info = outer_method->GetOptimizedCodeInfo();
269
270 uint32_t native_pc_offset = outer_method->NativeQuickPcOffset(cur_quick_frame_pc_);
271 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
272 size_t depth_in_stack_map = current_inlining_depth_ - 1;
273
274 DexRegisterMap dex_register_map = IsInInlinedFrame()
275 ? code_info.GetDexRegisterMapAtDepth(
276 depth_in_stack_map, code_info.GetInlineInfoOf(stack_map), number_of_dex_registers)
277 : code_info.GetDexRegisterMapOf(stack_map, number_of_dex_registers);
278
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000279 DexRegisterLocation::Kind location_kind =
Roland Levillaina552e1c2015-03-26 15:01:03 +0000280 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100281 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000282 case DexRegisterLocation::Kind::kInStack: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000283 const int32_t offset =
284 dex_register_map.GetStackOffsetInBytes(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100285 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
286 *val = *reinterpret_cast<const uint32_t*>(addr);
287 return true;
288 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000289 case DexRegisterLocation::Kind::kInRegister:
290 case DexRegisterLocation::Kind::kInFpuRegister: {
Roland Levillaina552e1c2015-03-26 15:01:03 +0000291 uint32_t reg = dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100292 return GetRegisterIfAccessible(reg, kind, val);
293 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000294 case DexRegisterLocation::Kind::kConstant:
Roland Levillaina552e1c2015-03-26 15:01:03 +0000295 *val = dex_register_map.GetConstant(vreg, number_of_dex_registers, code_info);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100296 return true;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000297 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100298 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000299 default:
300 LOG(FATAL)
301 << "Unexpected location kind"
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000302 << DexRegisterLocation::PrettyDescriptor(
Roland Levillaina552e1c2015-03-26 15:01:03 +0000303 dex_register_map.GetLocationInternalKind(vreg, number_of_dex_registers, code_info));
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000304 UNREACHABLE();
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100305 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100306}
307
308bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
309 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
310 if (!IsAccessibleRegister(reg, is_float)) {
311 return false;
312 }
313 uintptr_t ptr_val = GetRegister(reg, is_float);
314 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
315 if (target64) {
316 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
317 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
318 int64_t value_long = static_cast<int64_t>(ptr_val);
319 if (wide_lo) {
320 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
321 } else if (wide_hi) {
322 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
323 }
324 }
325 *val = ptr_val;
326 return true;
327}
328
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200329bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
330 VRegKind kind_hi, uint64_t* val) const {
331 if (kind_lo == kLongLoVReg) {
332 DCHECK_EQ(kind_hi, kLongHiVReg);
333 } else if (kind_lo == kDoubleLoVReg) {
334 DCHECK_EQ(kind_hi, kDoubleHiVReg);
335 } else {
336 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100337 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200338 }
339 if (cur_quick_frame_ != nullptr) {
340 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
341 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100342 if (m->IsOptimized(sizeof(void*))) {
343 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200344 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100345 return GetVRegPairFromQuickCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200346 }
347 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100348 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200349 *val = cur_shadow_frame_->GetVRegLong(vreg);
350 return true;
351 }
352}
353
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100354bool StackVisitor::GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
355 VRegKind kind_hi, uint64_t* val) const {
356 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
357 DCHECK(code_pointer != nullptr);
358 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
359 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
360 uint32_t vmap_offset_lo, vmap_offset_hi;
361 // TODO: IsInContext stops before spotting floating point registers.
362 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
363 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
364 bool is_float = (kind_lo == kDoubleLoVReg);
365 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
366 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
367 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
368 return GetRegisterPairIfAccessible(reg_lo, reg_hi, kind_lo, val);
369 } else {
370 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700371 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100372 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000373 uint32_t* addr = GetVRegAddrFromQuickCode(
374 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
375 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100376 *val = *reinterpret_cast<uint64_t*>(addr);
377 return true;
378 }
379}
380
381bool StackVisitor::GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
382 VRegKind kind_lo, VRegKind kind_hi,
383 uint64_t* val) const {
384 uint32_t low_32bits;
385 uint32_t high_32bits;
386 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
387 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
388 if (success) {
389 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
390 }
391 return success;
392}
393
394bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
395 VRegKind kind_lo, uint64_t* val) const {
396 const bool is_float = (kind_lo == kDoubleLoVReg);
397 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
398 return false;
399 }
400 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
401 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
402 bool target64 = Is64BitInstructionSet(kRuntimeISA);
403 if (target64) {
404 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
405 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
406 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
407 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
408 }
409 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
410 return true;
411}
412
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200413bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800414 VRegKind kind) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200415 if (cur_quick_frame_ != nullptr) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100416 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
417 DCHECK(m == GetMethod());
418 if (m->IsOptimized(sizeof(void*))) {
Nicolas Geoffray7cc56a12015-04-24 14:58:19 +0100419 return false;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100420 } else {
421 return SetVRegFromQuickCode(m, vreg, new_value, kind);
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100422 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800423 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100424 cur_shadow_frame_->SetVReg(vreg, new_value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200425 return true;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700426 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100427}
428
429bool StackVisitor::SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
430 VRegKind kind) {
431 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
432 DCHECK(m == GetMethod());
433 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
434 DCHECK(code_pointer != nullptr);
435 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
436 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
437 uint32_t vmap_offset;
438 // TODO: IsInContext stops before spotting floating point registers.
439 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
440 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
441 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
442 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
443 return SetRegisterIfAccessible(reg, new_value, kind);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700444 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100445 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700446 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100447 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000448 uint32_t* addr = GetVRegAddrFromQuickCode(
449 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
450 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100451 *addr = new_value;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200452 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700453 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700454}
455
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100456bool StackVisitor::SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind) {
457 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
458 if (!IsAccessibleRegister(reg, is_float)) {
459 return false;
460 }
461 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
462
463 // Create a new value that can hold both low 32 and high 32 bits, in
464 // case we are running 64 bits.
465 uintptr_t full_new_value = new_value;
466 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
467 if (target64) {
468 bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
469 bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
470 if (wide_lo || wide_hi) {
471 uintptr_t old_reg_val = GetRegister(reg, is_float);
472 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
473 uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val);
474 uint64_t mask = 0xffffffff;
475 if (wide_lo) {
476 mask = mask << 32;
477 } else {
478 new_vreg_portion = new_vreg_portion << 32;
479 }
480 full_new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
481 }
482 }
483 SetRegister(reg, full_new_value, is_float);
484 return true;
485}
486
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200487bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
488 VRegKind kind_lo, VRegKind kind_hi) {
489 if (kind_lo == kLongLoVReg) {
490 DCHECK_EQ(kind_hi, kLongHiVReg);
491 } else if (kind_lo == kDoubleLoVReg) {
492 DCHECK_EQ(kind_hi, kDoubleHiVReg);
493 } else {
494 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
495 }
496 if (cur_quick_frame_ != nullptr) {
497 DCHECK(context_ != nullptr); // You can't reliably write registers without a context.
498 DCHECK(m == GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100499 if (m->IsOptimized(sizeof(void*))) {
Nicolas Geoffray7cc56a12015-04-24 14:58:19 +0100500 return false;
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200501 } else {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100502 return SetVRegPairFromQuickCode(m, vreg, new_value, kind_lo, kind_hi);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200503 }
504 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100505 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200506 cur_shadow_frame_->SetVRegLong(vreg, new_value);
507 return true;
508 }
509}
510
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700511bool StackVisitor::SetVRegPairFromQuickCode(
512 mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, VRegKind kind_lo, VRegKind kind_hi) {
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100513 const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*));
514 DCHECK(code_pointer != nullptr);
515 const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*)));
516 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer);
517 uint32_t vmap_offset_lo, vmap_offset_hi;
518 // TODO: IsInContext stops before spotting floating point registers.
519 if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
520 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
521 bool is_float = (kind_lo == kDoubleLoVReg);
522 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
523 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
524 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
525 return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float);
526 } else {
527 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700528 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100529 // its instructions?
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000530 uint32_t* addr = GetVRegAddrFromQuickCode(
531 cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
532 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100533 *reinterpret_cast<uint64_t*>(addr) = new_value;
534 return true;
535 }
536}
537
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100538bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
539 uint64_t new_value, bool is_float) {
540 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
541 return false;
542 }
543 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
544 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32);
545 bool target64 = Is64BitInstructionSet(kRuntimeISA);
546 // Deal with 32 or 64-bit wide registers in a way that builds on all targets.
547 if (target64) {
548 DCHECK_EQ(reg_lo, reg_hi);
549 SetRegister(reg_lo, new_value, is_float);
550 } else {
551 SetRegister(reg_lo, new_value_lo, is_float);
552 SetRegister(reg_hi, new_value_hi, is_float);
553 }
554 return true;
555}
556
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100557bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
558 DCHECK(context_ != nullptr);
559 return context_->IsAccessibleGPR(reg);
560}
561
Mathieu Chartier815873e2014-02-13 18:02:13 -0800562uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100563 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
564 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800565 return context_->GetGPRAddress(reg);
566}
567
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100568uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
569 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
570 DCHECK(context_ != nullptr);
571 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700572}
573
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100574void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
575 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
576 DCHECK(context_ != nullptr);
577 context_->SetGPR(reg, value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200578}
579
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100580bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
581 DCHECK(context_ != nullptr);
582 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200583}
584
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100585uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
586 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
587 DCHECK(context_ != nullptr);
588 return context_->GetFPR(reg);
589}
590
591void StackVisitor::SetFPR(uint32_t reg, uintptr_t value) {
592 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
593 DCHECK(context_ != nullptr);
594 context_->SetFPR(reg, value);
Mathieu Chartier67022432012-11-29 18:04:50 -0800595}
596
Ian Rogers0399dde2012-06-06 17:09:28 -0700597uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700598 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700599 DCHECK(sp != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700600 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700601 return *reinterpret_cast<uintptr_t*>(pc_addr);
602}
603
604void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700605 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700606 CHECK(sp != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700607 uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue();
Ian Rogers0399dde2012-06-06 17:09:28 -0700608 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
609}
610
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100611size_t StackVisitor::ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700612 struct NumFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100613 NumFramesVisitor(Thread* thread_in, StackWalkKind walk_kind_in)
614 : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700615
Ian Rogers5cf98192014-05-29 21:31:50 -0700616 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700617 frames++;
618 return true;
619 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700620
Ian Rogers0399dde2012-06-06 17:09:28 -0700621 size_t frames;
622 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100623 NumFramesVisitor visitor(thread, walk_kind);
Ian Rogers0399dde2012-06-06 17:09:28 -0700624 visitor.WalkStack(true);
625 return visitor.frames;
626}
627
Ian Rogers5cf98192014-05-29 21:31:50 -0700628bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) {
629 struct HasMoreFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100630 HasMoreFramesVisitor(Thread* thread,
631 StackWalkKind walk_kind,
632 size_t num_frames,
633 size_t frame_height)
634 : StackVisitor(thread, nullptr, walk_kind, num_frames),
635 frame_height_(frame_height),
636 found_frame_(false),
637 has_more_frames_(false),
638 next_method_(nullptr),
639 next_dex_pc_(0) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700640 }
641
642 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
643 if (found_frame_) {
644 mirror::ArtMethod* method = GetMethod();
645 if (method != nullptr && !method->IsRuntimeMethod()) {
646 has_more_frames_ = true;
647 next_method_ = method;
648 next_dex_pc_ = GetDexPc();
649 return false; // End stack walk once next method is found.
650 }
651 } else if (GetFrameHeight() == frame_height_) {
652 found_frame_ = true;
653 }
654 return true;
655 }
656
657 size_t frame_height_;
658 bool found_frame_;
659 bool has_more_frames_;
660 mirror::ArtMethod* next_method_;
661 uint32_t next_dex_pc_;
662 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100663 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
Ian Rogers5cf98192014-05-29 21:31:50 -0700664 visitor.WalkStack(true);
665 *next_method = visitor.next_method_;
666 *next_dex_pc = visitor.next_dex_pc_;
667 return visitor.has_more_frames_;
668}
669
Ian Rogers7a22fa62013-01-23 12:16:16 -0800670void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800671 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800672 explicit DescribeStackVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100673 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800674
Ian Rogers5cf98192014-05-29 21:31:50 -0700675 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800676 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
677 return true;
678 }
679 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800680 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800681 visitor.WalkStack(true);
682}
683
Ian Rogers40e3bac2012-11-20 00:09:14 -0800684std::string StackVisitor::DescribeLocation() const {
685 std::string result("Visiting method '");
Brian Carlstromea46f952013-07-30 01:26:50 -0700686 mirror::ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700687 if (m == nullptr) {
Ian Rogers306057f2012-11-26 12:45:53 -0800688 return "upcall";
689 }
690 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800691 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800692 if (!IsShadowFrame()) {
693 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
694 }
695 return result;
696}
697
Ian Rogerse63db272014-07-15 15:36:11 -0700698static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
699 uint32_t depth) {
700 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
701 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800702}
703
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700704void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800705 if (kIsDebugBuild) {
706 mirror::ArtMethod* method = GetMethod();
Mathieu Chartier119c6bd2014-05-09 14:11:47 -0700707 CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800708 if (cur_quick_frame_ != nullptr) {
709 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
710 // Frame sanity.
711 size_t frame_size = method->GetFrameSizeInBytes();
712 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700713 // A rough guess at an upper size we expect to see for a frame.
714 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700715 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700716 // 3+3 register spills
717 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700718 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
719 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
720 const size_t kMaxExpectedFrameSize = 2 * KB;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800721 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700722 size_t return_pc_offset = method->GetReturnPcOffset().SizeValue();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800723 CHECK_LT(return_pc_offset, frame_size);
724 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700725 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700726}
727
728void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800729 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800730 CHECK_EQ(cur_depth_, 0U);
731 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800732 uint32_t instrumentation_stack_depth = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700733
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700734 for (const ManagedStack* current_fragment = thread_->GetManagedStack();
735 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700736 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
737 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700738 cur_quick_frame_pc_ = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700739
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700740 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
Ian Rogers0399dde2012-06-06 17:09:28 -0700741 // Can't be both a shadow and a quick fragment.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700742 DCHECK(current_fragment->GetTopShadowFrame() == nullptr);
Andreas Gampecf4035a2014-05-28 22:43:01 -0700743 mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700744 while (method != nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700745 SanityCheckFrame();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100746
747 if ((walk_kind_ == StackWalkKind::kIncludeInlinedFrames)
748 && method->IsOptimized(sizeof(void*))) {
749 CodeInfo code_info = method->GetOptimizedCodeInfo();
750 uint32_t native_pc_offset = method->NativeQuickPcOffset(cur_quick_frame_pc_);
751 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
752 if (stack_map.HasInlineInfo(code_info)) {
753 InlineInfo inline_info = code_info.GetInlineInfoOf(stack_map);
754 DCHECK_EQ(current_inlining_depth_, 0u);
755 for (current_inlining_depth_ = inline_info.GetDepth();
756 current_inlining_depth_ != 0;
757 --current_inlining_depth_) {
758 bool should_continue = VisitFrame();
759 if (UNLIKELY(!should_continue)) {
760 return;
761 }
762 }
763 }
764 }
765
Dave Allison5cd33752014-04-15 15:57:58 -0700766 bool should_continue = VisitFrame();
767 if (UNLIKELY(!should_continue)) {
768 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700769 }
Dave Allison5cd33752014-04-15 15:57:58 -0700770
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700771 if (context_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700772 context_->FillCalleeSaves(*this);
773 }
774 size_t frame_size = method->GetFrameSizeInBytes();
775 // Compute PC for next stack frame from return PC.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700776 size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue();
Ian Rogers13735952014-10-08 12:43:28 -0700777 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700778 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800779 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700780 // While profiling, the return pc is restored from the side stack, except when walking
781 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700782 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200783 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700784 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800785 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700786 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
787 // Skip runtime save all callee frames which are used to deliver exceptions.
788 } else if (instrumentation_frame.interpreter_entry_) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700789 mirror::ArtMethod* callee =
790 Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700791 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100792 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700793 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800794 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100795 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800796 }
797 if (num_frames_ != 0) {
798 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
799 // recursion.
800 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
801 << "Expected: " << instrumentation_frame.frame_id_
802 << " Found: " << GetFrameId();
803 }
jeffhao725a9572012-11-13 18:20:12 -0800804 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700805 }
806 }
807 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700808 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700809 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700810 cur_depth_++;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700811 method = cur_quick_frame_->AsMirrorPtr();
jeffhao6641ea12013-01-02 18:13:42 -0800812 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700813 } else if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700814 do {
815 SanityCheckFrame();
816 bool should_continue = VisitFrame();
817 if (UNLIKELY(!should_continue)) {
818 return;
819 }
820 cur_depth_++;
821 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700822 } while (cur_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700823 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700824 if (include_transitions) {
825 bool should_continue = VisitFrame();
826 if (!should_continue) {
827 return;
828 }
829 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800830 cur_depth_++;
831 }
832 if (num_frames_ != 0) {
833 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700834 }
835}
836
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800837void JavaFrameRootInfo::Describe(std::ostream& os) const {
838 const StackVisitor* visitor = stack_visitor_;
839 CHECK(visitor != nullptr);
840 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
841 visitor->DescribeLocation() << " vreg=" << vreg_;
842}
843
Elliott Hughes68e76522011-10-05 13:22:16 -0700844} // namespace art