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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_STACK_H_ |
| 18 | #define ART_RUNTIME_STACK_H_ |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 19 | |
Mythri Alle | 72be14e | 2021-11-01 11:48:06 +0000 | [diff] [blame] | 20 | #include <stdint.h> |
Mythri Alle | 5097f83 | 2021-11-02 14:52:30 +0000 | [diff] [blame] | 21 | |
| 22 | #include <optional> |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 23 | #include <string> |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 24 | |
Andreas Gampe | 7fbc4a5 | 2018-11-28 08:26:47 -0800 | [diff] [blame] | 25 | #include "base/locks.h" |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 26 | #include "base/macros.h" |
Mythri Alle | 5097f83 | 2021-11-02 14:52:30 +0000 | [diff] [blame] | 27 | #include "deoptimization_kind.h" |
Vladimir Marko | 439d126 | 2019-04-12 14:45:07 +0100 | [diff] [blame] | 28 | #include "obj_ptr.h" |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 29 | #include "quick/quick_method_frame_info.h" |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 30 | #include "stack_map.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 31 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 32 | namespace art { |
| 33 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 34 | namespace mirror { |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 35 | class Object; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 36 | } // namespace mirror |
| 37 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 38 | class ArtMethod; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | class Context; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 40 | class HandleScope; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 41 | class OatQuickMethodHeader; |
Nicolas Geoffray | 57f6161 | 2015-05-15 13:20:41 +0100 | [diff] [blame] | 42 | class ShadowFrame; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 43 | class Thread; |
Vladimir Marko | 3a21e38 | 2016-09-02 12:38:38 +0100 | [diff] [blame] | 44 | union JValue; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 45 | |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 46 | // The kind of vreg being accessed in calls to Set/GetVReg. |
| 47 | enum VRegKind { |
| 48 | kReferenceVReg, |
| 49 | kIntVReg, |
| 50 | kFloatVReg, |
| 51 | kLongLoVReg, |
| 52 | kLongHiVReg, |
| 53 | kDoubleLoVReg, |
| 54 | kDoubleHiVReg, |
| 55 | kConstant, |
| 56 | kImpreciseConstant, |
| 57 | kUndefined, |
| 58 | }; |
Vladimir Marko | 9974e3c | 2020-06-10 16:27:06 +0100 | [diff] [blame] | 59 | std::ostream& operator<<(std::ostream& os, VRegKind rhs); |
Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 60 | |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 61 | // Size in bytes of the should_deoptimize flag on stack. |
| 62 | // We just need 4 bytes for our purpose regardless of the architecture. Frame size |
| 63 | // calculation will automatically do alignment for the final frame size. |
| 64 | static constexpr size_t kShouldDeoptimizeFlagSize = 4; |
| 65 | |
Andreas Gampe | 36a296f | 2017-06-13 14:11:11 -0700 | [diff] [blame] | 66 | /* |
| 67 | * Our current stack layout. |
| 68 | * The Dalvik registers come first, followed by the |
| 69 | * Method*, followed by other special temporaries if any, followed by |
| 70 | * regular compiler temporary. As of now we only have the Method* as |
| 71 | * as a special compiler temporary. |
| 72 | * A compiler temporary can be thought of as a virtual register that |
| 73 | * does not exist in the dex but holds intermediate values to help |
| 74 | * optimizations and code generation. A special compiler temporary is |
| 75 | * one whose location in frame is well known while non-special ones |
| 76 | * do not have a requirement on location in frame as long as code |
| 77 | * generator itself knows how to access them. |
| 78 | * |
| 79 | * TODO: Update this documentation? |
| 80 | * |
| 81 | * +-------------------------------+ |
| 82 | * | IN[ins-1] | {Note: resides in caller's frame} |
| 83 | * | . | |
| 84 | * | IN[0] | |
| 85 | * | caller's ArtMethod | ... ArtMethod* |
| 86 | * +===============================+ {Note: start of callee's frame} |
| 87 | * | core callee-save spill | {variable sized} |
| 88 | * +-------------------------------+ |
| 89 | * | fp callee-save spill | |
| 90 | * +-------------------------------+ |
| 91 | * | filler word | {For compatibility, if V[locals-1] used as wide |
| 92 | * +-------------------------------+ |
| 93 | * | V[locals-1] | |
| 94 | * | V[locals-2] | |
| 95 | * | . | |
| 96 | * | . | ... (reg == 2) |
| 97 | * | V[1] | ... (reg == 1) |
| 98 | * | V[0] | ... (reg == 0) <---- "locals_start" |
| 99 | * +-------------------------------+ |
| 100 | * | stack alignment padding | {0 to (kStackAlignWords-1) of padding} |
| 101 | * +-------------------------------+ |
| 102 | * | Compiler temp region | ... (reg >= max_num_special_temps) |
| 103 | * | . | |
| 104 | * | . | |
| 105 | * | V[max_num_special_temps + 1] | |
| 106 | * | V[max_num_special_temps + 0] | |
| 107 | * +-------------------------------+ |
| 108 | * | OUT[outs-1] | |
| 109 | * | OUT[outs-2] | |
| 110 | * | . | |
| 111 | * | OUT[0] | |
| 112 | * | ArtMethod* | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned |
| 113 | * +===============================+ |
| 114 | */ |
Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 115 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 116 | class StackVisitor { |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 117 | public: |
| 118 | // This enum defines a flag to control whether inlined frames are included |
| 119 | // when walking the stack. |
| 120 | enum class StackWalkKind { |
| 121 | kIncludeInlinedFrames, |
| 122 | kSkipInlinedFrames, |
| 123 | }; |
| 124 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 125 | protected: |
Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 126 | StackVisitor(Thread* thread, |
| 127 | Context* context, |
| 128 | StackWalkKind walk_kind, |
| 129 | bool check_suspended = true); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 130 | |
Nicolas Geoffray | 6624d58 | 2020-09-01 15:02:00 +0100 | [diff] [blame] | 131 | bool GetRegisterIfAccessible(uint32_t reg, DexRegisterLocation::Kind kind, uint32_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 132 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 133 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 134 | public: |
| 135 | virtual ~StackVisitor() {} |
Andreas Gampe | 6db6b4d | 2017-06-12 16:36:33 -0700 | [diff] [blame] | 136 | StackVisitor(const StackVisitor&) = default; |
| 137 | StackVisitor(StackVisitor&&) = default; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 138 | |
| 139 | // Return 'true' if we should continue to visit more frames, 'false' to stop. |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 140 | virtual bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) = 0; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 141 | |
Andreas Gampe | 585da95 | 2016-12-02 14:52:29 -0800 | [diff] [blame] | 142 | enum class CountTransitions { |
| 143 | kYes, |
| 144 | kNo, |
| 145 | }; |
| 146 | |
| 147 | template <CountTransitions kCount = CountTransitions::kYes> |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 148 | void WalkStack(bool include_transitions = false) REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 149 | |
Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 150 | // Convenience helper function to walk the stack with a lambda as a visitor. |
| 151 | template <CountTransitions kCountTransitions = CountTransitions::kYes, |
| 152 | typename T> |
| 153 | ALWAYS_INLINE static void WalkStack(const T& fn, |
| 154 | Thread* thread, |
| 155 | Context* context, |
| 156 | StackWalkKind walk_kind, |
| 157 | bool check_suspended = true, |
| 158 | bool include_transitions = false) |
| 159 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 160 | class LambdaStackVisitor : public StackVisitor { |
| 161 | public: |
| 162 | LambdaStackVisitor(const T& fn, |
| 163 | Thread* thread, |
| 164 | Context* context, |
| 165 | StackWalkKind walk_kind, |
| 166 | bool check_suspended = true) |
| 167 | : StackVisitor(thread, context, walk_kind, check_suspended), fn_(fn) {} |
| 168 | |
| 169 | bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) { |
| 170 | return fn_(this); |
| 171 | } |
| 172 | |
| 173 | private: |
| 174 | T fn_; |
| 175 | }; |
| 176 | LambdaStackVisitor visitor(fn, thread, context, walk_kind, check_suspended); |
| 177 | visitor.template WalkStack<kCountTransitions>(include_transitions); |
| 178 | } |
| 179 | |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 180 | Thread* GetThread() const { |
| 181 | return thread_; |
| 182 | } |
| 183 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 184 | ArtMethod* GetMethod() const REQUIRES_SHARED(Locks::mutator_lock_); |
Hiroshi Yamauchi | 92d1a66 | 2014-05-15 21:43:59 -0700 | [diff] [blame] | 185 | |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 186 | // Sets this stack frame's method pointer. This requires a full lock of the MutatorLock. This |
| 187 | // doesn't work with inlined methods. |
| 188 | void SetMethod(ArtMethod* method) REQUIRES(Locks::mutator_lock_); |
| 189 | |
Nicolas Geoffray | ccc6197 | 2015-10-01 14:34:20 +0100 | [diff] [blame] | 190 | ArtMethod* GetOuterMethod() const { |
| 191 | return *GetCurrentQuickFrame(); |
| 192 | } |
| 193 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 194 | bool IsShadowFrame() const { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 195 | return cur_shadow_frame_ != nullptr; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 198 | uint32_t GetDexPc(bool abort_on_failure = true) const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 199 | |
Vladimir Marko | abedfca | 2019-05-23 14:07:47 +0100 | [diff] [blame] | 200 | ObjPtr<mirror::Object> GetThisObject() const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 201 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 202 | size_t GetNativePcOffset() const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 203 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 204 | // Returns the height of the stack in the managed stack frames, including transitions. |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 205 | size_t GetFrameHeight() REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 206 | return GetNumFrames() - cur_depth_ - 1; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 209 | // Returns a frame ID for JDWP use, starting from 1. |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 210 | size_t GetFrameId() REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 211 | return GetFrameHeight() + 1; |
| 212 | } |
| 213 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 214 | size_t GetNumFrames() REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 215 | if (num_frames_ == 0) { |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 216 | num_frames_ = ComputeNumFrames(thread_, walk_kind_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 217 | } |
| 218 | return num_frames_; |
| 219 | } |
| 220 | |
Andreas Gampe | 140da3b | 2016-11-08 16:01:00 -0800 | [diff] [blame] | 221 | size_t GetFrameDepth() const REQUIRES_SHARED(Locks::mutator_lock_) { |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 222 | return cur_depth_; |
| 223 | } |
| 224 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 225 | // Get the method and dex pc immediately after the one that's currently being visited. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 226 | bool GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 227 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 228 | |
David Srbecky | cffa254 | 2019-07-01 15:31:41 +0100 | [diff] [blame] | 229 | bool GetVReg(ArtMethod* m, |
| 230 | uint16_t vreg, |
| 231 | VRegKind kind, |
| 232 | uint32_t* val, |
| 233 | std::optional<DexRegisterLocation> location = |
| 234 | std::optional<DexRegisterLocation>()) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 235 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 236 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 237 | bool GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi, |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 238 | uint64_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 239 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 240 | |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 241 | // Values will be set in debugger shadow frames. Debugger will make sure deoptimization |
| 242 | // is triggered to make the values effective. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 243 | bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 244 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 245 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 246 | // Values will be set in debugger shadow frames. Debugger will make sure deoptimization |
| 247 | // is triggered to make the values effective. |
Vladimir Marko | 439d126 | 2019-04-12 14:45:07 +0100 | [diff] [blame] | 248 | bool SetVRegReference(ArtMethod* m, uint16_t vreg, ObjPtr<mirror::Object> new_value) |
| 249 | REQUIRES_SHARED(Locks::mutator_lock_); |
| 250 | |
| 251 | // Values will be set in debugger shadow frames. Debugger will make sure deoptimization |
| 252 | // is triggered to make the values effective. |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 253 | bool SetVRegPair(ArtMethod* m, |
| 254 | uint16_t vreg, |
| 255 | uint64_t new_value, |
| 256 | VRegKind kind_lo, |
| 257 | VRegKind kind_hi) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 258 | REQUIRES_SHARED(Locks::mutator_lock_); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 259 | |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 260 | uintptr_t* GetGPRAddress(uint32_t reg) const; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 261 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 262 | uintptr_t GetReturnPc() const REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | e91e795 | 2020-01-23 10:15:56 +0000 | [diff] [blame] | 263 | uintptr_t GetReturnPcAddr() const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 264 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 265 | void SetReturnPc(uintptr_t new_ret_pc) REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 266 | |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 267 | bool IsInInlinedFrame() const { |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 268 | return !current_inline_frames_.empty(); |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 269 | } |
| 270 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 271 | InlineInfo GetCurrentInlinedFrame() const { |
| 272 | return current_inline_frames_.back(); |
David Brazdil | efc3f02 | 2015-10-28 12:19:06 -0500 | [diff] [blame] | 273 | } |
| 274 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 275 | uintptr_t GetCurrentQuickFramePc() const { |
| 276 | return cur_quick_frame_pc_; |
| 277 | } |
| 278 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 279 | ArtMethod** GetCurrentQuickFrame() const { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 280 | return cur_quick_frame_; |
| 281 | } |
| 282 | |
| 283 | ShadowFrame* GetCurrentShadowFrame() const { |
| 284 | return cur_shadow_frame_; |
| 285 | } |
| 286 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 287 | std::string DescribeLocation() const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 288 | |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 289 | static size_t ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 290 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 291 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 292 | static void DescribeStack(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 293 | |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 294 | const OatQuickMethodHeader* GetCurrentOatQuickMethodHeader() const { |
| 295 | return cur_oat_quick_method_header_; |
| 296 | } |
| 297 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 298 | QuickMethodFrameInfo GetCurrentQuickFrameInfo() const REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 299 | |
Mythri Alle | 5097f83 | 2021-11-02 14:52:30 +0000 | [diff] [blame] | 300 | void SetShouldDeoptimizeFlag(DeoptimizeFlagValue value) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 301 | uint8_t* should_deoptimize_addr = GetShouldDeoptimizeFlagAddr(); |
| 302 | *should_deoptimize_addr = *should_deoptimize_addr | static_cast<uint8_t>(value); |
| 303 | }; |
| 304 | |
| 305 | uint8_t GetShouldDeoptimizeFlag() const REQUIRES_SHARED(Locks::mutator_lock_) { |
| 306 | return *GetShouldDeoptimizeFlagAddr(); |
| 307 | } |
| 308 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 309 | private: |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 310 | // Private constructor known in the case that num_frames_ has already been computed. |
Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 311 | StackVisitor(Thread* thread, |
| 312 | Context* context, |
| 313 | StackWalkKind walk_kind, |
| 314 | size_t num_frames, |
| 315 | bool check_suspended = true) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 316 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 317 | |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 318 | bool IsAccessibleRegister(uint32_t reg, bool is_float) const { |
| 319 | return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg); |
| 320 | } |
| 321 | uintptr_t GetRegister(uint32_t reg, bool is_float) const { |
| 322 | DCHECK(IsAccessibleRegister(reg, is_float)); |
| 323 | return is_float ? GetFPR(reg) : GetGPR(reg); |
| 324 | } |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 325 | |
| 326 | bool IsAccessibleGPR(uint32_t reg) const; |
| 327 | uintptr_t GetGPR(uint32_t reg) const; |
Sebastien Hertz | 96ba8dc | 2015-01-22 18:57:14 +0100 | [diff] [blame] | 328 | |
| 329 | bool IsAccessibleFPR(uint32_t reg) const; |
| 330 | uintptr_t GetFPR(uint32_t reg) const; |
Sebastien Hertz | 0bcb290 | 2014-06-17 15:52:45 +0200 | [diff] [blame] | 331 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 332 | bool GetVRegFromDebuggerShadowFrame(uint16_t vreg, VRegKind kind, uint32_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 333 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 6624d58 | 2020-09-01 15:02:00 +0100 | [diff] [blame] | 334 | bool GetVRegFromOptimizedCode(ArtMethod* m, |
| 335 | uint16_t vreg, |
| 336 | VRegKind kind, |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 337 | uint32_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 338 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 339 | |
Nicolas Geoffray | 6624d58 | 2020-09-01 15:02:00 +0100 | [diff] [blame] | 340 | bool GetVRegPairFromDebuggerShadowFrame(uint16_t vreg, |
| 341 | VRegKind kind_lo, |
| 342 | VRegKind kind_hi, |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 343 | uint64_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 344 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 6624d58 | 2020-09-01 15:02:00 +0100 | [diff] [blame] | 345 | bool GetVRegPairFromOptimizedCode(ArtMethod* m, |
| 346 | uint16_t vreg, |
| 347 | VRegKind kind_lo, |
| 348 | VRegKind kind_hi, |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 349 | uint64_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 350 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 6624d58 | 2020-09-01 15:02:00 +0100 | [diff] [blame] | 351 | bool GetVRegFromOptimizedCode(DexRegisterLocation location, uint32_t* val) const |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 352 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 7cde48c | 2015-01-20 16:06:43 +0100 | [diff] [blame] | 353 | |
Vladimir Marko | 439d126 | 2019-04-12 14:45:07 +0100 | [diff] [blame] | 354 | ShadowFrame* PrepareSetVReg(ArtMethod* m, uint16_t vreg, bool wide) |
| 355 | REQUIRES_SHARED(Locks::mutator_lock_); |
| 356 | |
Orion Hodson | 6aaa49d | 2020-07-28 15:53:04 +0100 | [diff] [blame] | 357 | void ValidateFrame() const REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 358 | |
David Srbecky | 145a18a | 2019-06-03 14:35:22 +0100 | [diff] [blame] | 359 | ALWAYS_INLINE CodeInfo* GetCurrentInlineInfo() const; |
| 360 | ALWAYS_INLINE StackMap* GetCurrentStackMap() const; |
| 361 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 362 | Thread* const thread_; |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 363 | const StackWalkKind walk_kind_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 364 | ShadowFrame* cur_shadow_frame_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 365 | ArtMethod** cur_quick_frame_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 366 | uintptr_t cur_quick_frame_pc_; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 367 | const OatQuickMethodHeader* cur_oat_quick_method_header_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 368 | // Lazily computed, number of frames in the stack. |
| 369 | size_t num_frames_; |
| 370 | // Depth of the frame we're currently at. |
| 371 | size_t cur_depth_; |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 372 | // Current inlined frames of the method we are currently at. |
| 373 | // We keep poping frames from the end as we visit the frames. |
| 374 | BitTableRange<InlineInfo> current_inline_frames_; |
Brian Carlstrom | 0cd7ec2 | 2013-07-17 23:40:20 -0700 | [diff] [blame] | 375 | |
David Srbecky | 145a18a | 2019-06-03 14:35:22 +0100 | [diff] [blame] | 376 | // Cache the most recently decoded inline info data. |
| 377 | // The 'current_inline_frames_' refers to this data, so we need to keep it alive anyway. |
| 378 | // Marked mutable since the cache fields are updated from const getters. |
| 379 | mutable std::pair<const OatQuickMethodHeader*, CodeInfo> cur_inline_info_; |
| 380 | mutable std::pair<uintptr_t, StackMap> cur_stack_map_; |
| 381 | |
Mythri Alle | 5097f83 | 2021-11-02 14:52:30 +0000 | [diff] [blame] | 382 | uint8_t* GetShouldDeoptimizeFlagAddr() const REQUIRES_SHARED(Locks::mutator_lock_); |
| 383 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 384 | protected: |
| 385 | Context* const context_; |
Hiroshi Yamauchi | 02f365f | 2017-02-03 15:06:00 -0800 | [diff] [blame] | 386 | const bool check_suspended_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 387 | }; |
| 388 | |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 389 | } // namespace art |
| 390 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 391 | #endif // ART_RUNTIME_STACK_H_ |