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" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 21 | #include "mirror/art_method-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 22 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 23 | #include "mirror/object.h" |
| 24 | #include "mirror/object-inl.h" |
| 25 | #include "mirror/object_array-inl.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 26 | #include "quick/quick_method_frame_info.h" |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 27 | #include "runtime.h" |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 28 | #include "thread.h" |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 29 | #include "thread_list.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 30 | #include "throw_location.h" |
Mathieu Chartier | 4e30541 | 2014-02-19 10:54:44 -0800 | [diff] [blame] | 31 | #include "verify_object-inl.h" |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 32 | #include "vmap_table.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 33 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 34 | namespace art { |
| 35 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 36 | mirror::Object* ShadowFrame::GetThisObject() const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 37 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 38 | if (m->IsStatic()) { |
| 39 | return NULL; |
| 40 | } else if (m->IsNative()) { |
| 41 | return GetVRegReference(0); |
| 42 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 43 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 44 | CHECK(code_item != NULL) << PrettyMethod(m); |
| 45 | uint16_t reg = code_item->registers_size_ - code_item->ins_size_; |
| 46 | return GetVRegReference(reg); |
| 47 | } |
| 48 | } |
| 49 | |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 50 | mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 51 | mirror::ArtMethod* m = GetMethod(); |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 52 | if (m->IsStatic()) { |
| 53 | return NULL; |
| 54 | } else { |
Jeff Hao | 8d44885 | 2013-06-03 17:26:19 -0700 | [diff] [blame] | 55 | return GetVRegReference(NumberOfVRegs() - num_ins); |
Jeff Hao | e701f48 | 2013-05-24 11:50:49 -0700 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 59 | ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const { |
| 60 | return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC()); |
| 61 | } |
| 62 | |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 63 | size_t ManagedStack::NumJniShadowFrameReferences() const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 64 | size_t count = 0; |
| 65 | for (const ManagedStack* current_fragment = this; current_fragment != NULL; |
| 66 | current_fragment = current_fragment->GetLink()) { |
| 67 | for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; |
| 68 | current_frame = current_frame->GetLink()) { |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 69 | if (current_frame->GetMethod()->IsNative()) { |
| 70 | // The JNI ShadowFrame only contains references. (For indirect reference.) |
| 71 | count += current_frame->NumberOfVRegs(); |
| 72 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 73 | } |
| 74 | } |
| 75 | return count; |
| 76 | } |
| 77 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 78 | bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 79 | for (const ManagedStack* current_fragment = this; current_fragment != NULL; |
| 80 | current_fragment = current_fragment->GetLink()) { |
| 81 | for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; |
| 82 | current_frame = current_frame->GetLink()) { |
| 83 | if (current_frame->Contains(shadow_frame_entry)) { |
| 84 | return true; |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | return false; |
| 89 | } |
| 90 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 91 | StackVisitor::StackVisitor(Thread* thread, Context* context) |
| 92 | : thread_(thread), cur_shadow_frame_(NULL), |
| 93 | cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0), |
| 94 | context_(context) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 95 | DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 96 | } |
| 97 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 98 | StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames) |
| 99 | : thread_(thread), cur_shadow_frame_(NULL), |
| 100 | cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(num_frames), cur_depth_(0), |
| 101 | context_(context) { |
| 102 | DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; |
| 103 | } |
| 104 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 105 | uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 106 | if (cur_shadow_frame_ != NULL) { |
| 107 | return cur_shadow_frame_->GetDexPC(); |
| 108 | } else if (cur_quick_frame_ != NULL) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 109 | return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 110 | } else { |
| 111 | return 0; |
| 112 | } |
| 113 | } |
| 114 | |
Sebastien Hertz | fcfc8a7 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 115 | extern "C" mirror::Object* artQuickGetProxyThisObject(StackReference<mirror::ArtMethod>* sp) |
| 116 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 117 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 118 | mirror::Object* StackVisitor::GetThisObject() const { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 119 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 120 | if (m->IsStatic()) { |
| 121 | return NULL; |
| 122 | } else if (m->IsNative()) { |
| 123 | if (cur_quick_frame_ != NULL) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 124 | HandleScope* hs = reinterpret_cast<HandleScope*>( |
| 125 | reinterpret_cast<char*>(cur_quick_frame_) + m->GetHandleScopeOffsetInBytes()); |
| 126 | return hs->GetReference(0); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 127 | } else { |
| 128 | return cur_shadow_frame_->GetVRegReference(0); |
| 129 | } |
Sebastien Hertz | fcfc8a7 | 2014-11-25 16:30:53 +0100 | [diff] [blame] | 130 | } else if (m->IsProxyMethod()) { |
| 131 | if (cur_quick_frame_ != nullptr) { |
| 132 | return artQuickGetProxyThisObject(cur_quick_frame_); |
| 133 | } else { |
| 134 | return cur_shadow_frame_->GetVRegReference(0); |
| 135 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 136 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 137 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 138 | if (code_item == NULL) { |
Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 139 | UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: " |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 140 | << PrettyMethod(m); |
Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 141 | return nullptr; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 142 | } else { |
| 143 | uint16_t reg = code_item->registers_size_ - code_item->ins_size_; |
| 144 | return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg)); |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 149 | size_t StackVisitor::GetNativePcOffset() const { |
| 150 | DCHECK(!IsShadowFrame()); |
| 151 | return GetMethod()->NativePcOffset(cur_quick_frame_pc_); |
| 152 | } |
| 153 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 154 | bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, |
| 155 | uint32_t* val) const { |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 156 | if (cur_quick_frame_ != nullptr) { |
| 157 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 158 | DCHECK(m == GetMethod()); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 159 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 160 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 161 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 162 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 163 | uint32_t vmap_offset; |
| 164 | // TODO: IsInContext stops before spotting floating point registers. |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 165 | if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 166 | bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 167 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 168 | uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); |
| 169 | uintptr_t ptr_val; |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 170 | bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val); |
| 171 | if (!success) { |
| 172 | return false; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 173 | } |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 174 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 175 | if (target64) { |
buzbee | b5860fb | 2014-06-21 15:31:01 -0700 | [diff] [blame] | 176 | bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg); |
| 177 | bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg); |
| 178 | int64_t value_long = static_cast<int64_t>(ptr_val); |
| 179 | if (wide_lo) { |
| 180 | ptr_val = static_cast<uintptr_t>(value_long & 0xFFFFFFFF); |
| 181 | } else if (wide_hi) { |
| 182 | ptr_val = static_cast<uintptr_t>(value_long >> 32); |
| 183 | } |
| 184 | } |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 185 | *val = ptr_val; |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 186 | return true; |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 187 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 188 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 189 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 190 | // its instructions? |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 191 | *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 192 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 193 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 194 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 195 | } else { |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 196 | *val = cur_shadow_frame_->GetVReg(vreg); |
| 197 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 201 | bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, |
| 202 | VRegKind kind_hi, uint64_t* val) const { |
| 203 | if (kind_lo == kLongLoVReg) { |
| 204 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 205 | } else if (kind_lo == kDoubleLoVReg) { |
| 206 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 207 | } else { |
| 208 | LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; |
| 209 | } |
| 210 | if (cur_quick_frame_ != nullptr) { |
| 211 | DCHECK(context_ != nullptr); // You can't reliably read registers without a context. |
| 212 | DCHECK(m == GetMethod()); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 213 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 214 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 215 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 216 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 217 | uint32_t vmap_offset_lo, vmap_offset_hi; |
| 218 | // TODO: IsInContext stops before spotting floating point registers. |
| 219 | if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) && |
| 220 | vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) { |
| 221 | bool is_float = (kind_lo == kDoubleLoVReg); |
| 222 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 223 | uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo); |
| 224 | uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); |
| 225 | uintptr_t ptr_val_lo, ptr_val_hi; |
| 226 | bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo); |
| 227 | success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi); |
| 228 | if (!success) { |
| 229 | return false; |
| 230 | } |
| 231 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 232 | if (target64) { |
| 233 | int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo); |
| 234 | int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi); |
| 235 | ptr_val_lo = static_cast<uintptr_t>(value_long_lo & 0xFFFFFFFF); |
| 236 | ptr_val_hi = static_cast<uintptr_t>(value_long_hi >> 32); |
| 237 | } |
| 238 | *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo); |
| 239 | return true; |
| 240 | } else { |
| 241 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 242 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 243 | // its instructions? |
| 244 | uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 245 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 246 | *val = *reinterpret_cast<uint64_t*>(addr); |
| 247 | return true; |
| 248 | } |
| 249 | } else { |
| 250 | *val = cur_shadow_frame_->GetVRegLong(vreg); |
| 251 | return true; |
| 252 | } |
| 253 | } |
| 254 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 255 | 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] | 256 | VRegKind kind) { |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 257 | if (cur_quick_frame_ != nullptr) { |
| 258 | DCHECK(context_ != nullptr); // You can't reliably write registers without a context. |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 259 | DCHECK(m == GetMethod()); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 260 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 261 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 262 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 263 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 264 | uint32_t vmap_offset; |
| 265 | // TODO: IsInContext stops before spotting floating point registers. |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 266 | if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 267 | bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 268 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 269 | const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 270 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
buzbee | b5860fb | 2014-06-21 15:31:01 -0700 | [diff] [blame] | 271 | // Deal with 32 or 64-bit wide registers in a way that builds on all targets. |
| 272 | if (target64) { |
| 273 | bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg); |
| 274 | bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg); |
| 275 | if (wide_lo || wide_hi) { |
| 276 | uintptr_t old_reg_val; |
| 277 | bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val); |
| 278 | if (!success) { |
| 279 | return false; |
| 280 | } |
| 281 | uint64_t new_vreg_portion = static_cast<uint64_t>(new_value); |
| 282 | uint64_t old_reg_val_as_wide = static_cast<uint64_t>(old_reg_val); |
| 283 | uint64_t mask = 0xffffffff; |
| 284 | if (wide_lo) { |
| 285 | mask = mask << 32; |
| 286 | } else { |
| 287 | new_vreg_portion = new_vreg_portion << 32; |
| 288 | } |
| 289 | new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion); |
| 290 | } |
| 291 | } |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 292 | if (is_float) { |
| 293 | return SetFPR(reg, new_value); |
| 294 | } else { |
| 295 | return SetGPR(reg, new_value); |
| 296 | } |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 297 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 298 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 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 | *addr = new_value; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 304 | return true; |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 305 | } |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 306 | } else { |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 307 | cur_shadow_frame_->SetVReg(vreg, new_value); |
| 308 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 309 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 312 | bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value, |
| 313 | VRegKind kind_lo, VRegKind kind_hi) { |
| 314 | if (kind_lo == kLongLoVReg) { |
| 315 | DCHECK_EQ(kind_hi, kLongHiVReg); |
| 316 | } else if (kind_lo == kDoubleLoVReg) { |
| 317 | DCHECK_EQ(kind_hi, kDoubleHiVReg); |
| 318 | } else { |
| 319 | LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; |
| 320 | } |
| 321 | if (cur_quick_frame_ != nullptr) { |
| 322 | DCHECK(context_ != nullptr); // You can't reliably write registers without a context. |
| 323 | DCHECK(m == GetMethod()); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 324 | const void* code_pointer = m->GetQuickOatCodePointer(sizeof(void*)); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 325 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | c934e48 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 326 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 327 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 328 | uint32_t vmap_offset_lo, vmap_offset_hi; |
| 329 | // TODO: IsInContext stops before spotting floating point registers. |
| 330 | if (vmap_table.IsInContext(vreg, kind_lo, &vmap_offset_lo) && |
| 331 | vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) { |
| 332 | bool is_float = (kind_lo == kDoubleLoVReg); |
| 333 | uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); |
| 334 | uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo); |
| 335 | uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); |
| 336 | uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF); |
| 337 | uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32); |
| 338 | bool target64 = Is64BitInstructionSet(kRuntimeISA); |
| 339 | // Deal with 32 or 64-bit wide registers in a way that builds on all targets. |
| 340 | if (target64) { |
| 341 | uintptr_t old_reg_val_lo, old_reg_val_hi; |
| 342 | bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo); |
| 343 | success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi); |
| 344 | if (!success) { |
| 345 | return false; |
| 346 | } |
| 347 | uint64_t new_vreg_portion_lo = static_cast<uint64_t>(new_value_lo); |
| 348 | uint64_t new_vreg_portion_hi = static_cast<uint64_t>(new_value_hi) << 32; |
| 349 | uint64_t old_reg_val_lo_as_wide = static_cast<uint64_t>(old_reg_val_lo); |
| 350 | uint64_t old_reg_val_hi_as_wide = static_cast<uint64_t>(old_reg_val_hi); |
| 351 | uint64_t mask_lo = static_cast<uint64_t>(0xffffffff) << 32; |
| 352 | uint64_t mask_hi = 0xffffffff; |
| 353 | new_value_lo = static_cast<uintptr_t>((old_reg_val_lo_as_wide & mask_lo) | new_vreg_portion_lo); |
| 354 | new_value_hi = static_cast<uintptr_t>((old_reg_val_hi_as_wide & mask_hi) | new_vreg_portion_hi); |
| 355 | } |
| 356 | bool success = is_float ? SetFPR(reg_lo, new_value_lo) : SetGPR(reg_lo, new_value_lo); |
| 357 | success &= is_float ? SetFPR(reg_hi, new_value_hi) : SetGPR(reg_hi, new_value_hi); |
| 358 | return success; |
| 359 | } else { |
| 360 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 361 | DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be NULL or how would we compile |
| 362 | // its instructions? |
| 363 | uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(), |
| 364 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); |
| 365 | *reinterpret_cast<uint64_t*>(addr) = new_value; |
| 366 | return true; |
| 367 | } |
| 368 | } else { |
| 369 | cur_shadow_frame_->SetVRegLong(vreg, new_value); |
| 370 | return true; |
| 371 | } |
| 372 | } |
| 373 | |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 374 | uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const { |
| 375 | DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; |
| 376 | return context_->GetGPRAddress(reg); |
| 377 | } |
| 378 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 379 | bool StackVisitor::GetGPR(uint32_t reg, uintptr_t* val) const { |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 380 | DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 381 | return context_->GetGPR(reg, val); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 384 | bool StackVisitor::SetGPR(uint32_t reg, uintptr_t value) { |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 385 | DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 386 | return context_->SetGPR(reg, value); |
| 387 | } |
| 388 | |
| 389 | bool StackVisitor::GetFPR(uint32_t reg, uintptr_t* val) const { |
| 390 | DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; |
| 391 | return context_->GetFPR(reg, val); |
| 392 | } |
| 393 | |
| 394 | bool StackVisitor::SetFPR(uint32_t reg, uintptr_t value) { |
| 395 | DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; |
| 396 | return context_->SetFPR(reg, value); |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 397 | } |
| 398 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 399 | uintptr_t StackVisitor::GetReturnPc() const { |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 400 | byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame()); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 401 | DCHECK(sp != NULL); |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 402 | byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 403 | return *reinterpret_cast<uintptr_t*>(pc_addr); |
| 404 | } |
| 405 | |
| 406 | void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) { |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 407 | byte* sp = reinterpret_cast<byte*>(GetCurrentQuickFrame()); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 408 | CHECK(sp != NULL); |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 409 | byte* pc_addr = sp + GetMethod()->GetReturnPcOffsetInBytes(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 410 | *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc; |
| 411 | } |
| 412 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 413 | size_t StackVisitor::ComputeNumFrames(Thread* thread) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 414 | struct NumFramesVisitor : public StackVisitor { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 415 | explicit NumFramesVisitor(Thread* thread) |
| 416 | : StackVisitor(thread, NULL), frames(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 417 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 418 | bool VisitFrame() OVERRIDE { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 419 | frames++; |
| 420 | return true; |
| 421 | } |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 422 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 423 | size_t frames; |
| 424 | }; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 425 | NumFramesVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 426 | visitor.WalkStack(true); |
| 427 | return visitor.frames; |
| 428 | } |
| 429 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 430 | bool StackVisitor::GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc) { |
| 431 | struct HasMoreFramesVisitor : public StackVisitor { |
| 432 | explicit HasMoreFramesVisitor(Thread* thread, size_t num_frames, size_t frame_height) |
| 433 | : StackVisitor(thread, nullptr, num_frames), frame_height_(frame_height), |
| 434 | found_frame_(false), has_more_frames_(false), next_method_(nullptr), next_dex_pc_(0) { |
| 435 | } |
| 436 | |
| 437 | bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 438 | if (found_frame_) { |
| 439 | mirror::ArtMethod* method = GetMethod(); |
| 440 | if (method != nullptr && !method->IsRuntimeMethod()) { |
| 441 | has_more_frames_ = true; |
| 442 | next_method_ = method; |
| 443 | next_dex_pc_ = GetDexPc(); |
| 444 | return false; // End stack walk once next method is found. |
| 445 | } |
| 446 | } else if (GetFrameHeight() == frame_height_) { |
| 447 | found_frame_ = true; |
| 448 | } |
| 449 | return true; |
| 450 | } |
| 451 | |
| 452 | size_t frame_height_; |
| 453 | bool found_frame_; |
| 454 | bool has_more_frames_; |
| 455 | mirror::ArtMethod* next_method_; |
| 456 | uint32_t next_dex_pc_; |
| 457 | }; |
| 458 | HasMoreFramesVisitor visitor(thread_, GetNumFrames(), GetFrameHeight()); |
| 459 | visitor.WalkStack(true); |
| 460 | *next_method = visitor.next_method_; |
| 461 | *next_dex_pc = visitor.next_dex_pc_; |
| 462 | return visitor.has_more_frames_; |
| 463 | } |
| 464 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 465 | void StackVisitor::DescribeStack(Thread* thread) { |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 466 | struct DescribeStackVisitor : public StackVisitor { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 467 | explicit DescribeStackVisitor(Thread* thread) |
| 468 | : StackVisitor(thread, NULL) {} |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 469 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 470 | bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 471 | LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation(); |
| 472 | return true; |
| 473 | } |
| 474 | }; |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 475 | DescribeStackVisitor visitor(thread); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 476 | visitor.WalkStack(true); |
| 477 | } |
| 478 | |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 479 | std::string StackVisitor::DescribeLocation() const { |
| 480 | std::string result("Visiting method '"); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 481 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 482 | if (m == NULL) { |
| 483 | return "upcall"; |
| 484 | } |
| 485 | result += PrettyMethod(m); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 486 | result += StringPrintf("' at dex PC 0x%04x", GetDexPc()); |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 487 | if (!IsShadowFrame()) { |
| 488 | result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc())); |
| 489 | } |
| 490 | return result; |
| 491 | } |
| 492 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 493 | static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread, |
| 494 | uint32_t depth) { |
| 495 | CHECK_LT(depth, thread->GetInstrumentationStack()->size()); |
| 496 | return thread->GetInstrumentationStack()->at(depth); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 497 | } |
| 498 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 499 | void StackVisitor::SanityCheckFrame() const { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 500 | if (kIsDebugBuild) { |
| 501 | mirror::ArtMethod* method = GetMethod(); |
Mathieu Chartier | 119c6bd | 2014-05-09 14:11:47 -0700 | [diff] [blame] | 502 | CHECK_EQ(method->GetClass(), mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 503 | if (cur_quick_frame_ != nullptr) { |
| 504 | method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_); |
| 505 | // Frame sanity. |
| 506 | size_t frame_size = method->GetFrameSizeInBytes(); |
| 507 | CHECK_NE(frame_size, 0u); |
Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 508 | // A rough guess at an upper size we expect to see for a frame. |
| 509 | // 256 registers |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 510 | // 2 words HandleScope overhead |
Andreas Gampe | 5b417b9 | 2014-03-10 14:18:35 -0700 | [diff] [blame] | 511 | // 3+3 register spills |
| 512 | // TODO: this seems architecture specific for the case of JNI frames. |
Brian Carlstrom | ed08bd4 | 2014-03-19 18:34:17 -0700 | [diff] [blame] | 513 | // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong. |
| 514 | // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word); |
| 515 | const size_t kMaxExpectedFrameSize = 2 * KB; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 516 | CHECK_LE(frame_size, kMaxExpectedFrameSize); |
| 517 | size_t return_pc_offset = method->GetReturnPcOffsetInBytes(); |
| 518 | CHECK_LT(return_pc_offset, frame_size); |
| 519 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 520 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | void StackVisitor::WalkStack(bool include_transitions) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 524 | DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 525 | CHECK_EQ(cur_depth_, 0U); |
| 526 | bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled(); |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 527 | uint32_t instrumentation_stack_depth = 0; |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 528 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 529 | for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 530 | current_fragment = current_fragment->GetLink()) { |
| 531 | cur_shadow_frame_ = current_fragment->GetTopShadowFrame(); |
| 532 | cur_quick_frame_ = current_fragment->GetTopQuickFrame(); |
| 533 | cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc(); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 534 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 535 | if (cur_quick_frame_ != NULL) { // Handle quick stack frames. |
| 536 | // Can't be both a shadow and a quick fragment. |
| 537 | DCHECK(current_fragment->GetTopShadowFrame() == NULL); |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 538 | mirror::ArtMethod* method = cur_quick_frame_->AsMirrorPtr(); |
jeffhao | 6641ea1 | 2013-01-02 18:13:42 -0800 | [diff] [blame] | 539 | while (method != NULL) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 540 | SanityCheckFrame(); |
| 541 | bool should_continue = VisitFrame(); |
| 542 | if (UNLIKELY(!should_continue)) { |
| 543 | return; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 544 | } |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 545 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 546 | if (context_ != NULL) { |
| 547 | context_->FillCalleeSaves(*this); |
| 548 | } |
| 549 | size_t frame_size = method->GetFrameSizeInBytes(); |
| 550 | // Compute PC for next stack frame from return PC. |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 551 | size_t return_pc_offset = method->GetReturnPcOffsetInBytes(frame_size); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 552 | byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset; |
| 553 | uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 554 | if (UNLIKELY(exit_stubs_installed)) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 555 | // While profiling, the return pc is restored from the side stack, except when walking |
| 556 | // the stack for an exception where the side stack will be unwound in VisitFrame. |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 557 | if (GetQuickInstrumentationExitPc() == return_pc) { |
Sebastien Hertz | 74e256b | 2013-10-04 10:40:37 +0200 | [diff] [blame] | 558 | const instrumentation::InstrumentationStackFrame& instrumentation_frame = |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 559 | GetInstrumentationStackFrame(thread_, instrumentation_stack_depth); |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 560 | instrumentation_stack_depth++; |
Jeff Hao | fb2802d | 2013-07-24 13:53:05 -0700 | [diff] [blame] | 561 | if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) { |
| 562 | // Skip runtime save all callee frames which are used to deliver exceptions. |
| 563 | } else if (instrumentation_frame.interpreter_entry_) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 564 | mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); |
Jeff Hao | fb2802d | 2013-07-24 13:53:05 -0700 | [diff] [blame] | 565 | CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: " |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 566 | << PrettyMethod(GetMethod()); |
Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 567 | } else if (instrumentation_frame.method_ != GetMethod()) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 568 | LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_) |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 569 | << " Found: " << PrettyMethod(GetMethod()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 570 | } |
| 571 | if (num_frames_ != 0) { |
| 572 | // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite |
| 573 | // recursion. |
| 574 | CHECK(instrumentation_frame.frame_id_ == GetFrameId()) |
| 575 | << "Expected: " << instrumentation_frame.frame_id_ |
| 576 | << " Found: " << GetFrameId(); |
| 577 | } |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 578 | return_pc = instrumentation_frame.return_pc_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 579 | } |
| 580 | } |
| 581 | cur_quick_frame_pc_ = return_pc; |
| 582 | byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size; |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 583 | cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 584 | cur_depth_++; |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 585 | method = cur_quick_frame_->AsMirrorPtr(); |
jeffhao | 6641ea1 | 2013-01-02 18:13:42 -0800 | [diff] [blame] | 586 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 587 | } else if (cur_shadow_frame_ != NULL) { |
| 588 | do { |
| 589 | SanityCheckFrame(); |
| 590 | bool should_continue = VisitFrame(); |
| 591 | if (UNLIKELY(!should_continue)) { |
| 592 | return; |
| 593 | } |
| 594 | cur_depth_++; |
| 595 | cur_shadow_frame_ = cur_shadow_frame_->GetLink(); |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 596 | } while (cur_shadow_frame_ != NULL); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 597 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 598 | if (include_transitions) { |
| 599 | bool should_continue = VisitFrame(); |
| 600 | if (!should_continue) { |
| 601 | return; |
| 602 | } |
| 603 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 604 | cur_depth_++; |
| 605 | } |
| 606 | if (num_frames_ != 0) { |
| 607 | CHECK_EQ(cur_depth_, num_frames_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 608 | } |
| 609 | } |
| 610 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 611 | } // namespace art |