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 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 19 | #include "arch/context.h" |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 20 | #include "base/hex_dump.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 21 | #include "entrypoints/runtime_asm_entrypoints.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 22 | #include "mirror/art_method-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 23 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 24 | #include "mirror/object.h" |
| 25 | #include "mirror/object-inl.h" |
| 26 | #include "mirror/object_array-inl.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 27 | #include "quick/quick_method_frame_info.h" |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 28 | #include "runtime.h" |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 29 | #include "thread.h" |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 30 | #include "thread_list.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 31 | #include "throw_location.h" |
Mathieu Chartier | 4e30541 | 2014-02-19 10:54:44 -0800 | [diff] [blame] | 32 | #include "verify_object-inl.h" |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 33 | #include "vmap_table.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 34 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 35 | namespace art { |
| 36 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 37 | mirror::Object* ShadowFrame::GetThisObject() const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 38 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 39 | if (m->IsStatic()) { |
| 40 | return NULL; |
| 41 | } else if (m->IsNative()) { |
| 42 | return GetVRegReference(0); |
| 43 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 44 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 45 | CHECK(code_item != NULL) << PrettyMethod(m); |
| 46 | uint16_t reg = code_item->registers_size_ - code_item->ins_size_; |
| 47 | return GetVRegReference(reg); |
| 48 | } |
| 49 | } |
| 50 | |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 51 | mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 52 | mirror::ArtMethod* m = GetMethod(); |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 53 | if (m->IsStatic()) { |
| 54 | return NULL; |
| 55 | } else { |
Jeff Hao | 8d44885 | 2013-06-03 17:26:19 -0700 | [diff] [blame] | 56 | return GetVRegReference(NumberOfVRegs() - num_ins); |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 57 | } |
| 58 | } |
| 59 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 60 | ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const { |
| 61 | return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC()); |
| 62 | } |
| 63 | |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 64 | size_t ManagedStack::NumJniShadowFrameReferences() const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 65 | size_t count = 0; |
| 66 | for (const ManagedStack* current_fragment = this; current_fragment != NULL; |
| 67 | current_fragment = current_fragment->GetLink()) { |
| 68 | for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; |
| 69 | current_frame = current_frame->GetLink()) { |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 70 | if (current_frame->GetMethod()->IsNative()) { |
| 71 | // The JNI ShadowFrame only contains references. (For indirect reference.) |
| 72 | count += current_frame->NumberOfVRegs(); |
| 73 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | return count; |
| 77 | } |
| 78 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 79 | bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 80 | for (const ManagedStack* current_fragment = this; current_fragment != NULL; |
| 81 | current_fragment = current_fragment->GetLink()) { |
| 82 | for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; |
| 83 | current_frame = current_frame->GetLink()) { |
| 84 | if (current_frame->Contains(shadow_frame_entry)) { |
| 85 | return true; |
| 86 | } |
| 87 | } |
| 88 | } |
| 89 | return false; |
| 90 | } |
| 91 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 92 | StackVisitor::StackVisitor(Thread* thread, Context* context) |
| 93 | : thread_(thread), cur_shadow_frame_(NULL), |
| 94 | cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0), |
| 95 | context_(context) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 96 | DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 97 | } |
| 98 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 99 | StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames) |
| 100 | : thread_(thread), cur_shadow_frame_(NULL), |
| 101 | cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0), |
| 102 | context_(context) { |
| 103 | DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; |
| 104 | } |
| 105 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 106 | uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 107 | if (cur_shadow_frame_ != NULL) { |
| 108 | return cur_shadow_frame_->GetDexPC(); |
| 109 | } else if (cur_quick_frame_ != NULL) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 110 | return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 111 | } else { |
| 112 | return 0; |
| 113 | } |
| 114 | } |
| 115 | |
Sebastien Hertz | a836bc9 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 116 | extern "C" mirror::Object* artQuickGetProxyThisObject(StackReference<mirror::ArtMethod>* sp) |
| 117 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 118 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 119 | mirror::Object* StackVisitor::GetThisObject() const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 120 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 121 | if (m->IsStatic()) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 122 | return nullptr; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 123 | } else if (m->IsNative()) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 124 | if (cur_quick_frame_ != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 125 | HandleScope* hs = reinterpret_cast<HandleScope*>( |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 126 | reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffset().SizeValue()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 127 | return hs->GetReference(0); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 128 | } else { |
| 129 | return cur_shadow_frame_->GetVRegReference(0); |
| 130 | } |
Sebastien Hertz | a836bc9 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 131 | } else if (m->IsProxyMethod()) { |
| 132 | if (cur_quick_frame_ != nullptr) { |
| 133 | return artQuickGetProxyThisObject(cur_quick_frame_); |
| 134 | } else { |
| 135 | return cur_shadow_frame_->GetVRegReference(0); |
| 136 | } |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 137 | } else if (m->IsOptimized(sizeof(void*))) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 138 | // TODO: Implement, currently only used for exceptions when jdwp is enabled. |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 139 | UNIMPLEMENTED(WARNING) |
| 140 | << "StackVisitor::GetThisObject is unimplemented with the optimizing compiler"; |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 141 | return nullptr; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 142 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 143 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 144 | if (code_item == nullptr) { |
Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 145 | UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: " |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 146 | << PrettyMethod(m); |
Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 147 | return nullptr; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 148 | } else { |
| 149 | uint16_t reg = code_item->registers_size_ - code_item->ins_size_; |
| 150 | return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg)); |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 155 | size_t StackVisitor::GetNativePcOffset() const { |
| 156 | DCHECK(!IsShadowFrame()); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 157 | return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_); |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 160 | bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, |
| 161 | uint32_t* val) const { |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 162 | if (cur_quick_frame_ != nullptr) { |
| 163 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 164 | DCHECK(m == GetMethod()); |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 165 | if (m->IsOptimized(sizeof(void*))) { |
| 166 | return GetVRegFromOptimizedCode(m, vreg, kind, val); |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 167 | } else { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 168 | return GetVRegFromQuickCode(m, vreg, kind, val); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 169 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 170 | } else { |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 171 | DCHECK(cur_shadow_frame_ != nullptr); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 172 | *val = cur_shadow_frame_->GetVReg(vreg); |
| 173 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 174 | } |
| 175 | } |
| 176 | |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 177 | bool StackVisitor::GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, |
| 178 | uint32_t* val) const { |
| 179 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 180 | DCHECK(code_pointer != nullptr); |
| 181 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
| 182 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 183 | uint32_t vmap_offset; |
| 184 | // TODO: IsInContext stops before spotting floating point registers. |
| 185 | if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { |
| 186 | bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
| 187 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 188 | uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); |
| 189 | return GetRegisterIfAccessible(reg, kind, val); |
| 190 | } else { |
| 191 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 192 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 193 | // its instructions? |
| 194 | *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 195 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 196 | return true; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | bool StackVisitor::GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, |
| 201 | uint32_t* val) const { |
| 202 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 203 | DCHECK(code_pointer != nullptr); |
| 204 | uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_); |
| 205 | CodeInfo code_info = m->GetOptimizedCodeInfo(); |
| 206 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset); |
| 207 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 208 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 209 | // its instructions? |
| 210 | DCHECK_LT(vreg, code_item->registers_size_); |
| 211 | DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map, |
| 212 | code_item->registers_size_); |
| 213 | DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg); |
| 214 | switch (location_kind) { |
| 215 | case DexRegisterMap::kInStack: { |
| 216 | const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg); |
| 217 | const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset; |
| 218 | *val = *reinterpret_cast<const uint32_t*>(addr); |
| 219 | return true; |
| 220 | } |
| 221 | case DexRegisterMap::kInRegister: |
| 222 | case DexRegisterMap::kInFpuRegister: { |
| 223 | uint32_t reg = dex_register_map.GetMachineRegister(vreg); |
| 224 | return GetRegisterIfAccessible(reg, kind, val); |
| 225 | } |
| 226 | case DexRegisterMap::kConstant: |
| 227 | *val = dex_register_map.GetConstant(vreg); |
| 228 | return true; |
| 229 | case DexRegisterMap::kNone: |
| 230 | return false; |
| 231 | } |
| 232 | UNREACHABLE(); |
| 233 | return false; |
| 234 | } |
| 235 | |
| 236 | bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const { |
| 237 | const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
| 238 | if (!IsAccessibleRegister(reg, is_float)) { |
| 239 | return false; |
| 240 | } |
| 241 | uintptr_t ptr_val = GetRegister(reg, is_float); |
| 242 | const bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 243 | if (target64) { |
| 244 | const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg); |
| 245 | const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg); |
| 246 | int64_t value_long = static_cast<int64_t>(ptr_val); |
| 247 | if (wide_lo) { |
| 248 | ptr_val = static_cast<uintptr_t>(Low32Bits(value_long)); |
| 249 | } else if (wide_hi) { |
| 250 | ptr_val = static_cast<uintptr_t>(High32Bits(value_long)); |
| 251 | } |
| 252 | } |
| 253 | *val = ptr_val; |
| 254 | return true; |
| 255 | } |
| 256 | |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 257 | bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, |
| 258 | VRegKind kind_hi, uint64_t* val) const { |
| 259 | if (kind_lo == kLongLoVReg) { |
| 260 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 261 | } else if (kind_lo == kDoubleLoVReg) { |
| 262 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 263 | } else { |
| 264 | 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] | 265 | UNREACHABLE(); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 266 | } |
| 267 | if (cur_quick_frame_ != nullptr) { |
| 268 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
| 269 | DCHECK(m == GetMethod()); |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 270 | if (m->IsOptimized(sizeof(void*))) { |
| 271 | return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 272 | } else { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 273 | return GetVRegPairFromQuickCode(m, vreg, kind_lo, kind_hi, val); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 274 | } |
| 275 | } else { |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 276 | DCHECK(cur_shadow_frame_ != nullptr); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 277 | *val = cur_shadow_frame_->GetVRegLong(vreg); |
| 278 | return true; |
| 279 | } |
| 280 | } |
| 281 | |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 282 | bool StackVisitor::GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, |
| 283 | VRegKind kind_hi, uint64_t* val) const { |
| 284 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 285 | DCHECK(code_pointer != nullptr); |
| 286 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
| 287 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 288 | uint32_t vmap_offset_lo, vmap_offset_hi; |
| 289 | // TODO: IsInContext stops before spotting floating point registers. |
| 290 | if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) && |
| 291 | vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) { |
| 292 | bool is_float = (kind_lo == kDoubleLoVReg); |
| 293 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 294 | uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo); |
| 295 | uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); |
| 296 | return GetRegisterPairIfAccessible(reg_lo, reg_hi, kind_lo, val); |
| 297 | } else { |
| 298 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 299 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 300 | // its instructions? |
| 301 | uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 302 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 303 | *val = *reinterpret_cast<uint64_t*>(addr); |
| 304 | return true; |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | bool StackVisitor::GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, |
| 309 | VRegKind kind_lo, VRegKind kind_hi, |
| 310 | uint64_t* val) const { |
| 311 | uint32_t low_32bits; |
| 312 | uint32_t high_32bits; |
| 313 | bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits); |
| 314 | success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits); |
| 315 | if (success) { |
| 316 | *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits); |
| 317 | } |
| 318 | return success; |
| 319 | } |
| 320 | |
| 321 | bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, |
| 322 | VRegKind kind_lo, uint64_t* val) const { |
| 323 | const bool is_float = (kind_lo == kDoubleLoVReg); |
| 324 | if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { |
| 325 | return false; |
| 326 | } |
| 327 | uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); |
| 328 | uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float); |
| 329 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 330 | if (target64) { |
| 331 | int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo); |
| 332 | int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi); |
| 333 | ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo)); |
| 334 | ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi)); |
| 335 | } |
| 336 | *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo); |
| 337 | return true; |
| 338 | } |
| 339 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 340 | bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 341 | VRegKind kind) { |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 342 | if (cur_quick_frame_ != nullptr) { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 343 | DCHECK(context_ != nullptr); // You can't reliably write registers without a context. |
| 344 | DCHECK(m == GetMethod()); |
| 345 | if (m->IsOptimized(sizeof(void*))) { |
| 346 | return SetVRegFromOptimizedCode(m, vreg, new_value, kind); |
| 347 | } else { |
| 348 | return SetVRegFromQuickCode(m, vreg, new_value, kind); |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 349 | } |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 350 | } else { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 351 | cur_shadow_frame_->SetVReg(vreg, new_value); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 352 | return true; |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 353 | } |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | bool StackVisitor::SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, |
| 357 | VRegKind kind) { |
| 358 | DCHECK(context_ != nullptr); // You can't reliably write registers without a context. |
| 359 | DCHECK(m == GetMethod()); |
| 360 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 361 | DCHECK(code_pointer != nullptr); |
| 362 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
| 363 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 364 | uint32_t vmap_offset; |
| 365 | // TODO: IsInContext stops before spotting floating point registers. |
| 366 | if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { |
| 367 | bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
| 368 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 369 | uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); |
| 370 | return SetRegisterIfAccessible(reg, new_value, kind); |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 371 | } else { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 372 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 373 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 374 | // its instructions? |
| 375 | uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 376 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 377 | *addr = new_value; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 378 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 379 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 382 | bool StackVisitor::SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, |
| 383 | VRegKind kind) { |
| 384 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 385 | DCHECK(code_pointer != nullptr); |
| 386 | uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_); |
| 387 | CodeInfo code_info = m->GetOptimizedCodeInfo(); |
| 388 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset); |
| 389 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 390 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 391 | // its instructions? |
| 392 | DCHECK_LT(vreg, code_item->registers_size_); |
| 393 | DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map, |
| 394 | code_item->registers_size_); |
| 395 | DexRegisterMap::LocationKind location_kind = dex_register_map.GetLocationKind(vreg); |
| 396 | uint32_t dex_pc = m->ToDexPc(cur_quick_frame_pc_, false); |
| 397 | switch (location_kind) { |
| 398 | case DexRegisterMap::kInStack: { |
| 399 | const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg); |
| 400 | uint8_t* addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + offset; |
| 401 | *reinterpret_cast<uint32_t*>(addr) = new_value; |
| 402 | return true; |
| 403 | } |
| 404 | case DexRegisterMap::kInRegister: |
| 405 | case DexRegisterMap::kInFpuRegister: { |
| 406 | uint32_t reg = dex_register_map.GetMachineRegister(vreg); |
| 407 | return SetRegisterIfAccessible(reg, new_value, kind); |
| 408 | } |
| 409 | case DexRegisterMap::kConstant: |
| 410 | LOG(ERROR) << StringPrintf("Cannot change value of DEX register v%u used as a constant at " |
| 411 | "DEX pc 0x%x (native pc 0x%x) of method %s", |
| 412 | vreg, dex_pc, native_pc_offset, |
| 413 | PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str()); |
| 414 | return false; |
| 415 | case DexRegisterMap::kNone: |
| 416 | LOG(ERROR) << StringPrintf("No location for DEX register v%u at DEX pc 0x%x " |
| 417 | "(native pc 0x%x) of method %s", |
| 418 | vreg, dex_pc, native_pc_offset, |
| 419 | PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str()); |
| 420 | return false; |
| 421 | default: |
| 422 | LOG(FATAL) << StringPrintf("Unknown location for DEX register v%u at DEX pc 0x%x " |
| 423 | "(native pc 0x%x) of method %s", |
| 424 | vreg, dex_pc, native_pc_offset, |
| 425 | PrettyMethod(cur_quick_frame_->AsMirrorPtr()).c_str()); |
| 426 | UNREACHABLE(); |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | bool StackVisitor::SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind) { |
| 431 | const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
| 432 | if (!IsAccessibleRegister(reg, is_float)) { |
| 433 | return false; |
| 434 | } |
| 435 | const bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 436 | |
| 437 | // Create a new value that can hold both low 32 and high 32 bits, in |
| 438 | // case we are running 64 bits. |
| 439 | uintptr_t full_new_value = new_value; |
| 440 | // Deal with 32 or 64-bit wide registers in a way that builds on all targets. |
| 441 | if (target64) { |
| 442 | bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg); |
| 443 | bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg); |
| 444 | if (wide_lo || wide_hi) { |
| 445 | uintptr_t old_reg_val = GetRegister(reg, is_float); |
| 446 | uint64_t new_vreg_portion = static_cast<uint64_t>(new_value); |
| 447 | uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val); |
| 448 | uint64_t mask = 0xffffffff; |
| 449 | if (wide_lo) { |
| 450 | mask = mask << 32; |
| 451 | } else { |
| 452 | new_vreg_portion = new_vreg_portion << 32; |
| 453 | } |
| 454 | full_new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion); |
| 455 | } |
| 456 | } |
| 457 | SetRegister(reg, full_new_value, is_float); |
| 458 | return true; |
| 459 | } |
| 460 | |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 461 | bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, |
| 462 | VRegKind kind_lo, VRegKind kind_hi) { |
| 463 | if (kind_lo == kLongLoVReg) { |
| 464 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 465 | } else if (kind_lo == kDoubleLoVReg) { |
| 466 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 467 | } else { |
| 468 | LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; |
| 469 | } |
| 470 | if (cur_quick_frame_ != nullptr) { |
| 471 | DCHECK(context_ != nullptr); // You can't reliably write registers without a context. |
| 472 | DCHECK(m == GetMethod()); |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 473 | if (m->IsOptimized(sizeof(void*))) { |
| 474 | return SetVRegPairFromOptimizedCode(m, vreg, new_value, kind_lo, kind_hi); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 475 | } else { |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 476 | return SetVRegPairFromQuickCode(m, vreg, new_value, kind_lo, kind_hi); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 477 | } |
| 478 | } else { |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 479 | DCHECK(cur_shadow_frame_ != nullptr); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 480 | cur_shadow_frame_->SetVRegLong(vreg, new_value); |
| 481 | return true; |
| 482 | } |
| 483 | } |
| 484 | |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 485 | bool StackVisitor::SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, |
| 486 | VRegKind kind_lo, VRegKind kind_hi) { |
| 487 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
| 488 | DCHECK(code_pointer != nullptr); |
| 489 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
| 490 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 491 | uint32_t vmap_offset_lo, vmap_offset_hi; |
| 492 | // TODO: IsInContext stops before spotting floating point registers. |
| 493 | if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) && |
| 494 | vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) { |
| 495 | bool is_float = (kind_lo == kDoubleLoVReg); |
| 496 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 497 | uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo); |
| 498 | uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); |
| 499 | return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float); |
| 500 | } else { |
| 501 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 502 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 503 | // its instructions? |
| 504 | uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 505 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 506 | *reinterpret_cast<uint64_t*>(addr) = new_value; |
| 507 | return true; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | bool StackVisitor::SetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, |
| 512 | VRegKind kind_lo, VRegKind kind_hi) { |
| 513 | uint32_t low_32bits = Low32Bits(new_value); |
| 514 | uint32_t high_32bits = High32Bits(new_value); |
| 515 | bool success = SetVRegFromOptimizedCode(m, vreg, low_32bits, kind_lo); |
| 516 | success &= SetVRegFromOptimizedCode(m, vreg + 1, high_32bits, kind_hi); |
| 517 | return success; |
| 518 | } |
| 519 | |
| 520 | bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, |
| 521 | uint64_t new_value, bool is_float) { |
| 522 | if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { |
| 523 | return false; |
| 524 | } |
| 525 | uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF); |
| 526 | uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32); |
| 527 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 528 | // Deal with 32 or 64-bit wide registers in a way that builds on all targets. |
| 529 | if (target64) { |
| 530 | DCHECK_EQ(reg_lo, reg_hi); |
| 531 | SetRegister(reg_lo, new_value, is_float); |
| 532 | } else { |
| 533 | SetRegister(reg_lo, new_value_lo, is_float); |
| 534 | SetRegister(reg_hi, new_value_hi, is_float); |
| 535 | } |
| 536 | return true; |
| 537 | } |
| 538 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 539 | bool StackVisitor::IsAccessibleGPR(uint32_t reg) const { |
| 540 | DCHECK(context_ != nullptr); |
| 541 | return context_->IsAccessibleGPR(reg); |
| 542 | } |
| 543 | |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 544 | uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const { |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 545 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 546 | DCHECK(context_ != nullptr); |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 547 | return context_->GetGPRAddress(reg); |
| 548 | } |
| 549 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 550 | uintptr_t StackVisitor::GetGPR(uint32_t reg) const { |
| 551 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 552 | DCHECK(context_ != nullptr); |
| 553 | return context_->GetGPR(reg); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 556 | void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) { |
| 557 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 558 | DCHECK(context_ != nullptr); |
| 559 | context_->SetGPR(reg, value); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 560 | } |
| 561 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 562 | bool StackVisitor::IsAccessibleFPR(uint32_t reg) const { |
| 563 | DCHECK(context_ != nullptr); |
| 564 | return context_->IsAccessibleFPR(reg); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 565 | } |
| 566 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 567 | uintptr_t StackVisitor::GetFPR(uint32_t reg) const { |
| 568 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 569 | DCHECK(context_ != nullptr); |
| 570 | return context_->GetFPR(reg); |
| 571 | } |
| 572 | |
| 573 | void StackVisitor::SetFPR(uint32_t reg, uintptr_t value) { |
| 574 | DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; |
| 575 | DCHECK(context_ != nullptr); |
| 576 | context_->SetFPR(reg, value); |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 577 | } |
| 578 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 579 | uintptr_t StackVisitor::GetReturnPc() const { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 580 | uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame()); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 581 | DCHECK(sp != NULL); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 582 | uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 583 | return *reinterpret_cast<uintptr_t*>(pc_addr); |
| 584 | } |
| 585 | |
| 586 | void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 587 | uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame()); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 588 | CHECK(sp != NULL); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 589 | uint8_t* pc_addr = sp + GetMethod()->GetReturnPcOffset().SizeValue(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 590 | *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc; |
| 591 | } |
| 592 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 593 | size_t StackVisitor::ComputeNumFrames(Thread* thread) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 594 | struct NumFramesVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 595 | explicit NumFramesVisitor(Thread* thread_in) |
| 596 | : StackVisitor(thread_in, NULL), frames(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 597 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 598 | bool VisitFrame() OVERRIDE { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 599 | frames++; |
| 600 | return true; |
| 601 | } |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 602 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 603 | size_t frames; |
| 604 | }; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 605 | NumFramesVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 606 | visitor.WalkStack(true); |
| 607 | return visitor.frames; |
| 608 | } |
| 609 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 610 | bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) { |
| 611 | struct HasMoreFramesVisitor : public StackVisitor { |
| 612 | explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height) |
| 613 | : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height), |
| 614 | found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) { |
| 615 | } |
| 616 | |
| 617 | bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 618 | if (found_frame_) { |
| 619 | mirror::ArtMethod* method = GetMethod(); |
| 620 | if (method != nullptr && !method->IsRuntimeMethod()) { |
| 621 | has_more_frames_ = true; |
| 622 | next_method_ = method; |
| 623 | next_dex_pc_ = GetDexPc(); |
| 624 | return false; // End stack walk once next method is found. |
| 625 | } |
| 626 | } else if (GetFrameHeight() == frame_height_) { |
| 627 | found_frame_ = true; |
| 628 | } |
| 629 | return true; |
| 630 | } |
| 631 | |
| 632 | size_t frame_height_; |
| 633 | bool found_frame_; |
| 634 | bool has_more_frames_; |
| 635 | mirror::ArtMethod* next_method_; |
| 636 | uint32_t next_dex_pc_; |
| 637 | }; |
| 638 | HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight()); |
| 639 | visitor.WalkStack(true); |
| 640 | *next_method = visitor.next_method_; |
| 641 | *next_dex_pc = visitor.next_dex_pc_; |
| 642 | return visitor.has_more_frames_; |
| 643 | } |
| 644 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 645 | void StackVisitor::DescribeStack(Thread* thread) { |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 646 | struct DescribeStackVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 647 | explicit DescribeStackVisitor(Thread* thread_in) |
| 648 | : StackVisitor(thread_in, NULL) {} |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 649 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 650 | bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 651 | LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation(); |
| 652 | return true; |
| 653 | } |
| 654 | }; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 655 | DescribeStackVisitor visitor(thread); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 656 | visitor.WalkStack(true); |
| 657 | } |
| 658 | |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 659 | std::string StackVisitor::DescribeLocation() const { |
| 660 | std::string result("Visiting method '"); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 661 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 662 | if (m == NULL) { |
| 663 | return "upcall"; |
| 664 | } |
| 665 | result += PrettyMethod(m); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 666 | result += StringPrintf("' at dex PC 0x%04x", GetDexPc()); |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 667 | if (!IsShadowFrame()) { |
| 668 | result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc())); |
| 669 | } |
| 670 | return result; |
| 671 | } |
| 672 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 673 | static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread, |
| 674 | uint32_t depth) { |
| 675 | CHECK_LT(depth, thread->GetInstrumentationStack()->size()); |
| 676 | return thread->GetInstrumentationStack()->at(depth); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 677 | } |
| 678 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 679 | void StackVisitor::SanityCheckFrame() const { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 680 | if (kIsDebugBuild) { |
| 681 | mirror::ArtMethod* method = GetMethod(); |
Mathieu Chartier | 119c6bd | 2014-05-09 14:11:47 -0700 | [diff] [blame] | 682 | CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 683 | if (cur_quick_frame_ != nullptr) { |
| 684 | method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_); |
| 685 | // Frame sanity. |
| 686 | size_t frame_size = method->GetFrameSizeInBytes(); |
| 687 | CHECK_NE(frame_size, 0u); |
Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 688 | // A rough guess at an upper size we expect to see for a frame. |
| 689 | // 256 registers |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 690 | // 2 words HandleScope overhead |
Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 691 | // 3+3 register spills |
| 692 | // TODO: this seems architecture specific for the case of JNI frames. |
Brian Carlstrom | ed08bd4 | 2014-03-19 18:34:17 -0700 | [diff] [blame] | 693 | // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong. |
| 694 | // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word); |
| 695 | const size_t kMaxExpectedFrameSize = 2 * KB; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 696 | CHECK_LE(frame_size, kMaxExpectedFrameSize); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 697 | size_t return_pc_offset = method->GetReturnPcOffset().SizeValue(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 698 | CHECK_LT(return_pc_offset, frame_size); |
| 699 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 700 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | void StackVisitor::WalkStack(bool include_transitions) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 704 | DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 705 | CHECK_EQ(cur_depth_, 0U); |
| 706 | bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled(); |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 707 | uint32_t instrumentation_stack_depth = 0; |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 708 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 709 | for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 710 | current_fragment = current_fragment->GetLink()) { |
| 711 | cur_shadow_frame_ = current_fragment->GetTopShadowFrame(); |
| 712 | cur_quick_frame_ = current_fragment->GetTopQuickFrame(); |
Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 713 | cur_quick_frame_pc_ = 0; |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 714 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 715 | if (cur_quick_frame_ != NULL) { // Handle quick stack frames. |
| 716 | // Can't be both a shadow and a quick fragment. |
| 717 | DCHECK(current_fragment->GetTopShadowFrame() == NULL); |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 718 | mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr(); |
jeffhao | 6641ea1 | 2013-01-02 18:13:42 -0800 | [diff] [blame] | 719 | while (method != NULL) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 720 | SanityCheckFrame(); |
| 721 | bool should_continue = VisitFrame(); |
| 722 | if (UNLIKELY(!should_continue)) { |
| 723 | return; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 724 | } |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 725 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 726 | if (context_ != NULL) { |
| 727 | context_->FillCalleeSaves(*this); |
| 728 | } |
| 729 | size_t frame_size = method->GetFrameSizeInBytes(); |
| 730 | // Compute PC for next stack frame from return PC. |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 731 | size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue(); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 732 | 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] | 733 | uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 734 | if (UNLIKELY(exit_stubs_installed)) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 735 | // While profiling, the return pc is restored from the side stack, except when walking |
| 736 | // 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] | 737 | if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) { |
Sebastien Hertz | 74e256b | 2013-10-04 10:40:37 +0200 | [diff] [blame] | 738 | const instrumentation::InstrumentationStackFrame& instrumentation_frame = |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 739 | GetInstrumentationStackFrame(thread_, instrumentation_stack_depth); |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 740 | instrumentation_stack_depth++; |
Jeff Hao | fb2802d | 2013-07-24 13:53:05 -0700 | [diff] [blame] | 741 | if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) { |
| 742 | // Skip runtime save all callee frames which are used to deliver exceptions. |
| 743 | } else if (instrumentation_frame.interpreter_entry_) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 744 | mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); |
Jeff Hao | fb2802d | 2013-07-24 13:53:05 -0700 | [diff] [blame] | 745 | CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: " |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 746 | << PrettyMethod(GetMethod()); |
Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 747 | } else if (instrumentation_frame.method_ != GetMethod()) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 748 | LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_) |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 749 | << " Found: " << PrettyMethod(GetMethod()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 750 | } |
| 751 | if (num_frames_ != 0) { |
| 752 | // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite |
| 753 | // recursion. |
| 754 | CHECK(instrumentation_frame.frame_id_ == GetFrameId()) |
| 755 | << "Expected: " << instrumentation_frame.frame_id_ |
| 756 | << " Found: " << GetFrameId(); |
| 757 | } |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 758 | return_pc = instrumentation_frame.return_pc_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 759 | } |
| 760 | } |
| 761 | cur_quick_frame_pc_ = return_pc; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 762 | uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size; |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 763 | cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 764 | cur_depth_++; |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 765 | method = cur_quick_frame_->AsMirrorPtr(); |
jeffhao | 6641ea1 | 2013-01-02 18:13:42 -0800 | [diff] [blame] | 766 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 767 | } else if (cur_shadow_frame_ != NULL) { |
| 768 | do { |
| 769 | SanityCheckFrame(); |
| 770 | bool should_continue = VisitFrame(); |
| 771 | if (UNLIKELY(!should_continue)) { |
| 772 | return; |
| 773 | } |
| 774 | cur_depth_++; |
| 775 | cur_shadow_frame_ = cur_shadow_frame_->GetLink(); |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 776 | } while (cur_shadow_frame_ != NULL); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 777 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 778 | if (include_transitions) { |
| 779 | bool should_continue = VisitFrame(); |
| 780 | if (!should_continue) { |
| 781 | return; |
| 782 | } |
| 783 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 784 | cur_depth_++; |
| 785 | } |
| 786 | if (num_frames_ != 0) { |
| 787 | CHECK_EQ(cur_depth_, num_frames_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 788 | } |
| 789 | } |
| 790 | |
Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 791 | void JavaFrameRootInfo::Describe(std::ostream& os) const { |
| 792 | const StackVisitor* visitor = stack_visitor_; |
| 793 | CHECK(visitor != nullptr); |
| 794 | os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" << |
| 795 | visitor->DescribeLocation() << " vreg=" << vreg_; |
| 796 | } |
| 797 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 798 | } // namespace art |