blob: a0c44cb24f992fd319dd9e5b4beebe594b569b46 [file] [log] [blame]
Elliott Hughes68e76522011-10-05 13:22:16 -07001/*
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 Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_STACK_H_
18#define ART_RUNTIME_STACK_H_
Elliott Hughes68e76522011-10-05 13:22:16 -070019
Elliott Hughes68e76522011-10-05 13:22:16 -070020#include <stdint.h>
Ian Rogers40e3bac2012-11-20 00:09:14 -080021#include <string>
Elliott Hughes68e76522011-10-05 13:22:16 -070022
Ian Rogersd582fa42014-11-05 23:46:43 -080023#include "arch/instruction_set.h"
Andreas Gampe03ec9302015-08-27 17:41:47 -070024#include "base/macros.h"
25#include "base/mutex.h"
Ian Rogerse63db272014-07-15 15:36:11 -070026#include "dex_file.h"
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080027#include "gc_root.h"
Ian Rogerse63db272014-07-15 15:36:11 -070028#include "mirror/object_reference.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010029#include "quick/quick_method_frame_info.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080030#include "read_barrier.h"
Ian Rogerse63db272014-07-15 15:36:11 -070031#include "verify_object.h"
32
Elliott Hughes68e76522011-10-05 13:22:16 -070033namespace art {
34
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070036 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037} // namespace mirror
38
Mathieu Chartiere401d142015-04-22 13:56:20 -070039class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040class Context;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070041class HandleScope;
Nicolas Geoffray57f61612015-05-15 13:20:41 +010042class InlineInfo;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010043class OatQuickMethodHeader;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044class ScopedObjectAccess;
Nicolas Geoffray57f61612015-05-15 13:20:41 +010045class ShadowFrame;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000046class StackVisitor;
Elliott Hughes68e76522011-10-05 13:22:16 -070047class Thread;
48
Ian Rogers2bcb4a42012-11-08 10:39:18 -080049// The kind of vreg being accessed in calls to Set/GetVReg.
50enum VRegKind {
51 kReferenceVReg,
52 kIntVReg,
53 kFloatVReg,
54 kLongLoVReg,
55 kLongHiVReg,
56 kDoubleLoVReg,
57 kDoubleHiVReg,
58 kConstant,
59 kImpreciseConstant,
60 kUndefined,
61};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070062std::ostream& operator<<(std::ostream& os, const VRegKind& rhs);
Ian Rogers2bcb4a42012-11-08 10:39:18 -080063
Ian Rogersef7d42f2014-01-06 12:55:46 -080064// A reference from the shadow stack to a MirrorType object within the Java heap.
65template<class MirrorType>
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070066class MANAGED StackReference : public mirror::CompressedReference<MirrorType> {
Ian Rogersef7d42f2014-01-06 12:55:46 -080067};
68
Andreas Gampeb3025922015-09-01 14:45:00 -070069// Forward declaration. Just calls the destructor.
70struct ShadowFrameDeleter;
71using ShadowFrameAllocaUniquePtr = std::unique_ptr<ShadowFrame, ShadowFrameDeleter>;
72
Andreas Gampe03ec9302015-08-27 17:41:47 -070073// Counting locks by storing object pointers into a vector. Duplicate entries mark recursive locks.
74// The vector will be visited with the ShadowFrame during GC (so all the locked-on objects are
75// thread roots).
76// Note: implementation is split so that the call sites may be optimized to no-ops in case no
77// lock counting is necessary. The actual implementation is in the cc file to avoid
78// dependencies.
79class LockCountData {
80 public:
81 // Add the given object to the list of monitors, that is, objects that have been locked. This
82 // will not throw (but be skipped if there is an exception pending on entry).
83 template <bool kLockCounting>
84 void AddMonitor(Thread* self, mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_) {
85 DCHECK(self != nullptr);
86 if (!kLockCounting) {
87 return;
88 }
89 AddMonitorInternal(self, obj);
90 }
91
92 // Try to remove the given object from the monitor list, indicating an unlock operation.
93 // This will throw an IllegalMonitorStateException (clearing any already pending exception), in
94 // case that there wasn't a lock recorded for the object.
95 template <bool kLockCounting>
96 void RemoveMonitorOrThrow(Thread* self,
97 const mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_) {
98 DCHECK(self != nullptr);
99 if (!kLockCounting) {
100 return;
101 }
102 RemoveMonitorInternal(self, obj);
103 }
104
105 // Check whether all acquired monitors have been released. This will potentially throw an
106 // IllegalMonitorStateException, clearing any already pending exception. Returns true if the
107 // check shows that everything is OK wrt/ lock counting, false otherwise.
108 template <bool kLockCounting>
109 bool CheckAllMonitorsReleasedOrThrow(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_) {
110 DCHECK(self != nullptr);
111 if (!kLockCounting) {
112 return true;
113 }
114 return CheckAllMonitorsReleasedInternal(self);
115 }
116
117 template <typename T, typename... Args>
118 void VisitMonitors(T visitor, Args&&... args) SHARED_REQUIRES(Locks::mutator_lock_) {
119 if (monitors_ != nullptr) {
120 // Visitors may change the Object*. Be careful with the foreach loop.
121 for (mirror::Object*& obj : *monitors_) {
122 visitor(/* inout */ &obj, std::forward<Args>(args)...);
123 }
124 }
125 }
126
127 private:
128 // Internal implementations.
129 void AddMonitorInternal(Thread* self, mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_);
130 void RemoveMonitorInternal(Thread* self, const mirror::Object* obj)
131 SHARED_REQUIRES(Locks::mutator_lock_);
132 bool CheckAllMonitorsReleasedInternal(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
133
134 // Stores references to the locked-on objects. As noted, this should be visited during thread
135 // marking.
136 std::unique_ptr<std::vector<mirror::Object*>> monitors_;
137};
138
Elliott Hughes956af0f2014-12-11 14:34:28 -0800139// ShadowFrame has 2 possible layouts:
Mathieu Chartier67022432012-11-29 18:04:50 -0800140// - interpreter - separate VRegs and reference arrays. References are in the reference array.
141// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -0700142class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -0700143 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -0800144 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -0700145 static size_t ComputeSize(uint32_t num_vregs) {
146 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -0800147 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -0700148 }
149
150 // Create ShadowFrame in heap for deoptimization.
Christopher Ferris241a9582015-04-27 15:19:41 -0700151 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700152 ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -0700153 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Andreas Gampeb3025922015-09-01 14:45:00 -0700154 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -0700155 }
156
Christopher Ferris241a9582015-04-27 15:19:41 -0700157 // Delete a ShadowFrame allocated on the heap for deoptimization.
158 static void DeleteDeoptimizedFrame(ShadowFrame* sf) {
Andreas Gampeb3025922015-09-01 14:45:00 -0700159 sf->~ShadowFrame(); // Explicitly destruct.
Christopher Ferris241a9582015-04-27 15:19:41 -0700160 uint8_t* memory = reinterpret_cast<uint8_t*>(sf);
161 delete[] memory;
162 }
163
Andreas Gampeb3025922015-09-01 14:45:00 -0700164 // Create a shadow frame in a fresh alloca. This needs to be in the context of the caller.
165 // Inlining doesn't work, the compiler will still undo the alloca. So this needs to be a macro.
166#define CREATE_SHADOW_FRAME(num_vregs, link, method, dex_pc) ({ \
167 size_t frame_size = ShadowFrame::ComputeSize(num_vregs); \
168 void* alloca_mem = alloca(frame_size); \
169 ShadowFrameAllocaUniquePtr( \
170 ShadowFrame::CreateShadowFrameImpl((num_vregs), (link), (method), (dex_pc), \
171 (alloca_mem))); \
172 })
173
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700174 ~ShadowFrame() {}
175
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700176 // TODO(iam): Clean references array up since they're always there,
177 // we don't need to do conditionals.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800178 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700179 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700180 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700181
TDYa127ce4cc0d2012-11-18 16:59:53 -0800182 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700183 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700184 }
185
Ian Rogers0399dde2012-06-06 17:09:28 -0700186 uint32_t GetDexPC() const {
187 return dex_pc_;
188 }
189
190 void SetDexPC(uint32_t dex_pc) {
191 dex_pc_ = dex_pc;
192 }
193
Ian Rogers0399dde2012-06-06 17:09:28 -0700194 ShadowFrame* GetLink() const {
195 return link_;
196 }
197
198 void SetLink(ShadowFrame* frame) {
199 DCHECK_NE(this, frame);
200 link_ = frame;
201 }
202
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700203 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800204 DCHECK_LT(i, NumberOfVRegs());
205 const uint32_t* vreg = &vregs_[i];
206 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700207 }
208
209 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800210 DCHECK_LT(i, NumberOfVRegs());
211 // NOTE: Strict-aliasing?
212 const uint32_t* vreg = &vregs_[i];
213 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700214 }
215
216 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200217 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800218 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700219 // Alignment attribute required for GCC 4.8
220 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
221 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700222 }
223
224 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200225 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800226 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700227 // Alignment attribute required for GCC 4.8
228 typedef const double unaligned_double __attribute__ ((aligned (4)));
229 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800230 }
231
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700232 // Look up the reference given its virtual register number.
233 // If this returns non-null then this does not mean the vreg is currently a reference
234 // on non-moving collectors. Check that the raw reg with GetVReg is equal to this if not certain.
Mathieu Chartier4e305412014-02-19 10:54:44 -0800235 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Mathieu Chartier90443472015-07-16 20:32:27 -0700236 mirror::Object* GetVRegReference(size_t i) const SHARED_REQUIRES(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800237 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800238 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800239 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800240 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800241 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800242 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800243 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800244 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800245 if (kUseReadBarrier) {
246 ReadBarrier::AssertToSpaceInvariant(ref);
247 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800248 if (kVerifyFlags & kVerifyReads) {
249 VerifyObject(ref);
250 }
251 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700252 }
253
Jeff Hao16743632013-05-08 10:59:04 -0700254 // Get view of vregs as range of consecutive arguments starting at i.
255 uint32_t* GetVRegArgs(size_t i) {
256 return &vregs_[i];
257 }
258
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700259 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800260 DCHECK_LT(i, NumberOfVRegs());
261 uint32_t* vreg = &vregs_[i];
262 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700263 // This is needed for moving collectors since these can update the vreg references if they
264 // happen to agree with references in the reference array.
265 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800266 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700267 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700268 }
269
270 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800271 DCHECK_LT(i, NumberOfVRegs());
272 uint32_t* vreg = &vregs_[i];
273 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700274 // This is needed for moving collectors since these can update the vreg references if they
275 // happen to agree with references in the reference array.
276 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800277 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700278 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700279 }
280
281 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200282 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800283 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700284 // Alignment attribute required for GCC 4.8
285 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
286 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700287 // This is needed for moving collectors since these can update the vreg references if they
288 // happen to agree with references in the reference array.
289 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290 References()[i].Clear();
291 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700292 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700293 }
294
295 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200296 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800297 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700298 // Alignment attribute required for GCC 4.8
299 typedef double unaligned_double __attribute__ ((aligned (4)));
300 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700301 // This is needed for moving collectors since these can update the vreg references if they
302 // happen to agree with references in the reference array.
303 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800304 References()[i].Clear();
305 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700306 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700307 }
308
Mathieu Chartier4e305412014-02-19 10:54:44 -0800309 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Mathieu Chartier90443472015-07-16 20:32:27 -0700310 void SetVRegReference(size_t i, mirror::Object* val) SHARED_REQUIRES(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800311 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800312 if (kVerifyFlags & kVerifyWrites) {
313 VerifyObject(val);
314 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800315 if (kUseReadBarrier) {
316 ReadBarrier::AssertToSpaceInvariant(val);
317 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800318 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800319 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800320 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800321 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800322 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700323 }
324
Mathieu Chartier90443472015-07-16 20:32:27 -0700325 ArtMethod* GetMethod() const SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800326 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700327 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700328 }
329
Mathieu Chartier90443472015-07-16 20:32:27 -0700330 mirror::Object* GetThisObject() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800331
Mathieu Chartier90443472015-07-16 20:32:27 -0700332 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_REQUIRES(Locks::mutator_lock_);
Jeff Haoe701f482013-05-24 11:50:49 -0700333
Ian Rogersef7d42f2014-01-06 12:55:46 -0800334 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800335 if (HasReferenceArray()) {
336 return ((&References()[0] <= shadow_frame_entry_obj) &&
337 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
338 } else {
339 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
340 return ((&vregs_[0] <= shadow_frame_entry) &&
341 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700342 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700343 }
344
Andreas Gampe03ec9302015-08-27 17:41:47 -0700345 LockCountData& GetLockCountData() {
346 return lock_count_data_;
347 }
348
Ian Rogers0399dde2012-06-06 17:09:28 -0700349 static size_t LinkOffset() {
350 return OFFSETOF_MEMBER(ShadowFrame, link_);
351 }
352
Ian Rogers0399dde2012-06-06 17:09:28 -0700353 static size_t MethodOffset() {
354 return OFFSETOF_MEMBER(ShadowFrame, method_);
355 }
356
Ian Rogers0399dde2012-06-06 17:09:28 -0700357 static size_t DexPCOffset() {
358 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
359 }
360
Ian Rogers5438ad82012-10-15 17:22:44 -0700361 static size_t NumberOfVRegsOffset() {
362 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
363 }
364
TDYa127ce4cc0d2012-11-18 16:59:53 -0800365 static size_t VRegsOffset() {
366 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700367 }
368
Andreas Gampeb3025922015-09-01 14:45:00 -0700369 // Create ShadowFrame for interpreter using provided memory.
370 static ShadowFrame* CreateShadowFrameImpl(uint32_t num_vregs,
371 ShadowFrame* link,
372 ArtMethod* method,
373 uint32_t dex_pc,
374 void* memory) {
375 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
376 }
377
Elliott Hughes68e76522011-10-05 13:22:16 -0700378 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700379 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800380 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800381 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700382 // TODO(iam): Remove this parameter, it's an an artifact of portable removal
383 DCHECK(has_reference_array);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800384 if (has_reference_array) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800385 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800386 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700387 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700388 }
389 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700390
Ian Rogersef7d42f2014-01-06 12:55:46 -0800391 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800392 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800393 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800394 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800395 }
396
Ian Rogersef7d42f2014-01-06 12:55:46 -0800397 StackReference<mirror::Object>* References() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700398 return const_cast<StackReference<mirror::Object>*>(
399 const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800400 }
401
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700402 const uint32_t number_of_vregs_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700403 // Link to previous shadow frame or null.
Ian Rogers0399dde2012-06-06 17:09:28 -0700404 ShadowFrame* link_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700405 ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700406 uint32_t dex_pc_;
Andreas Gampe03ec9302015-08-27 17:41:47 -0700407 LockCountData lock_count_data_; // This may contain GC roots when lock counting is active.
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700408
409 // This is a two-part array:
410 // - [0..number_of_vregs) holds the raw virtual registers, and each element here is always 4
411 // bytes.
412 // - [number_of_vregs..number_of_vregs*2) holds only reference registers. Each element here is
413 // ptr-sized.
414 // In other words when a primitive is stored in vX, the second (reference) part of the array will
415 // be null. When a reference is stored in vX, the second (reference) part of the array will be a
416 // copy of vX.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800417 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700418
Ian Rogers0399dde2012-06-06 17:09:28 -0700419 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700420};
421
Andreas Gampeb3025922015-09-01 14:45:00 -0700422struct ShadowFrameDeleter {
423 inline void operator()(ShadowFrame* frame) {
424 if (frame != nullptr) {
425 frame->~ShadowFrame();
426 }
427 }
428};
429
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800430class JavaFrameRootInfo : public RootInfo {
431 public:
432 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
433 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
434 }
435 virtual void Describe(std::ostream& os) const OVERRIDE
Mathieu Chartier90443472015-07-16 20:32:27 -0700436 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800437
438 private:
439 const StackVisitor* const stack_visitor_;
440 const size_t vreg_;
441};
442
Ian Rogers0399dde2012-06-06 17:09:28 -0700443// The managed stack is used to record fragments of managed code stacks. Managed code stacks
444// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
445// necessary for transitions between code using different frame layouts and transitions into native
446// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800447class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700448 public:
Ian Rogersca190662012-06-26 15:45:57 -0700449 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700450 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700451
452 void PushManagedStackFragment(ManagedStack* fragment) {
453 // Copy this top fragment into given fragment.
454 memcpy(fragment, this, sizeof(ManagedStack));
455 // Clear this fragment, which has become the top.
456 memset(this, 0, sizeof(ManagedStack));
457 // Link our top fragment onto the given fragment.
458 link_ = fragment;
459 }
460
461 void PopManagedStackFragment(const ManagedStack& fragment) {
462 DCHECK(&fragment == link_);
463 // Copy this given fragment back to the top.
464 memcpy(this, &fragment, sizeof(ManagedStack));
465 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700466
467 ManagedStack* GetLink() const {
468 return link_;
469 }
470
Mathieu Chartiere401d142015-04-22 13:56:20 -0700471 ArtMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700472 return top_quick_frame_;
473 }
474
Mathieu Chartiere401d142015-04-22 13:56:20 -0700475 void SetTopQuickFrame(ArtMethod** top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700476 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700477 top_quick_frame_ = top;
478 }
479
Ian Rogers0399dde2012-06-06 17:09:28 -0700480 static size_t TopQuickFrameOffset() {
481 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
482 }
483
Ian Rogers0399dde2012-06-06 17:09:28 -0700484 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700485 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700486 ShadowFrame* old_frame = top_shadow_frame_;
487 top_shadow_frame_ = new_top_frame;
488 new_top_frame->SetLink(old_frame);
489 return old_frame;
490 }
491
492 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700493 DCHECK(top_quick_frame_ == nullptr);
494 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700495 ShadowFrame* frame = top_shadow_frame_;
496 top_shadow_frame_ = frame->GetLink();
497 return frame;
498 }
499
500 ShadowFrame* GetTopShadowFrame() const {
501 return top_shadow_frame_;
502 }
503
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800504 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700505 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800506 top_shadow_frame_ = top;
507 }
508
Ian Rogers0399dde2012-06-06 17:09:28 -0700509 static size_t TopShadowFrameOffset() {
510 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
511 }
512
Mathieu Chartier90443472015-07-16 20:32:27 -0700513 size_t NumJniShadowFrameReferences() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700514
Ian Rogersef7d42f2014-01-06 12:55:46 -0800515 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700516
517 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700518 ArtMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700519 ManagedStack* link_;
520 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700521};
522
523class StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100524 public:
525 // This enum defines a flag to control whether inlined frames are included
526 // when walking the stack.
527 enum class StackWalkKind {
528 kIncludeInlinedFrames,
529 kSkipInlinedFrames,
530 };
531
Ian Rogers0399dde2012-06-06 17:09:28 -0700532 protected:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100533 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
Mathieu Chartier90443472015-07-16 20:32:27 -0700534 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700535
Nicolas Geoffray33856502015-10-20 15:52:58 +0100536 bool GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const
537 SHARED_REQUIRES(Locks::mutator_lock_);
538
Ian Rogers0399dde2012-06-06 17:09:28 -0700539 public:
540 virtual ~StackVisitor() {}
541
542 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Mathieu Chartier90443472015-07-16 20:32:27 -0700543 virtual bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700544
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700545 void WalkStack(bool include_transitions = false)
Mathieu Chartier90443472015-07-16 20:32:27 -0700546 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700547
Sebastien Hertz26f72862015-09-15 09:52:07 +0200548 Thread* GetThread() const {
549 return thread_;
550 }
551
Mathieu Chartier90443472015-07-16 20:32:27 -0700552 ArtMethod* GetMethod() const SHARED_REQUIRES(Locks::mutator_lock_);
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700553
Nicolas Geoffrayccc61972015-10-01 14:34:20 +0100554 ArtMethod* GetOuterMethod() const {
555 return *GetCurrentQuickFrame();
556 }
557
Ian Rogers0399dde2012-06-06 17:09:28 -0700558 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800559 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700560 }
561
Mathieu Chartier90443472015-07-16 20:32:27 -0700562 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700563
Mathieu Chartier90443472015-07-16 20:32:27 -0700564 mirror::Object* GetThisObject() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800565
Mathieu Chartier90443472015-07-16 20:32:27 -0700566 size_t GetNativePcOffset() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700567
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700568 // Returns the height of the stack in the managed stack frames, including transitions.
Mathieu Chartier90443472015-07-16 20:32:27 -0700569 size_t GetFrameHeight() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800570 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700571 }
572
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700573 // Returns a frame ID for JDWP use, starting from 1.
Mathieu Chartier90443472015-07-16 20:32:27 -0700574 size_t GetFrameId() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700575 return GetFrameHeight() + 1;
576 }
577
Mathieu Chartier90443472015-07-16 20:32:27 -0700578 size_t GetNumFrames() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700579 if (num_frames_ == 0) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100580 num_frames_ = ComputeNumFrames(thread_, walk_kind_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700581 }
582 return num_frames_;
583 }
584
Mathieu Chartier90443472015-07-16 20:32:27 -0700585 size_t GetFrameDepth() SHARED_REQUIRES(Locks::mutator_lock_) {
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700586 return cur_depth_;
587 }
588
Ian Rogers5cf98192014-05-29 21:31:50 -0700589 // Get the method and dex pc immediately after the one that's currently being visited.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700590 bool GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700591 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700592
Mathieu Chartiere401d142015-04-22 13:56:20 -0700593 bool IsReferenceVReg(ArtMethod* m, uint16_t vreg)
Mathieu Chartier90443472015-07-16 20:32:27 -0700594 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier50030ef2015-05-08 14:19:26 -0700595
Mathieu Chartiere401d142015-04-22 13:56:20 -0700596 bool GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700597 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700598
Mathieu Chartiere401d142015-04-22 13:56:20 -0700599 bool GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200600 uint64_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700601 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200602
Mingyao Yang636b9252015-07-31 16:40:24 -0700603 // Values will be set in debugger shadow frames. Debugger will make sure deoptimization
604 // is triggered to make the values effective.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700605 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Mathieu Chartier90443472015-07-16 20:32:27 -0700606 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700607
Mingyao Yang99170c62015-07-06 11:10:37 -0700608 // Values will be set in debugger shadow frames. Debugger will make sure deoptimization
609 // is triggered to make the values effective.
Mingyao Yang636b9252015-07-31 16:40:24 -0700610 bool SetVRegPair(ArtMethod* m,
611 uint16_t vreg,
612 uint64_t new_value,
613 VRegKind kind_lo,
614 VRegKind kind_hi)
Mingyao Yang99170c62015-07-06 11:10:37 -0700615 SHARED_REQUIRES(Locks::mutator_lock_);
616
Mathieu Chartier815873e2014-02-13 18:02:13 -0800617 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700618
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700619 // This is a fast-path for getting/setting values in a quick frame.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700620 uint32_t* GetVRegAddrFromQuickCode(ArtMethod** cur_quick_frame,
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000621 const DexFile::CodeItem* code_item,
622 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
623 uint16_t vreg) const {
624 int offset = GetVRegOffsetFromQuickCode(
625 code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700626 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700627 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700628 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700629 }
630
Mathieu Chartier90443472015-07-16 20:32:27 -0700631 uintptr_t GetReturnPc() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700632
Mathieu Chartier90443472015-07-16 20:32:27 -0700633 void SetReturnPc(uintptr_t new_ret_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700634
635 /*
636 * Return sp-relative offset for a Dalvik virtual register, compiler
637 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700638 * Note that (reg == -1) denotes an invalid Dalvik register. For the
639 * positive values, the Dalvik registers come first, followed by the
640 * Method*, followed by other special temporaries if any, followed by
641 * regular compiler temporary. As of now we only have the Method* as
642 * as a special compiler temporary.
643 * A compiler temporary can be thought of as a virtual register that
644 * does not exist in the dex but holds intermediate values to help
645 * optimizations and code generation. A special compiler temporary is
646 * one whose location in frame is well known while non-special ones
647 * do not have a requirement on location in frame as long as code
648 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700649 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700650 * +-------------------------------+
651 * | IN[ins-1] | {Note: resides in caller's frame}
652 * | . |
653 * | IN[0] |
Mathieu Chartiere401d142015-04-22 13:56:20 -0700654 * | caller's ArtMethod | ... ArtMethod*
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700655 * +===============================+ {Note: start of callee's frame}
656 * | core callee-save spill | {variable sized}
657 * +-------------------------------+
658 * | fp callee-save spill |
659 * +-------------------------------+
660 * | filler word | {For compatibility, if V[locals-1] used as wide
661 * +-------------------------------+
662 * | V[locals-1] |
663 * | V[locals-2] |
664 * | . |
665 * | . | ... (reg == 2)
666 * | V[1] | ... (reg == 1)
667 * | V[0] | ... (reg == 0) <---- "locals_start"
668 * +-------------------------------+
669 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
670 * +-------------------------------+
671 * | Compiler temp region | ... (reg >= max_num_special_temps)
672 * | . |
673 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700674 * | V[max_num_special_temps + 1] |
675 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700676 * +-------------------------------+
677 * | OUT[outs-1] |
678 * | OUT[outs-2] |
679 * | . |
680 * | OUT[0] |
Mathieu Chartiere401d142015-04-22 13:56:20 -0700681 * | ArtMethod* | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700682 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700683 */
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000684 static int GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
685 uint32_t core_spills, uint32_t fp_spills,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700686 size_t frame_size, int reg, InstructionSet isa);
Ian Rogers0399dde2012-06-06 17:09:28 -0700687
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000688 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
buzbee82818642014-06-04 15:35:41 -0700689 // According to stack model, the first out is above the Method referernce.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700690 return InstructionSetPointerSize(isa) + out_num * sizeof(uint32_t);
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800691 }
692
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100693 bool IsInInlinedFrame() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100694 return current_inlining_depth_ != 0;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100695 }
696
David Brazdilefc3f022015-10-28 12:19:06 -0500697 size_t GetCurrentInliningDepth() const {
698 return current_inlining_depth_;
699 }
700
Ian Rogers0399dde2012-06-06 17:09:28 -0700701 uintptr_t GetCurrentQuickFramePc() const {
702 return cur_quick_frame_pc_;
703 }
704
Mathieu Chartiere401d142015-04-22 13:56:20 -0700705 ArtMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700706 return cur_quick_frame_;
707 }
708
709 ShadowFrame* GetCurrentShadowFrame() const {
710 return cur_shadow_frame_;
711 }
712
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100713 bool IsCurrentFrameInInterpreter() const {
714 return cur_shadow_frame_ != nullptr;
715 }
716
Mathieu Chartiere401d142015-04-22 13:56:20 -0700717 HandleScope* GetCurrentHandleScope(size_t pointer_size) const {
718 ArtMethod** sp = GetCurrentQuickFrame();
719 // Skip ArtMethod*; handle scope comes next;
720 return reinterpret_cast<HandleScope*>(reinterpret_cast<uintptr_t>(sp) + pointer_size);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700721 }
722
Mathieu Chartier90443472015-07-16 20:32:27 -0700723 std::string DescribeLocation() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers40e3bac2012-11-20 00:09:14 -0800724
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100725 static size_t ComputeNumFrames(Thread* thread, StackWalkKind walk_kind)
Mathieu Chartier90443472015-07-16 20:32:27 -0700726 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800727
Mathieu Chartier90443472015-07-16 20:32:27 -0700728 static void DescribeStack(Thread* thread) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800729
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100730 const OatQuickMethodHeader* GetCurrentOatQuickMethodHeader() const {
731 return cur_oat_quick_method_header_;
732 }
733
734 QuickMethodFrameInfo GetCurrentQuickFrameInfo() const SHARED_REQUIRES(Locks::mutator_lock_);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100735
Ian Rogers0399dde2012-06-06 17:09:28 -0700736 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700737 // Private constructor known in the case that num_frames_ has already been computed.
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100738 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind, size_t num_frames)
Mathieu Chartier90443472015-07-16 20:32:27 -0700739 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700740
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100741 bool IsAccessibleRegister(uint32_t reg, bool is_float) const {
742 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg);
743 }
744 uintptr_t GetRegister(uint32_t reg, bool is_float) const {
745 DCHECK(IsAccessibleRegister(reg, is_float));
746 return is_float ? GetFPR(reg) : GetGPR(reg);
747 }
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100748
749 bool IsAccessibleGPR(uint32_t reg) const;
750 uintptr_t GetGPR(uint32_t reg) const;
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100751
752 bool IsAccessibleFPR(uint32_t reg) const;
753 uintptr_t GetFPR(uint32_t reg) const;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200754
Mingyao Yang99170c62015-07-06 11:10:37 -0700755 bool GetVRegFromDebuggerShadowFrame(uint16_t vreg, VRegKind kind, uint32_t* val) const
756 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700757 bool GetVRegFromQuickCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100758 uint32_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700759 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700760 bool GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100761 uint32_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700762 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100763
Mingyao Yang99170c62015-07-06 11:10:37 -0700764 bool GetVRegPairFromDebuggerShadowFrame(uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
765 uint64_t* val) const
766 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700767 bool GetVRegPairFromQuickCode(ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100768 VRegKind kind_hi, uint64_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700769 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700770 bool GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100771 VRegKind kind_lo, VRegKind kind_hi,
772 uint64_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700773 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100774 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
775 uint64_t* val) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700776 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100777
Mathieu Chartier90443472015-07-16 20:32:27 -0700778 void SanityCheckFrame() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700779
Mathieu Chartier90443472015-07-16 20:32:27 -0700780 InlineInfo GetCurrentInlineInfo() const SHARED_REQUIRES(Locks::mutator_lock_);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100781
Ian Rogers7a22fa62013-01-23 12:16:16 -0800782 Thread* const thread_;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100783 const StackWalkKind walk_kind_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700784 ShadowFrame* cur_shadow_frame_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700785 ArtMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700786 uintptr_t cur_quick_frame_pc_;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100787 const OatQuickMethodHeader* cur_oat_quick_method_header_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700788 // Lazily computed, number of frames in the stack.
789 size_t num_frames_;
790 // Depth of the frame we're currently at.
791 size_t cur_depth_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100792 // Current inlining depth of the method we are currently at.
793 // 0 if there is no inlined frame.
794 size_t current_inlining_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700795
Ian Rogers0399dde2012-06-06 17:09:28 -0700796 protected:
797 Context* const context_;
798};
799
Elliott Hughes68e76522011-10-05 13:22:16 -0700800} // namespace art
801
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700802#endif // ART_RUNTIME_STACK_H_