blob: d60714f7a358c1ca8bd542d5717bc0b279f643a7 [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"
Vladimir Marko80afd022015-05-19 18:08:00 +010024#include "base/bit_utils.h"
Ian Rogerse63db272014-07-15 15:36:11 -070025#include "dex_file.h"
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080026#include "gc_root.h"
Ian Rogerse63db272014-07-15 15:36:11 -070027#include "mirror/object_reference.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080028#include "read_barrier.h"
Ian Rogerse63db272014-07-15 15:36:11 -070029#include "verify_object.h"
30
Elliott Hughes68e76522011-10-05 13:22:16 -070031namespace art {
32
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070034 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035} // namespace mirror
36
Mathieu Chartiere401d142015-04-22 13:56:20 -070037class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038class Context;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070039class HandleScope;
Nicolas Geoffray57f61612015-05-15 13:20:41 +010040class InlineInfo;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041class ScopedObjectAccess;
Nicolas Geoffray57f61612015-05-15 13:20:41 +010042class ShadowFrame;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000043class StackVisitor;
Elliott Hughes68e76522011-10-05 13:22:16 -070044class Thread;
45
Ian Rogers2bcb4a42012-11-08 10:39:18 -080046// The kind of vreg being accessed in calls to Set/GetVReg.
47enum VRegKind {
48 kReferenceVReg,
49 kIntVReg,
50 kFloatVReg,
51 kLongLoVReg,
52 kLongHiVReg,
53 kDoubleLoVReg,
54 kDoubleHiVReg,
55 kConstant,
56 kImpreciseConstant,
57 kUndefined,
58};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070059std::ostream& operator<<(std::ostream& os, const VRegKind& rhs);
Ian Rogers2bcb4a42012-11-08 10:39:18 -080060
Ian Rogersef7d42f2014-01-06 12:55:46 -080061// A reference from the shadow stack to a MirrorType object within the Java heap.
62template<class MirrorType>
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070063class MANAGED StackReference : public mirror::CompressedReference<MirrorType> {
Ian Rogersef7d42f2014-01-06 12:55:46 -080064};
65
Elliott Hughes956af0f2014-12-11 14:34:28 -080066// ShadowFrame has 2 possible layouts:
Mathieu Chartier67022432012-11-29 18:04:50 -080067// - interpreter - separate VRegs and reference arrays. References are in the reference array.
68// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -070069class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -070070 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -080071 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -070072 static size_t ComputeSize(uint32_t num_vregs) {
73 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -080074 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -070075 }
76
77 // Create ShadowFrame in heap for deoptimization.
Christopher Ferris241a9582015-04-27 15:19:41 -070078 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link,
Mathieu Chartiere401d142015-04-22 13:56:20 -070079 ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -070080 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Sebastien Hertzc61124b2013-09-10 11:44:19 +020081 return Create(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -070082 }
83
Christopher Ferris241a9582015-04-27 15:19:41 -070084 // Delete a ShadowFrame allocated on the heap for deoptimization.
85 static void DeleteDeoptimizedFrame(ShadowFrame* sf) {
86 uint8_t* memory = reinterpret_cast<uint8_t*>(sf);
87 delete[] memory;
88 }
89
Jeff Hao66135192013-05-14 11:02:41 -070090 // Create ShadowFrame for interpreter using provided memory.
91 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Mathieu Chartiere401d142015-04-22 13:56:20 -070092 ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080093 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
94 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070095 }
96 ~ShadowFrame() {}
97
Igor Murashkinc449e8b2015-06-10 15:56:42 -070098 // TODO(iam): Clean references array up since they're always there,
99 // we don't need to do conditionals.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800100 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700101 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700102 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700103
TDYa127ce4cc0d2012-11-18 16:59:53 -0800104 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700105 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700106 }
107
Ian Rogers0399dde2012-06-06 17:09:28 -0700108 uint32_t GetDexPC() const {
109 return dex_pc_;
110 }
111
112 void SetDexPC(uint32_t dex_pc) {
113 dex_pc_ = dex_pc;
114 }
115
Ian Rogers0399dde2012-06-06 17:09:28 -0700116 ShadowFrame* GetLink() const {
117 return link_;
118 }
119
120 void SetLink(ShadowFrame* frame) {
121 DCHECK_NE(this, frame);
122 link_ = frame;
123 }
124
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700125 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800126 DCHECK_LT(i, NumberOfVRegs());
127 const uint32_t* vreg = &vregs_[i];
128 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700129 }
130
131 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800132 DCHECK_LT(i, NumberOfVRegs());
133 // NOTE: Strict-aliasing?
134 const uint32_t* vreg = &vregs_[i];
135 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700136 }
137
138 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200139 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800140 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700141 // Alignment attribute required for GCC 4.8
142 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
143 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700144 }
145
146 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200147 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800148 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700149 // Alignment attribute required for GCC 4.8
150 typedef const double unaligned_double __attribute__ ((aligned (4)));
151 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800152 }
153
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700154 // Look up the reference given its virtual register number.
155 // If this returns non-null then this does not mean the vreg is currently a reference
156 // 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 -0800157 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800158 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800159 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800160 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800161 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800162 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800163 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800164 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800165 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800166 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800167 if (kUseReadBarrier) {
168 ReadBarrier::AssertToSpaceInvariant(ref);
169 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800170 if (kVerifyFlags & kVerifyReads) {
171 VerifyObject(ref);
172 }
173 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700174 }
175
Jeff Hao16743632013-05-08 10:59:04 -0700176 // Get view of vregs as range of consecutive arguments starting at i.
177 uint32_t* GetVRegArgs(size_t i) {
178 return &vregs_[i];
179 }
180
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700181 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800182 DCHECK_LT(i, NumberOfVRegs());
183 uint32_t* vreg = &vregs_[i];
184 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700185 // This is needed for moving collectors since these can update the vreg references if they
186 // happen to agree with references in the reference array.
187 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800188 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700189 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700190 }
191
192 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800193 DCHECK_LT(i, NumberOfVRegs());
194 uint32_t* vreg = &vregs_[i];
195 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700196 // This is needed for moving collectors since these can update the vreg references if they
197 // happen to agree with references in the reference array.
198 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800199 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700200 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700201 }
202
203 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200204 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800205 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700206 // Alignment attribute required for GCC 4.8
207 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
208 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700209 // This is needed for moving collectors since these can update the vreg references if they
210 // happen to agree with references in the reference array.
211 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800212 References()[i].Clear();
213 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700214 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700215 }
216
217 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200218 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800219 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700220 // Alignment attribute required for GCC 4.8
221 typedef double unaligned_double __attribute__ ((aligned (4)));
222 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700223 // This is needed for moving collectors since these can update the vreg references if they
224 // happen to agree with references in the reference array.
225 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800226 References()[i].Clear();
227 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700228 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700229 }
230
Mathieu Chartier4e305412014-02-19 10:54:44 -0800231 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800232 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800233 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800234 if (kVerifyFlags & kVerifyWrites) {
235 VerifyObject(val);
236 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800237 if (kUseReadBarrier) {
238 ReadBarrier::AssertToSpaceInvariant(val);
239 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800240 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800241 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800242 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800243 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800244 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700245 }
246
Mathieu Chartiere401d142015-04-22 13:56:20 -0700247 ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800248 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700249 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700250 }
251
Ian Rogers62d6c772013-02-27 08:32:07 -0800252 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
253
Jeff Haoe701f482013-05-24 11:50:49 -0700254 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
255
Ian Rogersef7d42f2014-01-06 12:55:46 -0800256 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800257 if (HasReferenceArray()) {
258 return ((&References()[0] <= shadow_frame_entry_obj) &&
259 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
260 } else {
261 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
262 return ((&vregs_[0] <= shadow_frame_entry) &&
263 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700264 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700265 }
266
Ian Rogers0399dde2012-06-06 17:09:28 -0700267 static size_t LinkOffset() {
268 return OFFSETOF_MEMBER(ShadowFrame, link_);
269 }
270
Ian Rogers0399dde2012-06-06 17:09:28 -0700271 static size_t MethodOffset() {
272 return OFFSETOF_MEMBER(ShadowFrame, method_);
273 }
274
Ian Rogers0399dde2012-06-06 17:09:28 -0700275 static size_t DexPCOffset() {
276 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
277 }
278
Ian Rogers5438ad82012-10-15 17:22:44 -0700279 static size_t NumberOfVRegsOffset() {
280 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
281 }
282
TDYa127ce4cc0d2012-11-18 16:59:53 -0800283 static size_t VRegsOffset() {
284 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700285 }
286
Elliott Hughes68e76522011-10-05 13:22:16 -0700287 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700288 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800290 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700291 // TODO(iam): Remove this parameter, it's an an artifact of portable removal
292 DCHECK(has_reference_array);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800293 if (has_reference_array) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800294 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800295 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700296 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700297 }
298 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700299
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800301 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800302 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800303 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800304 }
305
Ian Rogersef7d42f2014-01-06 12:55:46 -0800306 StackReference<mirror::Object>* References() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700307 return const_cast<StackReference<mirror::Object>*>(
308 const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800309 }
310
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700311 const uint32_t number_of_vregs_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700312 // Link to previous shadow frame or null.
Ian Rogers0399dde2012-06-06 17:09:28 -0700313 ShadowFrame* link_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700314 ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700315 uint32_t dex_pc_;
Igor Murashkinc449e8b2015-06-10 15:56:42 -0700316
317 // This is a two-part array:
318 // - [0..number_of_vregs) holds the raw virtual registers, and each element here is always 4
319 // bytes.
320 // - [number_of_vregs..number_of_vregs*2) holds only reference registers. Each element here is
321 // ptr-sized.
322 // In other words when a primitive is stored in vX, the second (reference) part of the array will
323 // be null. When a reference is stored in vX, the second (reference) part of the array will be a
324 // copy of vX.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800325 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700326
Ian Rogers0399dde2012-06-06 17:09:28 -0700327 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700328};
329
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800330class JavaFrameRootInfo : public RootInfo {
331 public:
332 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
333 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
334 }
335 virtual void Describe(std::ostream& os) const OVERRIDE
336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
337
338 private:
339 const StackVisitor* const stack_visitor_;
340 const size_t vreg_;
341};
342
Ian Rogers0399dde2012-06-06 17:09:28 -0700343// The managed stack is used to record fragments of managed code stacks. Managed code stacks
344// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
345// necessary for transitions between code using different frame layouts and transitions into native
346// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800347class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700348 public:
Ian Rogersca190662012-06-26 15:45:57 -0700349 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700350 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700351
352 void PushManagedStackFragment(ManagedStack* fragment) {
353 // Copy this top fragment into given fragment.
354 memcpy(fragment, this, sizeof(ManagedStack));
355 // Clear this fragment, which has become the top.
356 memset(this, 0, sizeof(ManagedStack));
357 // Link our top fragment onto the given fragment.
358 link_ = fragment;
359 }
360
361 void PopManagedStackFragment(const ManagedStack& fragment) {
362 DCHECK(&fragment == link_);
363 // Copy this given fragment back to the top.
364 memcpy(this, &fragment, sizeof(ManagedStack));
365 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700366
367 ManagedStack* GetLink() const {
368 return link_;
369 }
370
Mathieu Chartiere401d142015-04-22 13:56:20 -0700371 ArtMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700372 return top_quick_frame_;
373 }
374
Mathieu Chartiere401d142015-04-22 13:56:20 -0700375 void SetTopQuickFrame(ArtMethod** top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700376 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700377 top_quick_frame_ = top;
378 }
379
Ian Rogers0399dde2012-06-06 17:09:28 -0700380 static size_t TopQuickFrameOffset() {
381 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
382 }
383
Ian Rogers0399dde2012-06-06 17:09:28 -0700384 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700385 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700386 ShadowFrame* old_frame = top_shadow_frame_;
387 top_shadow_frame_ = new_top_frame;
388 new_top_frame->SetLink(old_frame);
389 return old_frame;
390 }
391
392 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700393 DCHECK(top_quick_frame_ == nullptr);
394 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700395 ShadowFrame* frame = top_shadow_frame_;
396 top_shadow_frame_ = frame->GetLink();
397 return frame;
398 }
399
400 ShadowFrame* GetTopShadowFrame() const {
401 return top_shadow_frame_;
402 }
403
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800404 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700405 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800406 top_shadow_frame_ = top;
407 }
408
Ian Rogers0399dde2012-06-06 17:09:28 -0700409 static size_t TopShadowFrameOffset() {
410 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
411 }
412
Ian Rogersef7d42f2014-01-06 12:55:46 -0800413 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700414
Ian Rogersef7d42f2014-01-06 12:55:46 -0800415 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700416
417 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700418 ArtMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700419 ManagedStack* link_;
420 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700421};
422
423class StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100424 public:
425 // This enum defines a flag to control whether inlined frames are included
426 // when walking the stack.
427 enum class StackWalkKind {
428 kIncludeInlinedFrames,
429 kSkipInlinedFrames,
430 };
431
Ian Rogers0399dde2012-06-06 17:09:28 -0700432 protected:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100433 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700435
436 public:
437 virtual ~StackVisitor() {}
438
439 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700440 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700441
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700442 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700443 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700444
Mathieu Chartiere401d142015-04-22 13:56:20 -0700445 ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700446
Ian Rogers0399dde2012-06-06 17:09:28 -0700447 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800448 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700449 }
450
Dave Allisonb373e092014-02-20 16:06:36 -0800451 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700452
Ian Rogers62d6c772013-02-27 08:32:07 -0800453 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
454
Ian Rogers0c7abda2012-09-19 13:33:42 -0700455 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
456
Ian Rogersef7d42f2014-01-06 12:55:46 -0800457 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
458 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700459 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800460 DCHECK(GetMethod() != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700461 uint8_t* save_addr =
462 reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size - ((num + 1) * sizeof(void*));
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800463#if defined(__i386__) || defined(__x86_64__)
Ian Rogers13735952014-10-08 12:43:28 -0700464 save_addr -= sizeof(void*); // account for return address
Ian Rogers0399dde2012-06-06 17:09:28 -0700465#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800466 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700467 }
468
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700469 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700470 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800471 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700472 }
473
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700474 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700475 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700476 return GetFrameHeight() + 1;
477 }
478
Ian Rogersb726dcb2012-09-05 08:57:23 -0700479 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700480 if (num_frames_ == 0) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100481 num_frames_ = ComputeNumFrames(thread_, walk_kind_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700482 }
483 return num_frames_;
484 }
485
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700486 size_t GetFrameDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
487 return cur_depth_;
488 }
489
Ian Rogers5cf98192014-05-29 21:31:50 -0700490 // Get the method and dex pc immediately after the one that's currently being visited.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700491 bool GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc)
Ian Rogers5cf98192014-05-29 21:31:50 -0700492 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
493
Mathieu Chartiere401d142015-04-22 13:56:20 -0700494 bool IsReferenceVReg(ArtMethod* m, uint16_t vreg)
Mathieu Chartier50030ef2015-05-08 14:19:26 -0700495 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
496
Mathieu Chartiere401d142015-04-22 13:56:20 -0700497 bool GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800498 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700499
Mathieu Chartiere401d142015-04-22 13:56:20 -0700500 bool GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200501 uint64_t* val) const
502 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
503
Mathieu Chartiere401d142015-04-22 13:56:20 -0700504 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700505 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700506
Mathieu Chartiere401d142015-04-22 13:56:20 -0700507 bool SetVRegPair(ArtMethod* m, uint16_t vreg, uint64_t new_value,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200508 VRegKind kind_lo, VRegKind kind_hi)
509 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
510
Mathieu Chartier815873e2014-02-13 18:02:13 -0800511 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700512
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700513 // This is a fast-path for getting/setting values in a quick frame.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700514 uint32_t* GetVRegAddrFromQuickCode(ArtMethod** cur_quick_frame,
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000515 const DexFile::CodeItem* code_item,
516 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
517 uint16_t vreg) const {
518 int offset = GetVRegOffsetFromQuickCode(
519 code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700520 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700521 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700522 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700523 }
524
Ian Rogersef7d42f2014-01-06 12:55:46 -0800525 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700526
Ian Rogersef7d42f2014-01-06 12:55:46 -0800527 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700528
529 /*
530 * Return sp-relative offset for a Dalvik virtual register, compiler
531 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700532 * Note that (reg == -1) denotes an invalid Dalvik register. For the
533 * positive values, the Dalvik registers come first, followed by the
534 * Method*, followed by other special temporaries if any, followed by
535 * regular compiler temporary. As of now we only have the Method* as
536 * as a special compiler temporary.
537 * A compiler temporary can be thought of as a virtual register that
538 * does not exist in the dex but holds intermediate values to help
539 * optimizations and code generation. A special compiler temporary is
540 * one whose location in frame is well known while non-special ones
541 * do not have a requirement on location in frame as long as code
542 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700543 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700544 * +-------------------------------+
545 * | IN[ins-1] | {Note: resides in caller's frame}
546 * | . |
547 * | IN[0] |
Mathieu Chartiere401d142015-04-22 13:56:20 -0700548 * | caller's ArtMethod | ... ArtMethod*
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700549 * +===============================+ {Note: start of callee's frame}
550 * | core callee-save spill | {variable sized}
551 * +-------------------------------+
552 * | fp callee-save spill |
553 * +-------------------------------+
554 * | filler word | {For compatibility, if V[locals-1] used as wide
555 * +-------------------------------+
556 * | V[locals-1] |
557 * | V[locals-2] |
558 * | . |
559 * | . | ... (reg == 2)
560 * | V[1] | ... (reg == 1)
561 * | V[0] | ... (reg == 0) <---- "locals_start"
562 * +-------------------------------+
563 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
564 * +-------------------------------+
565 * | Compiler temp region | ... (reg >= max_num_special_temps)
566 * | . |
567 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700568 * | V[max_num_special_temps + 1] |
569 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700570 * +-------------------------------+
571 * | OUT[outs-1] |
572 * | OUT[outs-2] |
573 * | . |
574 * | OUT[0] |
Mathieu Chartiere401d142015-04-22 13:56:20 -0700575 * | ArtMethod* | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700576 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700577 */
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000578 static int GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
579 uint32_t core_spills, uint32_t fp_spills,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700580 size_t frame_size, int reg, InstructionSet isa);
Ian Rogers0399dde2012-06-06 17:09:28 -0700581
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000582 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
buzbee82818642014-06-04 15:35:41 -0700583 // According to stack model, the first out is above the Method referernce.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700584 return InstructionSetPointerSize(isa) + out_num * sizeof(uint32_t);
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800585 }
586
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100587 bool IsInInlinedFrame() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100588 return current_inlining_depth_ != 0;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100589 }
590
Ian Rogers0399dde2012-06-06 17:09:28 -0700591 uintptr_t GetCurrentQuickFramePc() const {
592 return cur_quick_frame_pc_;
593 }
594
Mathieu Chartiere401d142015-04-22 13:56:20 -0700595 ArtMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700596 return cur_quick_frame_;
597 }
598
599 ShadowFrame* GetCurrentShadowFrame() const {
600 return cur_shadow_frame_;
601 }
602
Mathieu Chartiere401d142015-04-22 13:56:20 -0700603 HandleScope* GetCurrentHandleScope(size_t pointer_size) const {
604 ArtMethod** sp = GetCurrentQuickFrame();
605 // Skip ArtMethod*; handle scope comes next;
606 return reinterpret_cast<HandleScope*>(reinterpret_cast<uintptr_t>(sp) + pointer_size);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700607 }
608
Ian Rogers40e3bac2012-11-20 00:09:14 -0800609 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
610
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100611 static size_t ComputeNumFrames(Thread* thread, StackWalkKind walk_kind)
612 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800613
Ian Rogers7a22fa62013-01-23 12:16:16 -0800614 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800615
Ian Rogers0399dde2012-06-06 17:09:28 -0700616 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700617 // Private constructor known in the case that num_frames_ has already been computed.
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100618 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind, size_t num_frames)
Ian Rogers5cf98192014-05-29 21:31:50 -0700619 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
620
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100621 bool IsAccessibleRegister(uint32_t reg, bool is_float) const {
622 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg);
623 }
624 uintptr_t GetRegister(uint32_t reg, bool is_float) const {
625 DCHECK(IsAccessibleRegister(reg, is_float));
626 return is_float ? GetFPR(reg) : GetGPR(reg);
627 }
628 void SetRegister(uint32_t reg, uintptr_t value, bool is_float) {
629 DCHECK(IsAccessibleRegister(reg, is_float));
630 if (is_float) {
631 SetFPR(reg, value);
632 } else {
633 SetGPR(reg, value);
634 }
635 }
636
637 bool IsAccessibleGPR(uint32_t reg) const;
638 uintptr_t GetGPR(uint32_t reg) const;
639 void SetGPR(uint32_t reg, uintptr_t value);
640
641 bool IsAccessibleFPR(uint32_t reg) const;
642 uintptr_t GetFPR(uint32_t reg) const;
643 void SetFPR(uint32_t reg, uintptr_t value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200644
Mathieu Chartiere401d142015-04-22 13:56:20 -0700645 bool GetVRegFromQuickCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100646 uint32_t* val) const
647 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700648 bool GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100649 uint32_t* val) const
650 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
651 bool GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const
652 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
653
Mathieu Chartiere401d142015-04-22 13:56:20 -0700654 bool GetVRegPairFromQuickCode(ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100655 VRegKind kind_hi, uint64_t* val) const
656 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700657 bool GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100658 VRegKind kind_lo, VRegKind kind_hi,
659 uint64_t* val) const
660 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
661 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
662 uint64_t* val) const
663 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
664
Mathieu Chartiere401d142015-04-22 13:56:20 -0700665 bool SetVRegFromQuickCode(ArtMethod* m, uint16_t vreg, uint32_t new_value,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100666 VRegKind kind)
667 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100668 bool SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind)
669 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
670
Mathieu Chartiere401d142015-04-22 13:56:20 -0700671 bool SetVRegPairFromQuickCode(ArtMethod* m, uint16_t vreg, uint64_t new_value,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100672 VRegKind kind_lo, VRegKind kind_hi)
673 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100674 bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,
675 bool is_float)
676 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
677
Ian Rogersb726dcb2012-09-05 08:57:23 -0700678 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700679
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100680 InlineInfo GetCurrentInlineInfo() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
681
Ian Rogers7a22fa62013-01-23 12:16:16 -0800682 Thread* const thread_;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100683 const StackWalkKind walk_kind_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700684 ShadowFrame* cur_shadow_frame_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700685 ArtMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700686 uintptr_t cur_quick_frame_pc_;
687 // Lazily computed, number of frames in the stack.
688 size_t num_frames_;
689 // Depth of the frame we're currently at.
690 size_t cur_depth_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100691 // Current inlining depth of the method we are currently at.
692 // 0 if there is no inlined frame.
693 size_t current_inlining_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700694
Ian Rogers0399dde2012-06-06 17:09:28 -0700695 protected:
696 Context* const context_;
697};
698
Elliott Hughes68e76522011-10-05 13:22:16 -0700699} // namespace art
700
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700701#endif // ART_RUNTIME_STACK_H_