blob: ababf785c8dba0166a46a10e421108daceb53e78 [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"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Dave Allisonf9439142014-03-27 15:10:22 -070022#include "base/hex_dump.h"
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010023#include "entrypoints/entrypoint_utils-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070024#include "entrypoints/runtime_asm_entrypoints.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "gc/space/image_space.h"
26#include "gc/space/space-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010027#include "jit/jit.h"
28#include "jit/jit_code_cache.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "linear_alloc.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "mirror/object-inl.h"
32#include "mirror/object_array-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010033#include "oat_quick_method_header.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010034#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070035#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070036#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070037#include "thread_list.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080038#include "verify_object-inl.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070039
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080040namespace art {
41
Mathieu Chartier8405bfd2016-02-05 12:00:49 -080042static constexpr bool kDebugStackWalk = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -070043
Ian Rogers62d6c772013-02-27 08:32:07 -080044mirror::Object* ShadowFrame::GetThisObject() const {
Mathieu Chartiere401d142015-04-22 13:56:20 -070045 ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080046 if (m->IsStatic()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070047 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -080048 } else if (m->IsNative()) {
49 return GetVRegReference(0);
50 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070051 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070052 CHECK(code_item != nullptr) << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -080053 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
54 return GetVRegReference(reg);
55 }
56}
57
Jeff Haoe701f482013-05-24 11:50:49 -070058mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Mathieu Chartiere401d142015-04-22 13:56:20 -070059 ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070060 if (m->IsStatic()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070061 return nullptr;
Jeff Haoe701f482013-05-24 11:50:49 -070062 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070063 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070064 }
65}
66
TDYa127ce4cc0d2012-11-18 16:59:53 -080067size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070068 size_t count = 0;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070069 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070070 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070071 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070072 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080073 if (current_frame->GetMethod()->IsNative()) {
74 // The JNI ShadowFrame only contains references. (For indirect reference.)
75 count += current_frame->NumberOfVRegs();
76 }
Ian Rogers0399dde2012-06-06 17:09:28 -070077 }
78 }
79 return count;
80}
81
Ian Rogersef7d42f2014-01-06 12:55:46 -080082bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070083 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070084 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070085 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070086 current_frame = current_frame->GetLink()) {
87 if (current_frame->Contains(shadow_frame_entry)) {
88 return true;
89 }
90 }
91 }
92 return false;
93}
94
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010095StackVisitor::StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
96 : StackVisitor(thread, context, walk_kind, 0) {}
Ian Rogers7a22fa62013-01-23 12:16:16 -080097
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010098StackVisitor::StackVisitor(Thread* thread,
99 Context* context,
100 StackWalkKind walk_kind,
101 size_t num_frames)
102 : thread_(thread),
103 walk_kind_(walk_kind),
104 cur_shadow_frame_(nullptr),
105 cur_quick_frame_(nullptr),
106 cur_quick_frame_pc_(0),
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100107 cur_oat_quick_method_header_(nullptr),
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100108 num_frames_(num_frames),
109 cur_depth_(0),
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100110 current_inlining_depth_(0),
Ian Rogers5cf98192014-05-29 21:31:50 -0700111 context_(context) {
112 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
113}
114
Mathieu Chartiere401d142015-04-22 13:56:20 -0700115InlineInfo StackVisitor::GetCurrentInlineInfo() const {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100116 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
117 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_);
118 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000119 CodeInfoEncoding encoding = code_info.ExtractEncoding();
David Brazdilf677ebf2015-05-29 16:29:43 +0100120 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +0100121 DCHECK(stack_map.IsValid());
David Brazdilf677ebf2015-05-29 16:29:43 +0100122 return code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100123}
124
Mathieu Chartiere401d142015-04-22 13:56:20 -0700125ArtMethod* StackVisitor::GetMethod() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100126 if (cur_shadow_frame_ != nullptr) {
127 return cur_shadow_frame_->GetMethod();
128 } else if (cur_quick_frame_ != nullptr) {
129 if (IsInInlinedFrame()) {
130 size_t depth_in_stack_map = current_inlining_depth_ - 1;
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100131 InlineInfo inline_info = GetCurrentInlineInfo();
David Srbecky61b28a12016-02-25 21:55:03 +0000132 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
133 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
Mathieu Chartier45bf2502016-03-31 11:07:09 -0700134 DCHECK(walk_kind_ != StackWalkKind::kSkipInlinedFrames);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100135 return GetResolvedMethod(*GetCurrentQuickFrame(),
136 inline_info,
137 encoding.inline_info_encoding,
138 depth_in_stack_map);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100139 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700140 return *cur_quick_frame_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100141 }
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100142 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700143 return nullptr;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100144}
145
Dave Allisonb373e092014-02-20 16:06:36 -0800146uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700147 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700148 return cur_shadow_frame_->GetDexPC();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700149 } else if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100150 if (IsInInlinedFrame()) {
151 size_t depth_in_stack_map = current_inlining_depth_ - 1;
David Srbecky61b28a12016-02-25 21:55:03 +0000152 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
153 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
154 return GetCurrentInlineInfo().GetDexPcAtDepth(encoding.inline_info_encoding,
155 depth_in_stack_map);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100156 } else if (cur_oat_quick_method_header_ == nullptr) {
157 return DexFile::kDexNoIndex;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100158 } else {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100159 return cur_oat_quick_method_header_->ToDexPc(
160 GetMethod(), cur_quick_frame_pc_, abort_on_failure);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100161 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700162 } else {
163 return 0;
164 }
165}
166
Mathieu Chartiere401d142015-04-22 13:56:20 -0700167extern "C" mirror::Object* artQuickGetProxyThisObject(ArtMethod** sp)
Mathieu Chartier90443472015-07-16 20:32:27 -0700168 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertza836bc92014-11-25 16:30:53 +0100169
Ian Rogers62d6c772013-02-27 08:32:07 -0800170mirror::Object* StackVisitor::GetThisObject() const {
Andreas Gampe542451c2016-07-26 09:02:02 -0700171 DCHECK_EQ(Runtime::Current()->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700172 ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100174 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800175 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100176 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700177 HandleScope* hs = reinterpret_cast<HandleScope*>(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100178 reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700179 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800180 } else {
181 return cur_shadow_frame_->GetVRegReference(0);
182 }
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000183 } else if (m->IsProxyMethod()) {
Sebastien Hertza836bc92014-11-25 16:30:53 +0100184 if (cur_quick_frame_ != nullptr) {
185 return artQuickGetProxyThisObject(cur_quick_frame_);
186 } else {
187 return cur_shadow_frame_->GetVRegReference(0);
188 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800189 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700190 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100191 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800192 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800193 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800194 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800195 } else {
196 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000197 uint32_t value = 0;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700198 bool success = GetVReg(m, reg, kReferenceVReg, &value);
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000199 // We currently always guarantee the `this` object is live throughout the method.
200 CHECK(success) << "Failed to read the this object in " << PrettyMethod(m);
201 return reinterpret_cast<mirror::Object*>(value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800202 }
203 }
204}
205
Ian Rogers0c7abda2012-09-19 13:33:42 -0700206size_t StackVisitor::GetNativePcOffset() const {
207 DCHECK(!IsShadowFrame());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100208 return GetCurrentOatQuickMethodHeader()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700209}
210
Mingyao Yang99170c62015-07-06 11:10:37 -0700211bool StackVisitor::GetVRegFromDebuggerShadowFrame(uint16_t vreg,
212 VRegKind kind,
213 uint32_t* val) const {
214 size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId();
215 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id);
216 if (shadow_frame != nullptr) {
217 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id);
218 DCHECK(updated_vreg_flags != nullptr);
219 if (updated_vreg_flags[vreg]) {
220 // Value is set by the debugger.
221 if (kind == kReferenceVReg) {
222 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
223 shadow_frame->GetVRegReference(vreg)));
224 } else {
225 *val = shadow_frame->GetVReg(vreg);
226 }
227 return true;
228 }
229 }
230 // No value is set by the debugger.
231 return false;
232}
233
Mathieu Chartiere401d142015-04-22 13:56:20 -0700234bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200235 if (cur_quick_frame_ != nullptr) {
236 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800237 DCHECK(m == GetMethod());
Mingyao Yang99170c62015-07-06 11:10:37 -0700238 // Check if there is value set by the debugger.
239 if (GetVRegFromDebuggerShadowFrame(vreg, kind, val)) {
240 return true;
241 }
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100242 DCHECK(cur_oat_quick_method_header_->IsOptimized());
243 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700244 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100245 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz09687442015-11-17 10:35:39 +0100246 if (kind == kReferenceVReg) {
247 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
248 cur_shadow_frame_->GetVRegReference(vreg)));
249 } else {
250 *val = cur_shadow_frame_->GetVReg(vreg);
251 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200252 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700253 }
254}
255
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256bool StackVisitor::GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100257 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_);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100264 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
265 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000266 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100267
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100268 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100269 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +0100270 DCHECK(stack_map.IsValid());
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100271 size_t depth_in_stack_map = current_inlining_depth_ - 1;
272
273 DexRegisterMap dex_register_map = IsInInlinedFrame()
David Brazdilf677ebf2015-05-29 16:29:43 +0100274 ? code_info.GetDexRegisterMapAtDepth(depth_in_stack_map,
275 code_info.GetInlineInfoOf(stack_map, encoding),
276 encoding,
277 number_of_dex_registers)
278 : code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_dex_registers);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100279
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000280 if (!dex_register_map.IsValid()) {
281 return false;
282 }
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000283 DexRegisterLocation::Kind location_kind =
David Brazdilf677ebf2015-05-29 16:29:43 +0100284 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100285 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000286 case DexRegisterLocation::Kind::kInStack: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100287 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg,
288 number_of_dex_registers,
289 code_info,
290 encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100291 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
292 *val = *reinterpret_cast<const uint32_t*>(addr);
293 return true;
294 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000295 case DexRegisterLocation::Kind::kInRegister:
David Brazdild9cb68e2015-08-25 13:52:43 +0100296 case DexRegisterLocation::Kind::kInRegisterHigh:
297 case DexRegisterLocation::Kind::kInFpuRegister:
298 case DexRegisterLocation::Kind::kInFpuRegisterHigh: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100299 uint32_t reg =
300 dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100301 return GetRegisterIfAccessible(reg, kind, val);
302 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000303 case DexRegisterLocation::Kind::kConstant:
David Brazdilf677ebf2015-05-29 16:29:43 +0100304 *val = dex_register_map.GetConstant(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100305 return true;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000306 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100307 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000308 default:
309 LOG(FATAL)
David Srbecky7dc11782016-02-25 13:23:56 +0000310 << "Unexpected location kind "
311 << dex_register_map.GetLocationInternalKind(vreg,
312 number_of_dex_registers,
313 code_info,
314 encoding);
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000315 UNREACHABLE();
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100316 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100317}
318
319bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
320 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
David Brazdil77a48ae2015-09-15 12:34:04 +0000321
322 // X86 float registers are 64-bit and the logic below does not apply.
323 DCHECK(!is_float || kRuntimeISA != InstructionSet::kX86);
324
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100325 if (!IsAccessibleRegister(reg, is_float)) {
326 return false;
327 }
328 uintptr_t ptr_val = GetRegister(reg, is_float);
329 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
330 if (target64) {
331 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
332 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
333 int64_t value_long = static_cast<int64_t>(ptr_val);
334 if (wide_lo) {
335 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
336 } else if (wide_hi) {
337 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
338 }
339 }
340 *val = ptr_val;
341 return true;
342}
343
Mingyao Yang99170c62015-07-06 11:10:37 -0700344bool StackVisitor::GetVRegPairFromDebuggerShadowFrame(uint16_t vreg,
345 VRegKind kind_lo,
346 VRegKind kind_hi,
347 uint64_t* val) const {
348 uint32_t low_32bits;
349 uint32_t high_32bits;
350 bool success = GetVRegFromDebuggerShadowFrame(vreg, kind_lo, &low_32bits);
351 success &= GetVRegFromDebuggerShadowFrame(vreg + 1, kind_hi, &high_32bits);
352 if (success) {
353 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
354 }
355 return success;
356}
357
Mathieu Chartiere401d142015-04-22 13:56:20 -0700358bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200359 VRegKind kind_hi, uint64_t* val) const {
360 if (kind_lo == kLongLoVReg) {
361 DCHECK_EQ(kind_hi, kLongHiVReg);
362 } else if (kind_lo == kDoubleLoVReg) {
363 DCHECK_EQ(kind_hi, kDoubleHiVReg);
364 } else {
365 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100366 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200367 }
Mingyao Yang99170c62015-07-06 11:10:37 -0700368 // Check if there is value set by the debugger.
369 if (GetVRegPairFromDebuggerShadowFrame(vreg, kind_lo, kind_hi, val)) {
370 return true;
371 }
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200372 if (cur_quick_frame_ != nullptr) {
373 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
374 DCHECK(m == GetMethod());
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100375 DCHECK(cur_oat_quick_method_header_->IsOptimized());
376 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200377 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100378 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200379 *val = cur_shadow_frame_->GetVRegLong(vreg);
380 return true;
381 }
382}
383
Mathieu Chartiere401d142015-04-22 13:56:20 -0700384bool StackVisitor::GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100385 VRegKind kind_lo, VRegKind kind_hi,
386 uint64_t* val) const {
387 uint32_t low_32bits;
388 uint32_t high_32bits;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700389 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
390 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100391 if (success) {
392 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
393 }
394 return success;
395}
396
397bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
398 VRegKind kind_lo, uint64_t* val) const {
399 const bool is_float = (kind_lo == kDoubleLoVReg);
400 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
401 return false;
402 }
403 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
404 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
405 bool target64 = Is64BitInstructionSet(kRuntimeISA);
406 if (target64) {
407 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
408 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
409 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
410 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
411 }
412 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
413 return true;
414}
415
Mingyao Yang636b9252015-07-31 16:40:24 -0700416bool StackVisitor::SetVReg(ArtMethod* m,
417 uint16_t vreg,
418 uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800419 VRegKind kind) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700420 const DexFile::CodeItem* code_item = m->GetCodeItem();
421 if (code_item == nullptr) {
422 return false;
423 }
424 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
425 if (shadow_frame == nullptr) {
426 // This is a compiled frame: we must prepare and update a shadow frame that will
427 // be executed by the interpreter after deoptimization of the stack.
428 const size_t frame_id = GetFrameId();
429 const uint16_t num_regs = code_item->registers_size_;
430 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
431 CHECK(shadow_frame != nullptr);
432 // Remember the vreg has been set for debugging and must not be overwritten by the
433 // original value during deoptimization of the stack.
434 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
435 }
436 if (kind == kReferenceVReg) {
437 shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value));
438 } else {
439 shadow_frame->SetVReg(vreg, new_value);
440 }
441 return true;
442}
443
Mingyao Yang636b9252015-07-31 16:40:24 -0700444bool StackVisitor::SetVRegPair(ArtMethod* m,
445 uint16_t vreg,
446 uint64_t new_value,
447 VRegKind kind_lo,
448 VRegKind kind_hi) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700449 if (kind_lo == kLongLoVReg) {
450 DCHECK_EQ(kind_hi, kLongHiVReg);
451 } else if (kind_lo == kDoubleLoVReg) {
452 DCHECK_EQ(kind_hi, kDoubleHiVReg);
453 } else {
454 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
455 UNREACHABLE();
456 }
457 const DexFile::CodeItem* code_item = m->GetCodeItem();
458 if (code_item == nullptr) {
459 return false;
460 }
461 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
462 if (shadow_frame == nullptr) {
463 // This is a compiled frame: we must prepare for deoptimization (see SetVRegFromDebugger).
464 const size_t frame_id = GetFrameId();
465 const uint16_t num_regs = code_item->registers_size_;
466 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
467 CHECK(shadow_frame != nullptr);
468 // Remember the vreg pair has been set for debugging and must not be overwritten by the
469 // original value during deoptimization of the stack.
470 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
471 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true;
472 }
473 shadow_frame->SetVRegLong(vreg, new_value);
474 return true;
475}
476
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100477bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
478 DCHECK(context_ != nullptr);
479 return context_->IsAccessibleGPR(reg);
480}
481
Mathieu Chartier815873e2014-02-13 18:02:13 -0800482uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100483 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
484 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800485 return context_->GetGPRAddress(reg);
486}
487
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100488uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
489 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
490 DCHECK(context_ != nullptr);
491 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700492}
493
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100494bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
495 DCHECK(context_ != nullptr);
496 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200497}
498
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100499uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
500 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
501 DCHECK(context_ != nullptr);
502 return context_->GetFPR(reg);
503}
504
Ian Rogers0399dde2012-06-06 17:09:28 -0700505uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700506 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700507 DCHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100508 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700509 return *reinterpret_cast<uintptr_t*>(pc_addr);
510}
511
512void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700513 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700514 CHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100515 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700516 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
517}
518
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100519size_t StackVisitor::ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700520 struct NumFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100521 NumFramesVisitor(Thread* thread_in, StackWalkKind walk_kind_in)
522 : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700523
Ian Rogers5cf98192014-05-29 21:31:50 -0700524 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700525 frames++;
526 return true;
527 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700528
Ian Rogers0399dde2012-06-06 17:09:28 -0700529 size_t frames;
530 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100531 NumFramesVisitor visitor(thread, walk_kind);
Ian Rogers0399dde2012-06-06 17:09:28 -0700532 visitor.WalkStack(true);
533 return visitor.frames;
534}
535
Mathieu Chartiere401d142015-04-22 13:56:20 -0700536bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700537 struct HasMoreFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100538 HasMoreFramesVisitor(Thread* thread,
539 StackWalkKind walk_kind,
540 size_t num_frames,
541 size_t frame_height)
542 : StackVisitor(thread, nullptr, walk_kind, num_frames),
543 frame_height_(frame_height),
544 found_frame_(false),
545 has_more_frames_(false),
546 next_method_(nullptr),
547 next_dex_pc_(0) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700548 }
549
Mathieu Chartier90443472015-07-16 20:32:27 -0700550 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700551 if (found_frame_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700552 ArtMethod* method = GetMethod();
Ian Rogers5cf98192014-05-29 21:31:50 -0700553 if (method != nullptr && !method->IsRuntimeMethod()) {
554 has_more_frames_ = true;
555 next_method_ = method;
556 next_dex_pc_ = GetDexPc();
557 return false; // End stack walk once next method is found.
558 }
559 } else if (GetFrameHeight() == frame_height_) {
560 found_frame_ = true;
561 }
562 return true;
563 }
564
565 size_t frame_height_;
566 bool found_frame_;
567 bool has_more_frames_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700568 ArtMethod* next_method_;
Ian Rogers5cf98192014-05-29 21:31:50 -0700569 uint32_t next_dex_pc_;
570 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100571 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
Ian Rogers5cf98192014-05-29 21:31:50 -0700572 visitor.WalkStack(true);
573 *next_method = visitor.next_method_;
574 *next_dex_pc = visitor.next_dex_pc_;
575 return visitor.has_more_frames_;
576}
577
Ian Rogers7a22fa62013-01-23 12:16:16 -0800578void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800579 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800580 explicit DescribeStackVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100581 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800582
Mathieu Chartier90443472015-07-16 20:32:27 -0700583 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800584 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
585 return true;
586 }
587 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800588 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800589 visitor.WalkStack(true);
590}
591
Ian Rogers40e3bac2012-11-20 00:09:14 -0800592std::string StackVisitor::DescribeLocation() const {
593 std::string result("Visiting method '");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700594 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700595 if (m == nullptr) {
Ian Rogers306057f2012-11-26 12:45:53 -0800596 return "upcall";
597 }
598 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800599 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800600 if (!IsShadowFrame()) {
601 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
602 }
603 return result;
604}
605
Ian Rogerse63db272014-07-15 15:36:11 -0700606static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
607 uint32_t depth) {
608 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
609 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800610}
611
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100612static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc)
613 SHARED_REQUIRES(Locks::mutator_lock_) {
614 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) {
615 return;
616 }
617
618 if (pc == reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())) {
619 return;
620 }
621
622 const void* code = method->GetEntryPointFromQuickCompiledCode();
623 if (code == GetQuickInstrumentationEntryPoint()) {
624 return;
625 }
626
627 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
628 if (class_linker->IsQuickToInterpreterBridge(code) ||
629 class_linker->IsQuickResolutionStub(code)) {
630 return;
631 }
632
633 // If we are the JIT then we may have just compiled the method after the
634 // IsQuickToInterpreterBridge check.
Calin Juravleffc87072016-04-20 14:22:09 +0100635 Runtime* runtime = Runtime::Current();
636 if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100637 return;
638 }
639
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100640 uint32_t code_size = OatQuickMethodHeader::FromEntryPoint(code)->code_size_;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100641 uintptr_t code_start = reinterpret_cast<uintptr_t>(code);
642 CHECK(code_start <= pc && pc <= (code_start + code_size))
643 << PrettyMethod(method)
644 << " pc=" << std::hex << pc
Roland Levillain0d5a2812015-11-13 10:07:31 +0000645 << " code_start=" << code_start
646 << " code_size=" << code_size;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100647}
648
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700649void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800650 if (kIsDebugBuild) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700651 ArtMethod* method = GetMethod();
652 auto* declaring_class = method->GetDeclaringClass();
653 // Runtime methods have null declaring class.
654 if (!method->IsRuntimeMethod()) {
655 CHECK(declaring_class != nullptr);
656 CHECK_EQ(declaring_class->GetClass(), declaring_class->GetClass()->GetClass())
657 << declaring_class;
658 } else {
659 CHECK(declaring_class == nullptr);
660 }
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700661 Runtime* const runtime = Runtime::Current();
662 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc();
663 if (!linear_alloc->Contains(method)) {
664 // Check class linker linear allocs.
665 mirror::Class* klass = method->GetDeclaringClass();
666 LinearAlloc* const class_linear_alloc = (klass != nullptr)
Mathieu Chartier5b830502016-03-02 10:30:23 -0800667 ? runtime->GetClassLinker()->GetAllocatorForClassLoader(klass->GetClassLoader())
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700668 : linear_alloc;
669 if (!class_linear_alloc->Contains(method)) {
670 // Check image space.
671 bool in_image = false;
672 for (auto& space : runtime->GetHeap()->GetContinuousSpaces()) {
673 if (space->IsImageSpace()) {
674 auto* image_space = space->AsImageSpace();
675 const auto& header = image_space->GetImageHeader();
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700676 const ImageSection& methods = header.GetMethodsSection();
677 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection();
678 const size_t offset = reinterpret_cast<const uint8_t*>(method) - image_space->Begin();
679 if (methods.Contains(offset) || runtime_methods.Contains(offset)) {
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700680 in_image = true;
681 break;
682 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700683 }
684 }
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700685 CHECK(in_image) << PrettyMethod(method) << " not in linear alloc or image";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700686 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700687 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800688 if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100689 AssertPcIsWithinQuickCode(method, cur_quick_frame_pc_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800690 // Frame sanity.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100691 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800692 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700693 // A rough guess at an upper size we expect to see for a frame.
694 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700695 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700696 // 3+3 register spills
697 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700698 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
699 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
700 const size_t kMaxExpectedFrameSize = 2 * KB;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100701 CHECK_LE(frame_size, kMaxExpectedFrameSize) << PrettyMethod(method);
702 size_t return_pc_offset = GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800703 CHECK_LT(return_pc_offset, frame_size);
704 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700705 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700706}
707
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100708// Counts the number of references in the parameter list of the corresponding method.
709// Note: Thus does _not_ include "this" for non-static methods.
710static uint32_t GetNumberOfReferenceArgsWithoutReceiver(ArtMethod* method)
711 SHARED_REQUIRES(Locks::mutator_lock_) {
712 uint32_t shorty_len;
713 const char* shorty = method->GetShorty(&shorty_len);
714 uint32_t refs = 0;
715 for (uint32_t i = 1; i < shorty_len ; ++i) {
716 if (shorty[i] == 'L') {
717 refs++;
718 }
719 }
720 return refs;
721}
722
723QuickMethodFrameInfo StackVisitor::GetCurrentQuickFrameInfo() const {
724 if (cur_oat_quick_method_header_ != nullptr) {
725 return cur_oat_quick_method_header_->GetFrameInfo();
726 }
727
728 ArtMethod* method = GetMethod();
729 Runtime* runtime = Runtime::Current();
730
731 if (method->IsAbstract()) {
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100732 return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100733 }
734
735 // This goes before IsProxyMethod since runtime methods have a null declaring class.
736 if (method->IsRuntimeMethod()) {
737 return runtime->GetRuntimeMethodFrameInfo(method);
738 }
739
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100740 if (method->IsProxyMethod()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000741 // There is only one direct method of a proxy class: the constructor. A direct method is
742 // cloned from the original java.lang.reflect.Proxy and is executed as usual quick
743 // compiled method without any stubs. Therefore the method must have a OatQuickMethodHeader.
744 DCHECK(!method->IsDirect() && !method->IsConstructor())
745 << "Constructors of proxy classes must have a OatQuickMethodHeader";
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100746 return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100747 }
748
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000749 // The only remaining case is if the method is native and uses the generic JNI stub.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100750 DCHECK(method->IsNative());
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000751 ClassLinker* class_linker = runtime->GetClassLinker();
Andreas Gampe542451c2016-07-26 09:02:02 -0700752 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(method,
753 kRuntimePointerSize);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100754 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << PrettyMethod(method);
755 // Generic JNI frame.
756 uint32_t handle_refs = GetNumberOfReferenceArgsWithoutReceiver(method) + 1;
757 size_t scope_size = HandleScope::SizeOf(handle_refs);
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100758 QuickMethodFrameInfo callee_info =
759 runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100760
761 // Callee saves + handle scope + method ref + alignment
762 // Note: -sizeof(void*) since callee-save frame stores a whole method pointer.
763 size_t frame_size = RoundUp(
764 callee_info.FrameSizeInBytes() - sizeof(void*) + sizeof(ArtMethod*) + scope_size,
765 kStackAlignment);
766 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());
767}
768
Ian Rogers0399dde2012-06-06 17:09:28 -0700769void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800770 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800771 CHECK_EQ(cur_depth_, 0U);
772 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800773 uint32_t instrumentation_stack_depth = 0;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000774 size_t inlined_frames_count = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700775
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700776 for (const ManagedStack* current_fragment = thread_->GetManagedStack();
777 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700778 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
779 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700780 cur_quick_frame_pc_ = 0;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100781 cur_oat_quick_method_header_ = nullptr;
Dave Allisonf9439142014-03-27 15:10:22 -0700782
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700783 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
Ian Rogers0399dde2012-06-06 17:09:28 -0700784 // Can't be both a shadow and a quick fragment.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700785 DCHECK(current_fragment->GetTopShadowFrame() == nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700786 ArtMethod* method = *cur_quick_frame_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700787 while (method != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100788 cur_oat_quick_method_header_ = method->GetOatQuickMethodHeader(cur_quick_frame_pc_);
Dave Allison5cd33752014-04-15 15:57:58 -0700789 SanityCheckFrame();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100790
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100791 if ((walk_kind_ == StackWalkKind::kIncludeInlinedFrames)
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100792 && (cur_oat_quick_method_header_ != nullptr)
793 && cur_oat_quick_method_header_->IsOptimized()) {
794 CodeInfo code_info = cur_oat_quick_method_header_->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000795 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100796 uint32_t native_pc_offset =
797 cur_oat_quick_method_header_->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100798 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
David Srbecky09ed0982016-02-12 21:58:43 +0000799 if (stack_map.IsValid() && stack_map.HasInlineInfo(encoding.stack_map_encoding)) {
David Brazdilf677ebf2015-05-29 16:29:43 +0100800 InlineInfo inline_info = code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100801 DCHECK_EQ(current_inlining_depth_, 0u);
David Srbecky61b28a12016-02-25 21:55:03 +0000802 for (current_inlining_depth_ = inline_info.GetDepth(encoding.inline_info_encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100803 current_inlining_depth_ != 0;
804 --current_inlining_depth_) {
805 bool should_continue = VisitFrame();
806 if (UNLIKELY(!should_continue)) {
807 return;
808 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100809 cur_depth_++;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000810 inlined_frames_count++;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100811 }
812 }
813 }
814
Dave Allison5cd33752014-04-15 15:57:58 -0700815 bool should_continue = VisitFrame();
816 if (UNLIKELY(!should_continue)) {
817 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700818 }
Dave Allison5cd33752014-04-15 15:57:58 -0700819
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100820 QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700821 if (context_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100822 context_->FillCalleeSaves(reinterpret_cast<uint8_t*>(cur_quick_frame_), frame_info);
Ian Rogers0399dde2012-06-06 17:09:28 -0700823 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700824 // Compute PC for next stack frame from return PC.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100825 size_t frame_size = frame_info.FrameSizeInBytes();
826 size_t return_pc_offset = frame_size - sizeof(void*);
Ian Rogers13735952014-10-08 12:43:28 -0700827 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700828 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100829
Ian Rogers62d6c772013-02-27 08:32:07 -0800830 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700831 // While profiling, the return pc is restored from the side stack, except when walking
832 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700833 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200834 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700835 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800836 instrumentation_stack_depth++;
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100837 if (GetMethod() ==
838 Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAllCalleeSaves)) {
Jeff Haofb2802d2013-07-24 13:53:05 -0700839 // Skip runtime save all callee frames which are used to deliver exceptions.
840 } else if (instrumentation_frame.interpreter_entry_) {
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100841 ArtMethod* callee =
842 Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700843 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100844 << PrettyMethod(GetMethod());
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000845 } else {
846 CHECK_EQ(instrumentation_frame.method_, GetMethod())
847 << "Expected: " << PrettyMethod(instrumentation_frame.method_)
848 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800849 }
850 if (num_frames_ != 0) {
851 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
852 // recursion.
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000853 size_t frame_id = instrumentation::Instrumentation::ComputeFrameId(
854 thread_,
855 cur_depth_,
856 inlined_frames_count);
857 CHECK_EQ(instrumentation_frame.frame_id_, frame_id);
Ian Rogers62d6c772013-02-27 08:32:07 -0800858 }
jeffhao725a9572012-11-13 18:20:12 -0800859 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700860 }
861 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100862
Ian Rogers0399dde2012-06-06 17:09:28 -0700863 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700864 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700865 cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame);
866
867 if (kDebugStackWalk) {
868 LOG(INFO) << PrettyMethod(method) << "@" << method << " size=" << frame_size
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100869 << std::boolalpha
870 << " optimized=" << (cur_oat_quick_method_header_ != nullptr &&
871 cur_oat_quick_method_header_->IsOptimized())
Mathieu Chartiere401d142015-04-22 13:56:20 -0700872 << " native=" << method->IsNative()
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100873 << std::noboolalpha
Mathieu Chartiere401d142015-04-22 13:56:20 -0700874 << " entrypoints=" << method->GetEntryPointFromQuickCompiledCode()
875 << "," << method->GetEntryPointFromJni()
Mathieu Chartiere401d142015-04-22 13:56:20 -0700876 << " next=" << *cur_quick_frame_;
877 }
878
Ian Rogers0399dde2012-06-06 17:09:28 -0700879 cur_depth_++;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700880 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800881 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700882 } else if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700883 do {
884 SanityCheckFrame();
885 bool should_continue = VisitFrame();
886 if (UNLIKELY(!should_continue)) {
887 return;
888 }
889 cur_depth_++;
890 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700891 } while (cur_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700892 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700893 if (include_transitions) {
894 bool should_continue = VisitFrame();
895 if (!should_continue) {
896 return;
897 }
898 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800899 cur_depth_++;
900 }
901 if (num_frames_ != 0) {
902 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700903 }
904}
905
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800906void JavaFrameRootInfo::Describe(std::ostream& os) const {
907 const StackVisitor* visitor = stack_visitor_;
908 CHECK(visitor != nullptr);
909 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
910 visitor->DescribeLocation() << " vreg=" << vreg_;
911}
912
Mathieu Chartiere401d142015-04-22 13:56:20 -0700913int StackVisitor::GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
914 uint32_t core_spills, uint32_t fp_spills,
915 size_t frame_size, int reg, InstructionSet isa) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700916 PointerSize pointer_size = InstructionSetPointerSize(isa);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700917 if (kIsDebugBuild) {
918 auto* runtime = Runtime::Current();
919 if (runtime != nullptr) {
920 CHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), pointer_size);
921 }
922 }
Roland Levillain14d90572015-07-16 10:52:26 +0100923 DCHECK_ALIGNED(frame_size, kStackAlignment);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700924 DCHECK_NE(reg, -1);
925 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
926 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
927 + sizeof(uint32_t); // Filler.
928 int num_regs = code_item->registers_size_ - code_item->ins_size_;
929 int temp_threshold = code_item->registers_size_;
930 const int max_num_special_temps = 1;
931 if (reg == temp_threshold) {
932 // The current method pointer corresponds to special location on stack.
933 return 0;
934 } else if (reg >= temp_threshold + max_num_special_temps) {
935 /*
936 * Special temporaries may have custom locations and the logic above deals with that.
937 * However, non-special temporaries are placed relative to the outs.
938 */
Andreas Gampe542451c2016-07-26 09:02:02 -0700939 int temps_start = code_item->outs_size_ * sizeof(uint32_t)
940 + static_cast<size_t>(pointer_size) /* art method */;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700941 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
942 return temps_start + relative_offset;
943 } else if (reg < num_regs) {
944 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
945 return locals_start + (reg * sizeof(uint32_t));
946 } else {
947 // Handle ins.
Andreas Gampe542451c2016-07-26 09:02:02 -0700948 return frame_size + ((reg - num_regs) * sizeof(uint32_t))
949 + static_cast<size_t>(pointer_size) /* art method */;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700950 }
951}
952
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700953void LockCountData::AddMonitor(Thread* self, mirror::Object* obj) {
Andreas Gampe03ec9302015-08-27 17:41:47 -0700954 if (obj == nullptr) {
955 return;
956 }
957
958 // If there's an error during enter, we won't have locked the monitor. So check there's no
959 // exception.
960 if (self->IsExceptionPending()) {
961 return;
962 }
963
964 if (monitors_ == nullptr) {
965 monitors_.reset(new std::vector<mirror::Object*>());
966 }
967 monitors_->push_back(obj);
968}
969
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700970void LockCountData::RemoveMonitorOrThrow(Thread* self, const mirror::Object* obj) {
Andreas Gampe03ec9302015-08-27 17:41:47 -0700971 if (obj == nullptr) {
972 return;
973 }
974 bool found_object = false;
975 if (monitors_ != nullptr) {
976 // We need to remove one pointer to ref, as duplicates are used for counting recursive locks.
977 // We arbitrarily choose the first one.
978 auto it = std::find(monitors_->begin(), monitors_->end(), obj);
979 if (it != monitors_->end()) {
980 monitors_->erase(it);
981 found_object = true;
982 }
983 }
984 if (!found_object) {
985 // The object wasn't found. Time for an IllegalMonitorStateException.
986 // The order here isn't fully clear. Assume that any other pending exception is swallowed.
987 // TODO: Maybe make already pending exception a suppressed exception.
988 self->ClearException();
989 self->ThrowNewExceptionF("Ljava/lang/IllegalMonitorStateException;",
990 "did not lock monitor on object of type '%s' before unlocking",
991 PrettyTypeOf(const_cast<mirror::Object*>(obj)).c_str());
992 }
993}
994
995// Helper to unlock a monitor. Must be NO_THREAD_SAFETY_ANALYSIS, as we can't statically show
996// that the object was locked.
997void MonitorExitHelper(Thread* self, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS {
998 DCHECK(self != nullptr);
999 DCHECK(obj != nullptr);
1000 obj->MonitorExit(self);
1001}
1002
Andreas Gampe56fdd0e2016-04-28 14:56:54 -07001003bool LockCountData::CheckAllMonitorsReleasedOrThrow(Thread* self) {
Andreas Gampe03ec9302015-08-27 17:41:47 -07001004 DCHECK(self != nullptr);
1005 if (monitors_ != nullptr) {
1006 if (!monitors_->empty()) {
1007 // There may be an exception pending, if the method is terminating abruptly. Clear it.
1008 // TODO: Should we add this as a suppressed exception?
1009 self->ClearException();
1010
1011 // OK, there are monitors that are still locked. To enforce structured locking (and avoid
1012 // deadlocks) we unlock all of them before we raise the IllegalMonitorState exception.
1013 for (mirror::Object* obj : *monitors_) {
1014 MonitorExitHelper(self, obj);
1015 // If this raised an exception, ignore. TODO: Should we add this as suppressed
1016 // exceptions?
1017 if (self->IsExceptionPending()) {
1018 self->ClearException();
1019 }
1020 }
1021 // Raise an exception, just give the first object as the sample.
1022 mirror::Object* first = (*monitors_)[0];
1023 self->ThrowNewExceptionF("Ljava/lang/IllegalMonitorStateException;",
1024 "did not unlock monitor on object of type '%s'",
1025 PrettyTypeOf(first).c_str());
1026
1027 // To make sure this path is not triggered again, clean out the monitors.
1028 monitors_->clear();
1029
1030 return false;
1031 }
1032 }
1033 return true;
1034}
1035
Elliott Hughes68e76522011-10-05 13:22:16 -07001036} // namespace art