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 | #ifndef ART_SRC_STACK_H_ |
| 18 | #define ART_SRC_STACK_H_ |
| 19 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 20 | #include "dex_file.h" |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 21 | #include "heap.h" |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 22 | #include "jni.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 23 | #include "macros.h" |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 24 | #include "oat/runtime/context.h" |
| 25 | #include "trace.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 26 | |
| 27 | #include <stdint.h> |
| 28 | |
| 29 | namespace art { |
| 30 | |
| 31 | class Method; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 32 | class Object; |
| 33 | class ShadowFrame; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 34 | class StackIndirectReferenceTable; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 35 | class ScopedObjectAccess; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 36 | class Thread; |
| 37 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 38 | class ShadowFrame { |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 39 | public: |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 40 | // Number of references contained within this shadow frame |
| 41 | uint32_t NumberOfReferences() const { |
| 42 | return number_of_references_; |
| 43 | } |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 44 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 45 | void SetNumberOfReferences(uint32_t number_of_references) { |
| 46 | number_of_references_ = number_of_references; |
| 47 | } |
| 48 | |
| 49 | // Caller dex pc |
| 50 | uint32_t GetDexPC() const { |
| 51 | return dex_pc_; |
| 52 | } |
| 53 | |
| 54 | void SetDexPC(uint32_t dex_pc) { |
| 55 | dex_pc_ = dex_pc; |
| 56 | } |
| 57 | |
| 58 | // Link to previous shadow frame or NULL |
| 59 | ShadowFrame* GetLink() const { |
| 60 | return link_; |
| 61 | } |
| 62 | |
| 63 | void SetLink(ShadowFrame* frame) { |
| 64 | DCHECK_NE(this, frame); |
| 65 | link_ = frame; |
| 66 | } |
| 67 | |
| 68 | Object* GetReference(size_t i) const { |
| 69 | DCHECK_LT(i, number_of_references_); |
| 70 | return references_[i]; |
| 71 | } |
| 72 | |
| 73 | void SetReference(size_t i, Object* object) { |
| 74 | DCHECK_LT(i, number_of_references_); |
| 75 | references_[i] = object; |
| 76 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 77 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 78 | Method* GetMethod() const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 79 | DCHECK_NE(method_, static_cast<void*>(NULL)); |
| 80 | return method_; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 83 | void SetMethod(Method* method) { |
| 84 | DCHECK_NE(method, static_cast<void*>(NULL)); |
| 85 | method_ = method; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 88 | bool Contains(Object** shadow_frame_entry) const { |
| 89 | return ((&references_[0] <= shadow_frame_entry) && |
| 90 | (shadow_frame_entry <= (&references_[number_of_references_ - 1]))); |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 93 | void VisitRoots(Heap::RootVisitor* visitor, void* arg) { |
| 94 | size_t num_refs = NumberOfReferences(); |
| 95 | for (size_t j = 0; j < num_refs; j++) { |
| 96 | Object* object = GetReference(j); |
| 97 | if (object != NULL) { |
| 98 | visitor(object, arg); |
| 99 | } |
| 100 | } |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 103 | // Offset of link within shadow frame |
| 104 | static size_t LinkOffset() { |
| 105 | return OFFSETOF_MEMBER(ShadowFrame, link_); |
| 106 | } |
| 107 | |
| 108 | // Offset of method within shadow frame |
| 109 | static size_t MethodOffset() { |
| 110 | return OFFSETOF_MEMBER(ShadowFrame, method_); |
| 111 | } |
| 112 | |
| 113 | // Offset of dex pc within shadow frame |
| 114 | static size_t DexPCOffset() { |
| 115 | return OFFSETOF_MEMBER(ShadowFrame, dex_pc_); |
| 116 | } |
| 117 | |
| 118 | // Offset of length within shadow frame |
| 119 | static size_t NumberOfReferencesOffset() { |
| 120 | return OFFSETOF_MEMBER(ShadowFrame, number_of_references_); |
| 121 | } |
| 122 | |
| 123 | // Offset of references within shadow frame |
| 124 | static size_t ReferencesOffset() { |
| 125 | return OFFSETOF_MEMBER(ShadowFrame, references_); |
| 126 | } |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 127 | |
| 128 | private: |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 129 | // ShadowFrame should be allocated by the generated code directly. |
| 130 | // We should not create new shadow stack in the runtime support function. |
| 131 | ~ShadowFrame() {} |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 132 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 133 | uint32_t number_of_references_; |
| 134 | ShadowFrame* link_; |
| 135 | Method* method_; |
| 136 | uint32_t dex_pc_; |
| 137 | Object* references_[]; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 138 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 139 | DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame); |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 142 | // The managed stack is used to record fragments of managed code stacks. Managed code stacks |
| 143 | // may either be shadow frames or lists of frames using fixed frame sizes. Transition records are |
| 144 | // necessary for transitions between code using different frame layouts and transitions into native |
| 145 | // code. |
| 146 | class PACKED ManagedStack { |
| 147 | public: |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 148 | ManagedStack() |
| 149 | : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 150 | void PushManagedStackFragment(ManagedStack* fragment); |
| 151 | void PopManagedStackFragment(const ManagedStack& record); |
| 152 | |
| 153 | ManagedStack* GetLink() const { |
| 154 | return link_; |
| 155 | } |
| 156 | |
| 157 | Method** GetTopQuickFrame() const { |
| 158 | return top_quick_frame_; |
| 159 | } |
| 160 | |
| 161 | void SetTopQuickFrame(Method** top) { |
| 162 | top_quick_frame_ = top; |
| 163 | } |
| 164 | |
| 165 | uintptr_t GetTopQuickFramePc() const { |
| 166 | return top_quick_frame_pc_; |
| 167 | } |
| 168 | |
| 169 | void SetTopQuickFramePc(uintptr_t pc) { |
| 170 | top_quick_frame_pc_ = pc; |
| 171 | } |
| 172 | |
| 173 | static size_t TopQuickFrameOffset() { |
| 174 | return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_); |
| 175 | } |
| 176 | |
| 177 | static size_t TopQuickFramePcOffset() { |
| 178 | return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_pc_); |
| 179 | } |
| 180 | |
| 181 | ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) { |
| 182 | ShadowFrame* old_frame = top_shadow_frame_; |
| 183 | top_shadow_frame_ = new_top_frame; |
| 184 | new_top_frame->SetLink(old_frame); |
| 185 | return old_frame; |
| 186 | } |
| 187 | |
| 188 | ShadowFrame* PopShadowFrame() { |
| 189 | CHECK(top_shadow_frame_ != NULL); |
| 190 | ShadowFrame* frame = top_shadow_frame_; |
| 191 | top_shadow_frame_ = frame->GetLink(); |
| 192 | return frame; |
| 193 | } |
| 194 | |
| 195 | ShadowFrame* GetTopShadowFrame() const { |
| 196 | return top_shadow_frame_; |
| 197 | } |
| 198 | |
| 199 | static size_t TopShadowFrameOffset() { |
| 200 | return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_); |
| 201 | } |
| 202 | |
| 203 | size_t NumShadowFrameReferences() const; |
| 204 | |
| 205 | bool ShadowFramesContain(Object** shadow_frame_entry) const; |
| 206 | |
| 207 | private: |
| 208 | ManagedStack* link_; |
| 209 | ShadowFrame* top_shadow_frame_; |
| 210 | Method** top_quick_frame_; |
| 211 | uintptr_t top_quick_frame_pc_; |
| 212 | }; |
| 213 | |
| 214 | class StackVisitor { |
| 215 | protected: |
| 216 | StackVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack, |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 217 | Context* context) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 218 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 219 | : stack_start_(stack), trace_stack_(trace_stack), cur_shadow_frame_(NULL), |
| 220 | cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0), |
| 221 | context_(context) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 222 | |
| 223 | public: |
| 224 | virtual ~StackVisitor() {} |
| 225 | |
| 226 | // Return 'true' if we should continue to visit more frames, 'false' to stop. |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 227 | virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 228 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 229 | void WalkStack(bool include_transitions = false) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 230 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 231 | |
| 232 | Method* GetMethod() const { |
| 233 | if (cur_shadow_frame_ != NULL) { |
| 234 | return cur_shadow_frame_->GetMethod(); |
| 235 | } else if (cur_quick_frame_ != NULL) { |
| 236 | return *cur_quick_frame_; |
| 237 | } else { |
| 238 | return NULL; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | bool IsShadowFrame() const { |
| 243 | return cur_shadow_frame_ != NULL; |
| 244 | } |
| 245 | |
| 246 | uintptr_t LoadCalleeSave(int num, size_t frame_size) const { |
| 247 | // Callee saves are held at the top of the frame |
| 248 | Method* method = GetMethod(); |
| 249 | DCHECK(method != NULL); |
| 250 | byte* save_addr = |
| 251 | reinterpret_cast<byte*>(cur_quick_frame_) + frame_size - ((num + 1) * kPointerSize); |
| 252 | #if defined(__i386__) |
| 253 | save_addr -= kPointerSize; // account for return address |
| 254 | #endif |
| 255 | return *reinterpret_cast<uintptr_t*>(save_addr); |
| 256 | } |
| 257 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 258 | uint32_t GetDexPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 259 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 260 | // Returns the height of the stack in the managed stack frames, including transitions. |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 261 | size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 262 | return GetNumFrames() - cur_depth_; |
| 263 | } |
| 264 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 265 | // Returns a frame ID for JDWP use, starting from 1. |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 266 | size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 267 | return GetFrameHeight() + 1; |
| 268 | } |
| 269 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 270 | size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 271 | if (num_frames_ == 0) { |
| 272 | num_frames_ = ComputeNumFrames(); |
| 273 | } |
| 274 | return num_frames_; |
| 275 | } |
| 276 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 277 | uint32_t GetVReg(Method* m, int vreg) const |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 278 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 279 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 280 | void SetVReg(Method* m, int vreg, uint32_t new_value) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 281 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 282 | |
| 283 | uintptr_t GetGPR(uint32_t reg) const; |
| 284 | |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 285 | uint32_t GetVReg(Method** cur_quick_frame, const DexFile::CodeItem* code_item, |
| 286 | uint32_t core_spills, uint32_t fp_spills, size_t frame_size, int vreg) const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 287 | int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg); |
Ian Rogers | 0ec569a | 2012-07-01 16:43:46 -0700 | [diff] [blame] | 288 | DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame()); |
| 289 | byte* vreg_addr = reinterpret_cast<byte*>(cur_quick_frame) + offset; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 290 | return *reinterpret_cast<uint32_t*>(vreg_addr); |
| 291 | } |
| 292 | |
| 293 | uintptr_t GetReturnPc() const; |
| 294 | |
| 295 | void SetReturnPc(uintptr_t new_ret_pc); |
| 296 | |
| 297 | /* |
| 298 | * Return sp-relative offset for a Dalvik virtual register, compiler |
| 299 | * spill or Method* in bytes using Method*. |
| 300 | * Note that (reg >= 0) refers to a Dalvik register, (reg == -2) |
| 301 | * denotes Method* and (reg <= -3) denotes a compiler temp. |
| 302 | * |
| 303 | * +------------------------+ |
| 304 | * | IN[ins-1] | {Note: resides in caller's frame} |
| 305 | * | . | |
| 306 | * | IN[0] | |
| 307 | * | caller's Method* | |
| 308 | * +========================+ {Note: start of callee's frame} |
| 309 | * | core callee-save spill | {variable sized} |
| 310 | * +------------------------+ |
| 311 | * | fp callee-save spill | |
| 312 | * +------------------------+ |
| 313 | * | filler word | {For compatibility, if V[locals-1] used as wide |
| 314 | * +------------------------+ |
| 315 | * | V[locals-1] | |
| 316 | * | V[locals-2] | |
| 317 | * | . | |
| 318 | * | . | ... (reg == 2) |
| 319 | * | V[1] | ... (reg == 1) |
| 320 | * | V[0] | ... (reg == 0) <---- "locals_start" |
| 321 | * +------------------------+ |
| 322 | * | Compiler temps | ... (reg == -2) |
| 323 | * | | ... (reg == -3) |
| 324 | * | | ... (reg == -4) |
| 325 | * +------------------------+ |
| 326 | * | stack alignment padding| {0 to (kStackAlignWords-1) of padding} |
| 327 | * +------------------------+ |
| 328 | * | OUT[outs-1] | |
| 329 | * | OUT[outs-2] | |
| 330 | * | . | |
| 331 | * | OUT[0] | |
| 332 | * | curMethod* | ... (reg == -1) <<== sp, 16-byte aligned |
| 333 | * +========================+ |
| 334 | */ |
| 335 | static int GetVRegOffset(const DexFile::CodeItem* code_item, |
| 336 | uint32_t core_spills, uint32_t fp_spills, |
| 337 | size_t frame_size, int reg) { |
| 338 | DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U); |
| 339 | int num_spills = __builtin_popcount(core_spills) + __builtin_popcount(fp_spills) + 1; // Filler. |
| 340 | int num_ins = code_item->ins_size_; |
| 341 | int num_regs = code_item->registers_size_ - num_ins; |
| 342 | int locals_start = frame_size - ((num_spills + num_regs) * sizeof(uint32_t)); |
| 343 | if (reg == -2) { |
| 344 | return 0; // Method* |
| 345 | } else if (reg <= -3) { |
| 346 | return locals_start - ((reg + 1) * sizeof(uint32_t)); // Compiler temp. |
| 347 | } else if (reg < num_regs) { |
| 348 | return locals_start + (reg * sizeof(uint32_t)); // Dalvik local reg. |
| 349 | } else { |
| 350 | return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + sizeof(uint32_t); // Dalvik in. |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | uintptr_t GetCurrentQuickFramePc() const { |
| 355 | return cur_quick_frame_pc_; |
| 356 | } |
| 357 | |
| 358 | Method** GetCurrentQuickFrame() const { |
| 359 | return cur_quick_frame_; |
| 360 | } |
| 361 | |
| 362 | ShadowFrame* GetCurrentShadowFrame() const { |
| 363 | return cur_shadow_frame_; |
| 364 | } |
| 365 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 366 | StackIndirectReferenceTable* GetCurrentSirt() const { |
| 367 | Method** sp = GetCurrentQuickFrame(); |
| 368 | ++sp; // Skip Method*; SIRT comes next; |
| 369 | return reinterpret_cast<StackIndirectReferenceTable*>(sp); |
| 370 | } |
| 371 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 372 | private: |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 373 | size_t ComputeNumFrames() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 374 | |
| 375 | TraceStackFrame GetTraceStackFrame(uint32_t depth) const { |
| 376 | return trace_stack_->at(trace_stack_->size() - depth - 1); |
| 377 | } |
| 378 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame^] | 379 | void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 380 | |
| 381 | const ManagedStack* const stack_start_; |
| 382 | const std::vector<TraceStackFrame>* const trace_stack_; |
| 383 | ShadowFrame* cur_shadow_frame_; |
| 384 | Method** cur_quick_frame_; |
| 385 | uintptr_t cur_quick_frame_pc_; |
| 386 | // Lazily computed, number of frames in the stack. |
| 387 | size_t num_frames_; |
| 388 | // Depth of the frame we're currently at. |
| 389 | size_t cur_depth_; |
| 390 | protected: |
| 391 | Context* const context_; |
| 392 | }; |
| 393 | |
| 394 | static inline uintptr_t AdjustQuickFramePcForDexPcComputation(uintptr_t pc) { |
| 395 | // Quick methods record a mapping from quick PCs to Dex PCs at the beginning of the code for |
| 396 | // each dex instruction. When walking the stack, the return PC will be set to the instruction |
| 397 | // following call which will likely be the start of the next dex instruction. Adjust the PC |
| 398 | // for these cases by 2 bytes in case the return PC also has the thumb bit set. |
| 399 | if (pc > 0) { pc -= 2; } |
| 400 | return pc; |
| 401 | } |
| 402 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 403 | } // namespace art |
| 404 | |
| 405 | #endif // ART_SRC_STACK_H_ |