| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 19 | #include "android-base/stringprintf.h" |
| 20 | |
| Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 21 | #include "arch/context.h" |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 22 | #include "art_method-inl.h" |
| Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 23 | #include "base/callee_save_type.h" |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 24 | #include "base/enums.h" |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 25 | #include "base/hex_dump.h" |
| David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 26 | #include "dex/dex_file_types.h" |
| Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 27 | #include "entrypoints/entrypoint_utils-inl.h" |
| Vladimir Marko | d3083dd | 2018-05-17 08:43:47 +0100 | [diff] [blame] | 28 | #include "entrypoints/quick/callee_save_frame.h" |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 29 | #include "entrypoints/runtime_asm_entrypoints.h" |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 30 | #include "gc/space/image_space.h" |
| 31 | #include "gc/space/space-inl.h" |
| Vladimir Marko | 6ec2a1b | 2018-05-22 15:33:48 +0100 | [diff] [blame] | 32 | #include "interpreter/shadow_frame-inl.h" |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 33 | #include "jit/jit.h" |
| 34 | #include "jit/jit_code_cache.h" |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 35 | #include "linear_alloc.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 36 | #include "managed_stack.h" |
| Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 37 | #include "mirror/class-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 38 | #include "mirror/object-inl.h" |
| 39 | #include "mirror/object_array-inl.h" |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 40 | #include "oat_quick_method_header.h" |
| Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 41 | #include "quick/quick_method_frame_info.h" |
| Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 42 | #include "runtime.h" |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 43 | #include "thread.h" |
| Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 44 | #include "thread_list.h" |
| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 45 | |
| Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 46 | namespace art { |
| 47 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 48 | using android::base::StringPrintf; |
| 49 | |
| Mathieu Chartier | 8405bfd | 2016-02-05 12:00:49 -0800 | [diff] [blame] | 50 | static constexpr bool kDebugStackWalk = false; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 51 | |
| Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 52 | StackVisitor::StackVisitor(Thread* thread, |
| 53 | Context* context, |
| 54 | StackWalkKind walk_kind, |
| 55 | bool check_suspended) |
| 56 | : StackVisitor(thread, context, walk_kind, 0, check_suspended) {} |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 57 | |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 58 | StackVisitor::StackVisitor(Thread* thread, |
| 59 | Context* context, |
| 60 | StackWalkKind walk_kind, |
| Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 61 | size_t num_frames, |
| 62 | bool check_suspended) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 63 | : thread_(thread), |
| 64 | walk_kind_(walk_kind), |
| 65 | cur_shadow_frame_(nullptr), |
| 66 | cur_quick_frame_(nullptr), |
| 67 | cur_quick_frame_pc_(0), |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 68 | cur_oat_quick_method_header_(nullptr), |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 69 | num_frames_(num_frames), |
| 70 | cur_depth_(0), |
| Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 71 | context_(context), |
| 72 | check_suspended_(check_suspended) { |
| 73 | if (check_suspended_) { |
| 74 | DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; |
| 75 | } |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 78 | ArtMethod* StackVisitor::GetMethod() const { |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 79 | if (cur_shadow_frame_ != nullptr) { |
| 80 | return cur_shadow_frame_->GetMethod(); |
| 81 | } else if (cur_quick_frame_ != nullptr) { |
| 82 | if (IsInInlinedFrame()) { |
| David Srbecky | 61b28a1 | 2016-02-25 21:55:03 +0000 | [diff] [blame] | 83 | const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader(); |
| Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 84 | MethodInfo method_info = method_header->GetOptimizedMethodInfo(); |
| Mathieu Chartier | 45bf250 | 2016-03-31 11:07:09 -0700 | [diff] [blame] | 85 | DCHECK(walk_kind_ != StackWalkKind::kSkipInlinedFrames); |
| David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 86 | return GetResolvedMethod(*GetCurrentQuickFrame(), method_info, current_inline_frames_); |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 87 | } else { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 88 | return *cur_quick_frame_; |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 89 | } |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 90 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 91 | return nullptr; |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 92 | } |
| 93 | |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 94 | uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 95 | if (cur_shadow_frame_ != nullptr) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 96 | return cur_shadow_frame_->GetDexPC(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 97 | } else if (cur_quick_frame_ != nullptr) { |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 98 | if (IsInInlinedFrame()) { |
| David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 99 | return current_inline_frames_.back().GetDexPc(); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 100 | } else if (cur_oat_quick_method_header_ == nullptr) { |
| Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 101 | return dex::kDexNoIndex; |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 102 | } else { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 103 | return cur_oat_quick_method_header_->ToDexPc( |
| 104 | GetMethod(), cur_quick_frame_pc_, abort_on_failure); |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 105 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 106 | } else { |
| 107 | return 0; |
| 108 | } |
| 109 | } |
| 110 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 111 | extern "C" mirror::Object* artQuickGetProxyThisObject(ArtMethod** sp) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 112 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | a836bc9 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 113 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 114 | mirror::Object* StackVisitor::GetThisObject() const { |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 115 | DCHECK_EQ(Runtime::Current()->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 116 | ArtMethod* m = GetMethod(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 117 | if (m->IsStatic()) { |
| Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 118 | return nullptr; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 119 | } else if (m->IsNative()) { |
| Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 120 | if (cur_quick_frame_ != nullptr) { |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 121 | HandleScope* hs = reinterpret_cast<HandleScope*>( |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 122 | reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*)); |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 123 | return hs->GetReference(0); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 124 | } else { |
| 125 | return cur_shadow_frame_->GetVRegReference(0); |
| 126 | } |
| Nicolas Geoffray | 3a09092 | 2015-11-24 09:17:30 +0000 | [diff] [blame] | 127 | } else if (m->IsProxyMethod()) { |
| Sebastien Hertz | a836bc9 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 128 | if (cur_quick_frame_ != nullptr) { |
| 129 | return artQuickGetProxyThisObject(cur_quick_frame_); |
| 130 | } else { |
| 131 | return cur_shadow_frame_->GetVRegReference(0); |
| 132 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 133 | } else { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 134 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 135 | if (!accessor.HasCodeItem()) { |
| Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 136 | UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: " |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 137 | << ArtMethod::PrettyMethod(m); |
| Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 138 | return nullptr; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 139 | } else { |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 140 | uint16_t reg = accessor.RegistersSize() - accessor.InsSize(); |
| Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 141 | uint32_t value = 0; |
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 142 | bool success = GetVReg(m, reg, kReferenceVReg, &value); |
| Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 143 | // We currently always guarantee the `this` object is live throughout the method. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 144 | CHECK(success) << "Failed to read the this object in " << ArtMethod::PrettyMethod(m); |
| Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 145 | return reinterpret_cast<mirror::Object*>(value); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
| Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 150 | size_t StackVisitor::GetNativePcOffset() const { |
| 151 | DCHECK(!IsShadowFrame()); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 152 | return GetCurrentOatQuickMethodHeader()->NativeQuickPcOffset(cur_quick_frame_pc_); |
| Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 155 | bool StackVisitor::GetVRegFromDebuggerShadowFrame(uint16_t vreg, |
| 156 | VRegKind kind, |
| 157 | uint32_t* val) const { |
| 158 | size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId(); |
| 159 | ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); |
| 160 | if (shadow_frame != nullptr) { |
| 161 | bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id); |
| 162 | DCHECK(updated_vreg_flags != nullptr); |
| 163 | if (updated_vreg_flags[vreg]) { |
| 164 | // Value is set by the debugger. |
| 165 | if (kind == kReferenceVReg) { |
| 166 | *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>( |
| 167 | shadow_frame->GetVRegReference(vreg))); |
| 168 | } else { |
| 169 | *val = shadow_frame->GetVReg(vreg); |
| 170 | } |
| 171 | return true; |
| 172 | } |
| 173 | } |
| 174 | // No value is set by the debugger. |
| 175 | return false; |
| 176 | } |
| 177 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 178 | bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const { |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 179 | if (cur_quick_frame_ != nullptr) { |
| 180 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
| Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 181 | DCHECK(m == GetMethod()); |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 182 | // Check if there is value set by the debugger. |
| 183 | if (GetVRegFromDebuggerShadowFrame(vreg, kind, val)) { |
| 184 | return true; |
| 185 | } |
| Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 186 | DCHECK(cur_oat_quick_method_header_->IsOptimized()); |
| 187 | return GetVRegFromOptimizedCode(m, vreg, kind, val); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 188 | } else { |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 189 | DCHECK(cur_shadow_frame_ != nullptr); |
| Sebastien Hertz | 0968744 | 2015-11-17 10:35:39 +0100 | [diff] [blame] | 190 | if (kind == kReferenceVReg) { |
| 191 | *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>( |
| 192 | cur_shadow_frame_->GetVRegReference(vreg))); |
| 193 | } else { |
| 194 | *val = cur_shadow_frame_->GetVReg(vreg); |
| 195 | } |
| Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 196 | return true; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 200 | bool StackVisitor::GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind, |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 201 | uint32_t* val) const { |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 202 | DCHECK_EQ(m, GetMethod()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 203 | // Can't be null or how would we compile its instructions? |
| 204 | DCHECK(m->GetCodeItem() != nullptr) << m->PrettyMethod(); |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 205 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 206 | uint16_t number_of_dex_registers = accessor.RegistersSize(); |
| 207 | DCHECK_LT(vreg, number_of_dex_registers); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 208 | const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader(); |
| David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 209 | CodeInfo code_info(method_header); |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 210 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 211 | uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_); |
| David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 212 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset); |
| Nicolas Geoffray | e12997f | 2015-05-22 14:01:33 +0100 | [diff] [blame] | 213 | DCHECK(stack_map.IsValid()); |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 214 | |
| 215 | DexRegisterMap dex_register_map = IsInInlinedFrame() |
| David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 216 | ? code_info.GetInlineDexRegisterMapOf(stack_map, current_inline_frames_.back()) |
| David Srbecky | fd89b07 | 2018-06-03 12:00:22 +0100 | [diff] [blame] | 217 | : code_info.GetDexRegisterMapOf(stack_map); |
| 218 | if (dex_register_map.empty()) { |
| Nicolas Geoffray | 012fc4e | 2016-01-08 15:58:19 +0000 | [diff] [blame] | 219 | return false; |
| 220 | } |
| David Srbecky | fd89b07 | 2018-06-03 12:00:22 +0100 | [diff] [blame] | 221 | DCHECK_EQ(dex_register_map.size(), number_of_dex_registers); |
| David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 222 | DexRegisterLocation::Kind location_kind = dex_register_map[vreg].GetKind(); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 223 | switch (location_kind) { |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 224 | case DexRegisterLocation::Kind::kInStack: { |
| David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 225 | const int32_t offset = dex_register_map[vreg].GetStackOffsetInBytes(); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 226 | const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset; |
| 227 | *val = *reinterpret_cast<const uint32_t*>(addr); |
| 228 | return true; |
| 229 | } |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 230 | case DexRegisterLocation::Kind::kInRegister: |
| David Brazdil | d9cb68e | 2015-08-25 13:52:43 +0100 | [diff] [blame] | 231 | case DexRegisterLocation::Kind::kInRegisterHigh: |
| 232 | case DexRegisterLocation::Kind::kInFpuRegister: |
| 233 | case DexRegisterLocation::Kind::kInFpuRegisterHigh: { |
| David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 234 | uint32_t reg = dex_register_map[vreg].GetMachineRegister(); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 235 | return GetRegisterIfAccessible(reg, kind, val); |
| 236 | } |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 237 | case DexRegisterLocation::Kind::kConstant: |
| David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 238 | *val = dex_register_map[vreg].GetConstant(); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 239 | return true; |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 240 | case DexRegisterLocation::Kind::kNone: |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 241 | return false; |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 242 | default: |
| David Srbecky | e140212 | 2018-06-13 18:20:45 +0100 | [diff] [blame] | 243 | LOG(FATAL) << "Unexpected location kind " << dex_register_map[vreg].GetKind(); |
| Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 244 | UNREACHABLE(); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 245 | } |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const { |
| 249 | const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
| David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 250 | |
| Vladimir Marko | 239d6ea | 2016-09-05 10:44:04 +0100 | [diff] [blame] | 251 | if (kRuntimeISA == InstructionSet::kX86 && is_float) { |
| 252 | // X86 float registers are 64-bit and each XMM register is provided as two separate |
| 253 | // 32-bit registers by the context. |
| 254 | reg = (kind == kDoubleHiVReg) ? (2 * reg + 1) : (2 * reg); |
| 255 | } |
| David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 256 | |
| Goran Jakovljevic | 986660c | 2015-12-10 11:44:50 +0100 | [diff] [blame] | 257 | // MIPS32 float registers are used as 64-bit (for MIPS32r2 it is pair |
| 258 | // F(2n)-F(2n+1), and for MIPS32r6 it is 64-bit register F(2n)). When |
| 259 | // accessing upper 32-bits from double, reg + 1 should be used. |
| 260 | if ((kRuntimeISA == InstructionSet::kMips) && (kind == kDoubleHiVReg)) { |
| 261 | DCHECK_ALIGNED(reg, 2); |
| 262 | reg++; |
| 263 | } |
| 264 | |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 265 | if (!IsAccessibleRegister(reg, is_float)) { |
| 266 | return false; |
| 267 | } |
| 268 | uintptr_t ptr_val = GetRegister(reg, is_float); |
| 269 | const bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 270 | if (target64) { |
| 271 | const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg); |
| 272 | const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg); |
| 273 | int64_t value_long = static_cast<int64_t>(ptr_val); |
| 274 | if (wide_lo) { |
| 275 | ptr_val = static_cast<uintptr_t>(Low32Bits(value_long)); |
| 276 | } else if (wide_hi) { |
| 277 | ptr_val = static_cast<uintptr_t>(High32Bits(value_long)); |
| 278 | } |
| 279 | } |
| 280 | *val = ptr_val; |
| 281 | return true; |
| 282 | } |
| 283 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 284 | bool StackVisitor::GetVRegPairFromDebuggerShadowFrame(uint16_t vreg, |
| 285 | VRegKind kind_lo, |
| 286 | VRegKind kind_hi, |
| 287 | uint64_t* val) const { |
| 288 | uint32_t low_32bits; |
| 289 | uint32_t high_32bits; |
| 290 | bool success = GetVRegFromDebuggerShadowFrame(vreg, kind_lo, &low_32bits); |
| 291 | success &= GetVRegFromDebuggerShadowFrame(vreg + 1, kind_hi, &high_32bits); |
| 292 | if (success) { |
| 293 | *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits); |
| 294 | } |
| 295 | return success; |
| 296 | } |
| 297 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 298 | bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 299 | VRegKind kind_hi, uint64_t* val) const { |
| 300 | if (kind_lo == kLongLoVReg) { |
| 301 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 302 | } else if (kind_lo == kDoubleLoVReg) { |
| 303 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 304 | } else { |
| 305 | LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 306 | UNREACHABLE(); |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 307 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 308 | // Check if there is value set by the debugger. |
| 309 | if (GetVRegPairFromDebuggerShadowFrame(vreg, kind_lo, kind_hi, val)) { |
| 310 | return true; |
| 311 | } |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 312 | if (cur_quick_frame_ != nullptr) { |
| 313 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
| 314 | DCHECK(m == GetMethod()); |
| Vladimir Marko | 9d07e3d | 2016-03-31 12:02:28 +0100 | [diff] [blame] | 315 | DCHECK(cur_oat_quick_method_header_->IsOptimized()); |
| 316 | return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val); |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 317 | } else { |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 318 | DCHECK(cur_shadow_frame_ != nullptr); |
| Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 319 | *val = cur_shadow_frame_->GetVRegLong(vreg); |
| 320 | return true; |
| 321 | } |
| 322 | } |
| 323 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 324 | bool StackVisitor::GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg, |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 325 | VRegKind kind_lo, VRegKind kind_hi, |
| 326 | uint64_t* val) const { |
| 327 | uint32_t low_32bits; |
| 328 | uint32_t high_32bits; |
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 329 | bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits); |
| 330 | success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits); |
| Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 331 | if (success) { |
| 332 | *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits); |
| 333 | } |
| 334 | return success; |
| 335 | } |
| 336 | |
| 337 | bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, |
| 338 | VRegKind kind_lo, uint64_t* val) const { |
| 339 | const bool is_float = (kind_lo == kDoubleLoVReg); |
| 340 | if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { |
| 341 | return false; |
| 342 | } |
| 343 | uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); |
| 344 | uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float); |
| 345 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 346 | if (target64) { |
| 347 | int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo); |
| 348 | int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi); |
| 349 | ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo)); |
| 350 | ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi)); |
| 351 | } |
| 352 | *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo); |
| 353 | return true; |
| 354 | } |
| 355 | |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 356 | bool StackVisitor::SetVReg(ArtMethod* m, |
| 357 | uint16_t vreg, |
| 358 | uint32_t new_value, |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 359 | VRegKind kind) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 360 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 361 | if (!accessor.HasCodeItem()) { |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 362 | return false; |
| 363 | } |
| 364 | ShadowFrame* shadow_frame = GetCurrentShadowFrame(); |
| 365 | if (shadow_frame == nullptr) { |
| 366 | // This is a compiled frame: we must prepare and update a shadow frame that will |
| 367 | // be executed by the interpreter after deoptimization of the stack. |
| 368 | const size_t frame_id = GetFrameId(); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 369 | const uint16_t num_regs = accessor.RegistersSize(); |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 370 | shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); |
| 371 | CHECK(shadow_frame != nullptr); |
| 372 | // Remember the vreg has been set for debugging and must not be overwritten by the |
| 373 | // original value during deoptimization of the stack. |
| 374 | thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; |
| 375 | } |
| 376 | if (kind == kReferenceVReg) { |
| 377 | shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value)); |
| 378 | } else { |
| 379 | shadow_frame->SetVReg(vreg, new_value); |
| 380 | } |
| 381 | return true; |
| 382 | } |
| 383 | |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 384 | bool StackVisitor::SetVRegPair(ArtMethod* m, |
| 385 | uint16_t vreg, |
| 386 | uint64_t new_value, |
| 387 | VRegKind kind_lo, |
| 388 | VRegKind kind_hi) { |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 389 | if (kind_lo == kLongLoVReg) { |
| 390 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 391 | } else if (kind_lo == kDoubleLoVReg) { |
| 392 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 393 | } else { |
| 394 | LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; |
| 395 | UNREACHABLE(); |
| 396 | } |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 397 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 398 | if (!accessor.HasCodeItem()) { |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 399 | return false; |
| 400 | } |
| 401 | ShadowFrame* shadow_frame = GetCurrentShadowFrame(); |
| 402 | if (shadow_frame == nullptr) { |
| 403 | // This is a compiled frame: we must prepare for deoptimization (see SetVRegFromDebugger). |
| 404 | const size_t frame_id = GetFrameId(); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 405 | const uint16_t num_regs = accessor.RegistersSize(); |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 406 | shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); |
| 407 | CHECK(shadow_frame != nullptr); |
| 408 | // Remember the vreg pair has been set for debugging and must not be overwritten by the |
| 409 | // original value during deoptimization of the stack. |
| 410 | thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; |
| 411 | thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true; |
| 412 | } |
| 413 | shadow_frame->SetVRegLong(vreg, new_value); |
| 414 | return true; |
| 415 | } |
| 416 | |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 417 | bool StackVisitor::IsAccessibleGPR(uint32_t reg) const { |
| 418 | DCHECK(context_ != nullptr); |
| 419 | return context_->IsAccessibleGPR(reg); |
| 420 | } |
| 421 | |
| Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 422 | uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const { |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 423 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 424 | DCHECK(context_ != nullptr); |
| Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 425 | return context_->GetGPRAddress(reg); |
| 426 | } |
| 427 | |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 428 | uintptr_t StackVisitor::GetGPR(uint32_t reg) const { |
| 429 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 430 | DCHECK(context_ != nullptr); |
| 431 | return context_->GetGPR(reg); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 434 | bool StackVisitor::IsAccessibleFPR(uint32_t reg) const { |
| 435 | DCHECK(context_ != nullptr); |
| 436 | return context_->IsAccessibleFPR(reg); |
| Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 437 | } |
| 438 | |
| Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 439 | uintptr_t StackVisitor::GetFPR(uint32_t reg) const { |
| 440 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 441 | DCHECK(context_ != nullptr); |
| 442 | return context_->GetFPR(reg); |
| 443 | } |
| 444 | |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 445 | uintptr_t StackVisitor::GetReturnPc() const { |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 446 | uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame()); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 447 | DCHECK(sp != nullptr); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 448 | uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset(); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 449 | return *reinterpret_cast<uintptr_t*>(pc_addr); |
| 450 | } |
| 451 | |
| 452 | void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) { |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 453 | uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame()); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 454 | CHECK(sp != nullptr); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 455 | uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset(); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 456 | *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc; |
| 457 | } |
| 458 | |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 459 | size_t StackVisitor::ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 460 | struct NumFramesVisitor : public StackVisitor { |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 461 | NumFramesVisitor(Thread* thread_in, StackWalkKind walk_kind_in) |
| 462 | : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {} |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 463 | |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 464 | bool VisitFrame() OVERRIDE { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 465 | frames++; |
| 466 | return true; |
| 467 | } |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 468 | |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 469 | size_t frames; |
| 470 | }; |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 471 | NumFramesVisitor visitor(thread, walk_kind); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 472 | visitor.WalkStack(true); |
| 473 | return visitor.frames; |
| 474 | } |
| 475 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 476 | bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) { |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 477 | struct HasMoreFramesVisitor : public StackVisitor { |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 478 | HasMoreFramesVisitor(Thread* thread, |
| 479 | StackWalkKind walk_kind, |
| 480 | size_t num_frames, |
| 481 | size_t frame_height) |
| 482 | : StackVisitor(thread, nullptr, walk_kind, num_frames), |
| 483 | frame_height_(frame_height), |
| 484 | found_frame_(false), |
| 485 | has_more_frames_(false), |
| 486 | next_method_(nullptr), |
| 487 | next_dex_pc_(0) { |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 488 | } |
| 489 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 490 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 491 | if (found_frame_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 492 | ArtMethod* method = GetMethod(); |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 493 | if (method != nullptr && !method->IsRuntimeMethod()) { |
| 494 | has_more_frames_ = true; |
| 495 | next_method_ = method; |
| 496 | next_dex_pc_ = GetDexPc(); |
| 497 | return false; // End stack walk once next method is found. |
| 498 | } |
| 499 | } else if (GetFrameHeight() == frame_height_) { |
| 500 | found_frame_ = true; |
| 501 | } |
| 502 | return true; |
| 503 | } |
| 504 | |
| 505 | size_t frame_height_; |
| 506 | bool found_frame_; |
| 507 | bool has_more_frames_; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 508 | ArtMethod* next_method_; |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 509 | uint32_t next_dex_pc_; |
| 510 | }; |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 511 | HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight()); |
| Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 512 | visitor.WalkStack(true); |
| 513 | *next_method = visitor.next_method_; |
| 514 | *next_dex_pc = visitor.next_dex_pc_; |
| 515 | return visitor.has_more_frames_; |
| 516 | } |
| 517 | |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 518 | void StackVisitor::DescribeStack(Thread* thread) { |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 519 | struct DescribeStackVisitor : public StackVisitor { |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 520 | explicit DescribeStackVisitor(Thread* thread_in) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 521 | : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames) {} |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 522 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 523 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 524 | LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation(); |
| 525 | return true; |
| 526 | } |
| 527 | }; |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 528 | DescribeStackVisitor visitor(thread); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 529 | visitor.WalkStack(true); |
| 530 | } |
| 531 | |
| Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 532 | std::string StackVisitor::DescribeLocation() const { |
| 533 | std::string result("Visiting method '"); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 534 | ArtMethod* m = GetMethod(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 535 | if (m == nullptr) { |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 536 | return "upcall"; |
| 537 | } |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 538 | result += m->PrettyMethod(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 539 | result += StringPrintf("' at dex PC 0x%04x", GetDexPc()); |
| Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 540 | if (!IsShadowFrame()) { |
| 541 | result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc())); |
| 542 | } |
| 543 | return result; |
| 544 | } |
| 545 | |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 546 | void StackVisitor::SetMethod(ArtMethod* method) { |
| 547 | DCHECK(GetMethod() != nullptr); |
| 548 | if (cur_shadow_frame_ != nullptr) { |
| 549 | cur_shadow_frame_->SetMethod(method); |
| 550 | } else { |
| 551 | DCHECK(cur_quick_frame_ != nullptr); |
| 552 | CHECK(!IsInInlinedFrame()) << "We do not support setting inlined method's ArtMethod!"; |
| Alex Light | 1ebe4fe | 2017-01-30 14:57:11 -0800 | [diff] [blame] | 553 | *cur_quick_frame_ = method; |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 554 | } |
| 555 | } |
| 556 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 557 | static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 558 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 559 | if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) { |
| 560 | return; |
| 561 | } |
| 562 | |
| 563 | if (pc == reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())) { |
| 564 | return; |
| 565 | } |
| 566 | |
| Mingyao Yang | 88ca8ba | 2017-05-23 14:21:07 -0700 | [diff] [blame] | 567 | Runtime* runtime = Runtime::Current(); |
| 568 | if (runtime->UseJitCompilation() && |
| 569 | runtime->GetJit()->GetCodeCache()->ContainsPc(reinterpret_cast<const void*>(pc))) { |
| 570 | return; |
| 571 | } |
| 572 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 573 | const void* code = method->GetEntryPointFromQuickCompiledCode(); |
| Alex Light | db01a09 | 2017-04-03 15:39:55 -0700 | [diff] [blame] | 574 | if (code == GetQuickInstrumentationEntryPoint() || code == GetInvokeObsoleteMethodStub()) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 575 | return; |
| 576 | } |
| 577 | |
| 578 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 579 | if (class_linker->IsQuickToInterpreterBridge(code) || |
| 580 | class_linker->IsQuickResolutionStub(code)) { |
| 581 | return; |
| 582 | } |
| 583 | |
| Calin Juravle | ffc8707 | 2016-04-20 14:22:09 +0100 | [diff] [blame] | 584 | if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code)) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 585 | return; |
| 586 | } |
| 587 | |
| Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 588 | uint32_t code_size = OatQuickMethodHeader::FromEntryPoint(code)->GetCodeSize(); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 589 | uintptr_t code_start = reinterpret_cast<uintptr_t>(code); |
| 590 | CHECK(code_start <= pc && pc <= (code_start + code_size)) |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 591 | << method->PrettyMethod() |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 592 | << " pc=" << std::hex << pc |
| Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 593 | << " code_start=" << code_start |
| 594 | << " code_size=" << code_size; |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 595 | } |
| 596 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 597 | void StackVisitor::SanityCheckFrame() const { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 598 | if (kIsDebugBuild) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 599 | ArtMethod* method = GetMethod(); |
| Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 600 | ObjPtr<mirror::Class> declaring_class = method->GetDeclaringClass(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 601 | // Runtime methods have null declaring class. |
| 602 | if (!method->IsRuntimeMethod()) { |
| 603 | CHECK(declaring_class != nullptr); |
| 604 | CHECK_EQ(declaring_class->GetClass(), declaring_class->GetClass()->GetClass()) |
| 605 | << declaring_class; |
| 606 | } else { |
| 607 | CHECK(declaring_class == nullptr); |
| 608 | } |
| Mathieu Chartier | 951ec2c | 2015-09-22 08:50:05 -0700 | [diff] [blame] | 609 | Runtime* const runtime = Runtime::Current(); |
| 610 | LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); |
| 611 | if (!linear_alloc->Contains(method)) { |
| 612 | // Check class linker linear allocs. |
| Nicolas Geoffray | 48b40cc | 2017-08-07 16:52:40 +0100 | [diff] [blame] | 613 | // We get the canonical method as copied methods may have their declaring |
| 614 | // class from another class loader. |
| 615 | ArtMethod* canonical = method->GetCanonicalMethod(); |
| Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 616 | ObjPtr<mirror::Class> klass = canonical->GetDeclaringClass(); |
| Mathieu Chartier | 951ec2c | 2015-09-22 08:50:05 -0700 | [diff] [blame] | 617 | LinearAlloc* const class_linear_alloc = (klass != nullptr) |
| Mathieu Chartier | 5b83050 | 2016-03-02 10:30:23 -0800 | [diff] [blame] | 618 | ? runtime->GetClassLinker()->GetAllocatorForClassLoader(klass->GetClassLoader()) |
| Mathieu Chartier | 951ec2c | 2015-09-22 08:50:05 -0700 | [diff] [blame] | 619 | : linear_alloc; |
| Nicolas Geoffray | 48b40cc | 2017-08-07 16:52:40 +0100 | [diff] [blame] | 620 | if (!class_linear_alloc->Contains(canonical)) { |
| Mathieu Chartier | 951ec2c | 2015-09-22 08:50:05 -0700 | [diff] [blame] | 621 | // Check image space. |
| 622 | bool in_image = false; |
| 623 | for (auto& space : runtime->GetHeap()->GetContinuousSpaces()) { |
| 624 | if (space->IsImageSpace()) { |
| 625 | auto* image_space = space->AsImageSpace(); |
| 626 | const auto& header = image_space->GetImageHeader(); |
| Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 627 | const ImageSection& methods = header.GetMethodsSection(); |
| 628 | const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); |
| Nicolas Geoffray | 48b40cc | 2017-08-07 16:52:40 +0100 | [diff] [blame] | 629 | const size_t offset = reinterpret_cast<const uint8_t*>(canonical) - image_space->Begin(); |
| Mathieu Chartier | e42888f | 2016-04-14 10:49:19 -0700 | [diff] [blame] | 630 | if (methods.Contains(offset) || runtime_methods.Contains(offset)) { |
| Mathieu Chartier | 951ec2c | 2015-09-22 08:50:05 -0700 | [diff] [blame] | 631 | in_image = true; |
| 632 | break; |
| 633 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 634 | } |
| 635 | } |
| Nicolas Geoffray | 48b40cc | 2017-08-07 16:52:40 +0100 | [diff] [blame] | 636 | CHECK(in_image) << canonical->PrettyMethod() << " not in linear alloc or image"; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 637 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 638 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 639 | if (cur_quick_frame_ != nullptr) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 640 | AssertPcIsWithinQuickCode(method, cur_quick_frame_pc_); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 641 | // Frame sanity. |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 642 | size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 643 | CHECK_NE(frame_size, 0u); |
| Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 644 | // A rough guess at an upper size we expect to see for a frame. |
| 645 | // 256 registers |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 646 | // 2 words HandleScope overhead |
| Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 647 | // 3+3 register spills |
| 648 | // TODO: this seems architecture specific for the case of JNI frames. |
| Brian Carlstrom | ed08bd4 | 2014-03-19 18:34:17 -0700 | [diff] [blame] | 649 | // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong. |
| 650 | // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word); |
| 651 | const size_t kMaxExpectedFrameSize = 2 * KB; |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 652 | CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod(); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 653 | size_t return_pc_offset = GetCurrentQuickFrameInfo().GetReturnPcOffset(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 654 | CHECK_LT(return_pc_offset, frame_size); |
| 655 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 656 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 659 | // Counts the number of references in the parameter list of the corresponding method. |
| 660 | // Note: Thus does _not_ include "this" for non-static methods. |
| 661 | static uint32_t GetNumberOfReferenceArgsWithoutReceiver(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 662 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 663 | uint32_t shorty_len; |
| 664 | const char* shorty = method->GetShorty(&shorty_len); |
| 665 | uint32_t refs = 0; |
| 666 | for (uint32_t i = 1; i < shorty_len ; ++i) { |
| 667 | if (shorty[i] == 'L') { |
| 668 | refs++; |
| 669 | } |
| 670 | } |
| 671 | return refs; |
| 672 | } |
| 673 | |
| 674 | QuickMethodFrameInfo StackVisitor::GetCurrentQuickFrameInfo() const { |
| 675 | if (cur_oat_quick_method_header_ != nullptr) { |
| 676 | return cur_oat_quick_method_header_->GetFrameInfo(); |
| 677 | } |
| 678 | |
| 679 | ArtMethod* method = GetMethod(); |
| 680 | Runtime* runtime = Runtime::Current(); |
| 681 | |
| 682 | if (method->IsAbstract()) { |
| Vladimir Marko | d3083dd | 2018-05-17 08:43:47 +0100 | [diff] [blame] | 683 | return RuntimeCalleeSaveFrame::GetMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | // This goes before IsProxyMethod since runtime methods have a null declaring class. |
| 687 | if (method->IsRuntimeMethod()) { |
| 688 | return runtime->GetRuntimeMethodFrameInfo(method); |
| 689 | } |
| 690 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 691 | if (method->IsProxyMethod()) { |
| Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 692 | // There is only one direct method of a proxy class: the constructor. A direct method is |
| 693 | // cloned from the original java.lang.reflect.Proxy and is executed as usual quick |
| 694 | // compiled method without any stubs. Therefore the method must have a OatQuickMethodHeader. |
| 695 | DCHECK(!method->IsDirect() && !method->IsConstructor()) |
| 696 | << "Constructors of proxy classes must have a OatQuickMethodHeader"; |
| Vladimir Marko | d3083dd | 2018-05-17 08:43:47 +0100 | [diff] [blame] | 697 | return RuntimeCalleeSaveFrame::GetMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 698 | } |
| 699 | |
| Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 700 | // The only remaining case is if the method is native and uses the generic JNI stub, |
| 701 | // called either directly or through some (resolution, instrumentation) trampoline. |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 702 | DCHECK(method->IsNative()); |
| Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 703 | if (kIsDebugBuild) { |
| 704 | ClassLinker* class_linker = runtime->GetClassLinker(); |
| 705 | const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(method, |
| 706 | kRuntimePointerSize); |
| 707 | CHECK(class_linker->IsQuickGenericJniStub(entry_point) || |
| 708 | // The current entrypoint (after filtering out trampolines) may have changed |
| 709 | // from GenericJNI to JIT-compiled stub since we have entered this frame. |
| 710 | (runtime->GetJit() != nullptr && |
| 711 | runtime->GetJit()->GetCodeCache()->ContainsPc(entry_point))) << method->PrettyMethod(); |
| 712 | } |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 713 | // Generic JNI frame. |
| 714 | uint32_t handle_refs = GetNumberOfReferenceArgsWithoutReceiver(method) + 1; |
| 715 | size_t scope_size = HandleScope::SizeOf(handle_refs); |
| Vladimir Marko | d3083dd | 2018-05-17 08:43:47 +0100 | [diff] [blame] | 716 | constexpr QuickMethodFrameInfo callee_info = |
| 717 | RuntimeCalleeSaveFrame::GetMethodFrameInfo(CalleeSaveType::kSaveRefsAndArgs); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 718 | |
| 719 | // Callee saves + handle scope + method ref + alignment |
| 720 | // Note: -sizeof(void*) since callee-save frame stores a whole method pointer. |
| 721 | size_t frame_size = RoundUp( |
| 722 | callee_info.FrameSizeInBytes() - sizeof(void*) + sizeof(ArtMethod*) + scope_size, |
| 723 | kStackAlignment); |
| 724 | return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask()); |
| 725 | } |
| 726 | |
| Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 727 | template <StackVisitor::CountTransitions kCount> |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 728 | void StackVisitor::WalkStack(bool include_transitions) { |
| Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 729 | if (check_suspended_) { |
| 730 | DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); |
| 731 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 732 | CHECK_EQ(cur_depth_, 0U); |
| 733 | bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled(); |
| Alex Light | b81a984 | 2016-12-15 00:59:05 +0000 | [diff] [blame] | 734 | uint32_t instrumentation_stack_depth = 0; |
| Sebastien Hertz | b2feaaf | 2015-10-12 13:40:10 +0000 | [diff] [blame] | 735 | size_t inlined_frames_count = 0; |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 736 | |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 737 | for (const ManagedStack* current_fragment = thread_->GetManagedStack(); |
| 738 | current_fragment != nullptr; current_fragment = current_fragment->GetLink()) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 739 | cur_shadow_frame_ = current_fragment->GetTopShadowFrame(); |
| 740 | cur_quick_frame_ = current_fragment->GetTopQuickFrame(); |
| Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 741 | cur_quick_frame_pc_ = 0; |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 742 | cur_oat_quick_method_header_ = nullptr; |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 743 | |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 744 | if (cur_quick_frame_ != nullptr) { // Handle quick stack frames. |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 745 | // Can't be both a shadow and a quick fragment. |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 746 | DCHECK(current_fragment->GetTopShadowFrame() == nullptr); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 747 | ArtMethod* method = *cur_quick_frame_; |
| Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 748 | DCHECK(method != nullptr); |
| 749 | bool header_retrieved = false; |
| 750 | if (method->IsNative()) { |
| 751 | // We do not have a PC for the first frame, so we cannot simply use |
| 752 | // ArtMethod::GetOatQuickMethodHeader() as we're unable to distinguish there |
| 753 | // between GenericJNI frame and JIT-compiled JNI stub; the entrypoint may have |
| 754 | // changed since the frame was entered. The top quick frame tag indicates |
| 755 | // GenericJNI here, otherwise it's either AOT-compiled or JNI-compiled JNI stub. |
| 756 | if (UNLIKELY(current_fragment->GetTopQuickFrameTag())) { |
| 757 | // The generic JNI does not have any method header. |
| 758 | cur_oat_quick_method_header_ = nullptr; |
| 759 | } else { |
| 760 | const void* existing_entry_point = method->GetEntryPointFromQuickCompiledCode(); |
| 761 | CHECK(existing_entry_point != nullptr); |
| 762 | Runtime* runtime = Runtime::Current(); |
| 763 | ClassLinker* class_linker = runtime->GetClassLinker(); |
| 764 | // Check whether we can quickly get the header from the current entrypoint. |
| 765 | if (!class_linker->IsQuickGenericJniStub(existing_entry_point) && |
| 766 | !class_linker->IsQuickResolutionStub(existing_entry_point) && |
| 767 | existing_entry_point != GetQuickInstrumentationEntryPoint()) { |
| 768 | cur_oat_quick_method_header_ = |
| 769 | OatQuickMethodHeader::FromEntryPoint(existing_entry_point); |
| 770 | } else { |
| 771 | const void* code = method->GetOatMethodQuickCode(class_linker->GetImagePointerSize()); |
| 772 | if (code != nullptr) { |
| 773 | cur_oat_quick_method_header_ = OatQuickMethodHeader::FromEntryPoint(code); |
| 774 | } else { |
| 775 | // This must be a JITted JNI stub frame. |
| 776 | CHECK(runtime->GetJit() != nullptr); |
| 777 | code = runtime->GetJit()->GetCodeCache()->GetJniStubCode(method); |
| 778 | CHECK(code != nullptr) << method->PrettyMethod(); |
| 779 | cur_oat_quick_method_header_ = OatQuickMethodHeader::FromCodePointer(code); |
| 780 | } |
| 781 | } |
| 782 | } |
| 783 | header_retrieved = true; |
| 784 | } |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 785 | while (method != nullptr) { |
| Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 786 | if (!header_retrieved) { |
| 787 | cur_oat_quick_method_header_ = method->GetOatQuickMethodHeader(cur_quick_frame_pc_); |
| 788 | } |
| 789 | header_retrieved = false; // Force header retrieval in next iteration. |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 790 | SanityCheckFrame(); |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 791 | |
| Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 792 | if ((walk_kind_ == StackWalkKind::kIncludeInlinedFrames) |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 793 | && (cur_oat_quick_method_header_ != nullptr) |
| David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 794 | && cur_oat_quick_method_header_->IsOptimized() |
| 795 | // JNI methods cannot have any inlined frames. |
| 796 | && !method->IsNative()) { |
| 797 | DCHECK_NE(cur_quick_frame_pc_, 0u); |
| David Srbecky | 6ee06e9 | 2018-07-25 21:45:54 +0100 | [diff] [blame] | 798 | CodeInfo code_info(cur_oat_quick_method_header_, CodeInfo::DecodeFlags::InlineInfoOnly); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 799 | uint32_t native_pc_offset = |
| 800 | cur_oat_quick_method_header_->NativeQuickPcOffset(cur_quick_frame_pc_); |
| David Srbecky | 052f8ca | 2018-04-26 15:42:54 +0100 | [diff] [blame] | 801 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset); |
| 802 | if (stack_map.IsValid() && stack_map.HasInlineInfo()) { |
| David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 803 | DCHECK_EQ(current_inline_frames_.size(), 0u); |
| 804 | for (current_inline_frames_ = code_info.GetInlineInfosOf(stack_map); |
| 805 | !current_inline_frames_.empty(); |
| 806 | current_inline_frames_.pop_back()) { |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 807 | bool should_continue = VisitFrame(); |
| 808 | if (UNLIKELY(!should_continue)) { |
| 809 | return; |
| 810 | } |
| Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 811 | cur_depth_++; |
| Sebastien Hertz | b2feaaf | 2015-10-12 13:40:10 +0000 | [diff] [blame] | 812 | inlined_frames_count++; |
| Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | } |
| 816 | |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 817 | bool should_continue = VisitFrame(); |
| 818 | if (UNLIKELY(!should_continue)) { |
| 819 | return; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 820 | } |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 821 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 822 | QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 823 | if (context_ != nullptr) { |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 824 | context_->FillCalleeSaves(reinterpret_cast<uint8_t*>(cur_quick_frame_), frame_info); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 825 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 826 | // Compute PC for next stack frame from return PC. |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 827 | size_t frame_size = frame_info.FrameSizeInBytes(); |
| 828 | size_t return_pc_offset = frame_size - sizeof(void*); |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 829 | uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 830 | uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr); |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 831 | |
| Alex Light | b32c6a9 | 2018-06-07 16:48:04 -0700 | [diff] [blame] | 832 | if (UNLIKELY(exit_stubs_installed || |
| 833 | reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc)) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 834 | // While profiling, the return pc is restored from the side stack, except when walking |
| 835 | // the stack for an exception where the side stack will be unwound in VisitFrame. |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 836 | if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) { |
| Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 837 | CHECK_LT(instrumentation_stack_depth, thread_->GetInstrumentationStack()->size()); |
| Sebastien Hertz | 74e256b | 2013-10-04 10:40:37 +0200 | [diff] [blame] | 838 | const instrumentation::InstrumentationStackFrame& instrumentation_frame = |
| Vladimir Marko | 35d5b8a | 2018-07-03 09:18:32 +0100 | [diff] [blame] | 839 | (*thread_->GetInstrumentationStack())[instrumentation_stack_depth]; |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 840 | instrumentation_stack_depth++; |
| Vladimir Marko | fd36f1f | 2016-08-03 18:49:58 +0100 | [diff] [blame] | 841 | if (GetMethod() == |
| Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 842 | Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveAllCalleeSaves)) { |
| Jeff Hao | fb2802d | 2013-07-24 13:53:05 -0700 | [diff] [blame] | 843 | // Skip runtime save all callee frames which are used to deliver exceptions. |
| 844 | } else if (instrumentation_frame.interpreter_entry_) { |
| Vladimir Marko | fd36f1f | 2016-08-03 18:49:58 +0100 | [diff] [blame] | 845 | ArtMethod* callee = |
| Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 846 | Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 847 | CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee) |
| 848 | << " Found: " << ArtMethod::PrettyMethod(GetMethod()); |
| Sebastien Hertz | b2feaaf | 2015-10-12 13:40:10 +0000 | [diff] [blame] | 849 | } else { |
| Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 850 | // Instrumentation generally doesn't distinguish between a method's obsolete and |
| 851 | // non-obsolete version. |
| 852 | CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), |
| 853 | GetMethod()->GetNonObsoleteMethod()) |
| 854 | << "Expected: " |
| 855 | << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) |
| 856 | << " Found: " << ArtMethod::PrettyMethod(GetMethod()->GetNonObsoleteMethod()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 857 | } |
| 858 | if (num_frames_ != 0) { |
| 859 | // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite |
| 860 | // recursion. |
| Sebastien Hertz | b2feaaf | 2015-10-12 13:40:10 +0000 | [diff] [blame] | 861 | size_t frame_id = instrumentation::Instrumentation::ComputeFrameId( |
| 862 | thread_, |
| 863 | cur_depth_, |
| 864 | inlined_frames_count); |
| 865 | CHECK_EQ(instrumentation_frame.frame_id_, frame_id); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 866 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 867 | return_pc = instrumentation_frame.return_pc_; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 868 | } |
| 869 | } |
| Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 870 | |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 871 | cur_quick_frame_pc_ = return_pc; |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 872 | uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 873 | cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame); |
| 874 | |
| 875 | if (kDebugStackWalk) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 876 | LOG(INFO) << ArtMethod::PrettyMethod(method) << "@" << method << " size=" << frame_size |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 877 | << std::boolalpha |
| 878 | << " optimized=" << (cur_oat_quick_method_header_ != nullptr && |
| 879 | cur_oat_quick_method_header_->IsOptimized()) |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 880 | << " native=" << method->IsNative() |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 881 | << std::noboolalpha |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 882 | << " entrypoints=" << method->GetEntryPointFromQuickCompiledCode() |
| Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 883 | << "," << (method->IsNative() ? method->GetEntryPointFromJni() : nullptr) |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 884 | << " next=" << *cur_quick_frame_; |
| 885 | } |
| 886 | |
| Andreas Gampe | f040be6 | 2017-04-14 21:49:33 -0700 | [diff] [blame] | 887 | if (kCount == CountTransitions::kYes || !method->IsRuntimeMethod()) { |
| 888 | cur_depth_++; |
| 889 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 890 | method = *cur_quick_frame_; |
| jeffhao | 6641ea1 | 2013-01-02 18:13:42 -0800 | [diff] [blame] | 891 | } |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 892 | } else if (cur_shadow_frame_ != nullptr) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 893 | do { |
| 894 | SanityCheckFrame(); |
| 895 | bool should_continue = VisitFrame(); |
| 896 | if (UNLIKELY(!should_continue)) { |
| 897 | return; |
| 898 | } |
| 899 | cur_depth_++; |
| 900 | cur_shadow_frame_ = cur_shadow_frame_->GetLink(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 901 | } while (cur_shadow_frame_ != nullptr); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 902 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 903 | if (include_transitions) { |
| 904 | bool should_continue = VisitFrame(); |
| 905 | if (!should_continue) { |
| 906 | return; |
| 907 | } |
| 908 | } |
| Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 909 | if (kCount == CountTransitions::kYes) { |
| 910 | cur_depth_++; |
| 911 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 912 | } |
| 913 | if (num_frames_ != 0) { |
| 914 | CHECK_EQ(cur_depth_, num_frames_); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 915 | } |
| 916 | } |
| 917 | |
| Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 918 | template void StackVisitor::WalkStack<StackVisitor::CountTransitions::kYes>(bool); |
| 919 | template void StackVisitor::WalkStack<StackVisitor::CountTransitions::kNo>(bool); |
| 920 | |
| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 921 | } // namespace art |