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