blob: 3f1bff8b9cd95fe20961b637056032d928de3c3c [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"
Ian Rogerse63db272014-07-15 15:36:11 -070024#include "dex_file.h"
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080025#include "gc_root.h"
Ian Rogerse63db272014-07-15 15:36:11 -070026#include "mirror/object_reference.h"
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080027#include "read_barrier.h"
Ian Rogerse63db272014-07-15 15:36:11 -070028#include "utils.h"
29#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 ArtMethod;
35 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036} // namespace mirror
37
38class Context;
Ian Rogers0399dde2012-06-06 17:09:28 -070039class ShadowFrame;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070040class HandleScope;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041class ScopedObjectAccess;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000042class StackVisitor;
Elliott Hughes68e76522011-10-05 13:22:16 -070043class Thread;
44
Ian Rogers2bcb4a42012-11-08 10:39:18 -080045// The kind of vreg being accessed in calls to Set/GetVReg.
46enum VRegKind {
47 kReferenceVReg,
48 kIntVReg,
49 kFloatVReg,
50 kLongLoVReg,
51 kLongHiVReg,
52 kDoubleLoVReg,
53 kDoubleHiVReg,
54 kConstant,
55 kImpreciseConstant,
56 kUndefined,
57};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070058std::ostream& operator<<(std::ostream& os, const VRegKind& rhs);
Ian Rogers2bcb4a42012-11-08 10:39:18 -080059
Ian Rogersef7d42f2014-01-06 12:55:46 -080060// A reference from the shadow stack to a MirrorType object within the Java heap.
61template<class MirrorType>
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070062class MANAGED StackReference : public mirror::CompressedReference<MirrorType> {
Ian Rogersef7d42f2014-01-06 12:55:46 -080063};
64
Elliott Hughes956af0f2014-12-11 14:34:28 -080065// ShadowFrame has 2 possible layouts:
Mathieu Chartier67022432012-11-29 18:04:50 -080066// - interpreter - separate VRegs and reference arrays. References are in the reference array.
67// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -070068class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -070069 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -080070 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -070071 static size_t ComputeSize(uint32_t num_vregs) {
72 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -080073 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -070074 }
75
76 // Create ShadowFrame in heap for deoptimization.
Christopher Ferris241a9582015-04-27 15:19:41 -070077 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link,
78 mirror::ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -070079 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Sebastien Hertzc61124b2013-09-10 11:44:19 +020080 return Create(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -070081 }
82
Christopher Ferris241a9582015-04-27 15:19:41 -070083 // Delete a ShadowFrame allocated on the heap for deoptimization.
84 static void DeleteDeoptimizedFrame(ShadowFrame* sf) {
85 uint8_t* memory = reinterpret_cast<uint8_t*>(sf);
86 delete[] memory;
87 }
88
Jeff Hao66135192013-05-14 11:02:41 -070089 // Create ShadowFrame for interpreter using provided memory.
90 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070091 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080092 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
93 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070094 }
95 ~ShadowFrame() {}
96
TDYa127ce4cc0d2012-11-18 16:59:53 -080097 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070098 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -070099 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700100
TDYa127ce4cc0d2012-11-18 16:59:53 -0800101 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700102 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700103 }
104
Ian Rogers0399dde2012-06-06 17:09:28 -0700105 uint32_t GetDexPC() const {
106 return dex_pc_;
107 }
108
109 void SetDexPC(uint32_t dex_pc) {
110 dex_pc_ = dex_pc;
111 }
112
Ian Rogers0399dde2012-06-06 17:09:28 -0700113 ShadowFrame* GetLink() const {
114 return link_;
115 }
116
117 void SetLink(ShadowFrame* frame) {
118 DCHECK_NE(this, frame);
119 link_ = frame;
120 }
121
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700122 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800123 DCHECK_LT(i, NumberOfVRegs());
124 const uint32_t* vreg = &vregs_[i];
125 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700126 }
127
128 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800129 DCHECK_LT(i, NumberOfVRegs());
130 // NOTE: Strict-aliasing?
131 const uint32_t* vreg = &vregs_[i];
132 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700133 }
134
135 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200136 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800137 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700138 // Alignment attribute required for GCC 4.8
139 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
140 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700141 }
142
143 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200144 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800145 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700146 // Alignment attribute required for GCC 4.8
147 typedef const double unaligned_double __attribute__ ((aligned (4)));
148 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800149 }
150
Mathieu Chartier4e305412014-02-19 10:54:44 -0800151 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800152 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800153 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800154 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800155 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800156 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800157 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800158 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800159 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800160 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800161 if (kUseReadBarrier) {
162 ReadBarrier::AssertToSpaceInvariant(ref);
163 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800164 if (kVerifyFlags & kVerifyReads) {
165 VerifyObject(ref);
166 }
167 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700168 }
169
Jeff Hao16743632013-05-08 10:59:04 -0700170 // Get view of vregs as range of consecutive arguments starting at i.
171 uint32_t* GetVRegArgs(size_t i) {
172 return &vregs_[i];
173 }
174
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700175 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800176 DCHECK_LT(i, NumberOfVRegs());
177 uint32_t* vreg = &vregs_[i];
178 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700179 // This is needed for moving collectors since these can update the vreg references if they
180 // happen to agree with references in the reference array.
181 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800182 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700183 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700184 }
185
186 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800187 DCHECK_LT(i, NumberOfVRegs());
188 uint32_t* vreg = &vregs_[i];
189 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700190 // This is needed for moving collectors since these can update the vreg references if they
191 // happen to agree with references in the reference array.
192 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800193 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700194 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700195 }
196
197 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200198 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800199 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700200 // Alignment attribute required for GCC 4.8
201 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
202 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700203 // This is needed for moving collectors since these can update the vreg references if they
204 // happen to agree with references in the reference array.
205 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800206 References()[i].Clear();
207 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700208 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700209 }
210
211 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200212 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800213 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700214 // Alignment attribute required for GCC 4.8
215 typedef double unaligned_double __attribute__ ((aligned (4)));
216 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700217 // This is needed for moving collectors since these can update the vreg references if they
218 // happen to agree with references in the reference array.
219 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800220 References()[i].Clear();
221 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700222 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700223 }
224
Mathieu Chartier4e305412014-02-19 10:54:44 -0800225 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800226 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800227 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800228 if (kVerifyFlags & kVerifyWrites) {
229 VerifyObject(val);
230 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800231 if (kUseReadBarrier) {
232 ReadBarrier::AssertToSpaceInvariant(val);
233 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800234 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800235 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800236 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800237 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800238 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700239 }
240
Ian Rogersef7d42f2014-01-06 12:55:46 -0800241 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
242 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700243 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700244 }
245
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700246 mirror::ArtMethod** GetMethodAddress() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
247 DCHECK(method_ != nullptr);
248 return &method_;
249 }
250
Ian Rogers62d6c772013-02-27 08:32:07 -0800251 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
252
Jeff Haoe701f482013-05-24 11:50:49 -0700253 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
254
Ian Rogersef7d42f2014-01-06 12:55:46 -0800255 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800256 if (HasReferenceArray()) {
257 return ((&References()[0] <= shadow_frame_entry_obj) &&
258 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
259 } else {
260 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
261 return ((&vregs_[0] <= shadow_frame_entry) &&
262 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700263 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700264 }
265
Ian Rogers0399dde2012-06-06 17:09:28 -0700266 static size_t LinkOffset() {
267 return OFFSETOF_MEMBER(ShadowFrame, link_);
268 }
269
Ian Rogers0399dde2012-06-06 17:09:28 -0700270 static size_t MethodOffset() {
271 return OFFSETOF_MEMBER(ShadowFrame, method_);
272 }
273
Ian Rogers0399dde2012-06-06 17:09:28 -0700274 static size_t DexPCOffset() {
275 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
276 }
277
Ian Rogers5438ad82012-10-15 17:22:44 -0700278 static size_t NumberOfVRegsOffset() {
279 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
280 }
281
TDYa127ce4cc0d2012-11-18 16:59:53 -0800282 static size_t VRegsOffset() {
283 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700284 }
285
Elliott Hughes68e76522011-10-05 13:22:16 -0700286 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700287 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800289 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
290 if (has_reference_array) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800291 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800292 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700293 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700294 }
295 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700296
Ian Rogersef7d42f2014-01-06 12:55:46 -0800297 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800298 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800299 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800301 }
302
Ian Rogersef7d42f2014-01-06 12:55:46 -0800303 StackReference<mirror::Object>* References() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700304 return const_cast<StackReference<mirror::Object>*>(
305 const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800306 }
307
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700308 const uint32_t number_of_vregs_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700309 // Link to previous shadow frame or null.
Ian Rogers0399dde2012-06-06 17:09:28 -0700310 ShadowFrame* link_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700311 mirror::ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700312 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800313 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700314
Ian Rogers0399dde2012-06-06 17:09:28 -0700315 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700316};
317
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800318class JavaFrameRootInfo : public RootInfo {
319 public:
320 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
321 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
322 }
323 virtual void Describe(std::ostream& os) const OVERRIDE
324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
325
326 private:
327 const StackVisitor* const stack_visitor_;
328 const size_t vreg_;
329};
330
Ian Rogers0399dde2012-06-06 17:09:28 -0700331// The managed stack is used to record fragments of managed code stacks. Managed code stacks
332// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
333// necessary for transitions between code using different frame layouts and transitions into native
334// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800335class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700336 public:
Ian Rogersca190662012-06-26 15:45:57 -0700337 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700338 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700339
340 void PushManagedStackFragment(ManagedStack* fragment) {
341 // Copy this top fragment into given fragment.
342 memcpy(fragment, this, sizeof(ManagedStack));
343 // Clear this fragment, which has become the top.
344 memset(this, 0, sizeof(ManagedStack));
345 // Link our top fragment onto the given fragment.
346 link_ = fragment;
347 }
348
349 void PopManagedStackFragment(const ManagedStack& fragment) {
350 DCHECK(&fragment == link_);
351 // Copy this given fragment back to the top.
352 memcpy(this, &fragment, sizeof(ManagedStack));
353 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700354
355 ManagedStack* GetLink() const {
356 return link_;
357 }
358
Andreas Gampecf4035a2014-05-28 22:43:01 -0700359 StackReference<mirror::ArtMethod>* GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700360 return top_quick_frame_;
361 }
362
Andreas Gampecf4035a2014-05-28 22:43:01 -0700363 void SetTopQuickFrame(StackReference<mirror::ArtMethod>* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700364 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700365 top_quick_frame_ = top;
366 }
367
Ian Rogers0399dde2012-06-06 17:09:28 -0700368 static size_t TopQuickFrameOffset() {
369 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
370 }
371
Ian Rogers0399dde2012-06-06 17:09:28 -0700372 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700373 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700374 ShadowFrame* old_frame = top_shadow_frame_;
375 top_shadow_frame_ = new_top_frame;
376 new_top_frame->SetLink(old_frame);
377 return old_frame;
378 }
379
380 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700381 DCHECK(top_quick_frame_ == nullptr);
382 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700383 ShadowFrame* frame = top_shadow_frame_;
384 top_shadow_frame_ = frame->GetLink();
385 return frame;
386 }
387
388 ShadowFrame* GetTopShadowFrame() const {
389 return top_shadow_frame_;
390 }
391
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800392 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700393 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800394 top_shadow_frame_ = top;
395 }
396
Ian Rogers0399dde2012-06-06 17:09:28 -0700397 static size_t TopShadowFrameOffset() {
398 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
399 }
400
Ian Rogersef7d42f2014-01-06 12:55:46 -0800401 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700402
Ian Rogersef7d42f2014-01-06 12:55:46 -0800403 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700404
405 private:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700406 StackReference<mirror::ArtMethod>* top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700407 ManagedStack* link_;
408 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700409};
410
411class StackVisitor {
412 protected:
Ian Rogers7a22fa62013-01-23 12:16:16 -0800413 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700414
415 public:
416 virtual ~StackVisitor() {}
417
418 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700420
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700421 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700423
Ian Rogersef7d42f2014-01-06 12:55:46 -0800424 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
425 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700426 return cur_shadow_frame_->GetMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800427 } else if (cur_quick_frame_ != nullptr) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700428 return cur_quick_frame_->AsMirrorPtr();
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700429 } else {
430 return nullptr;
431 }
432 }
433
Ian Rogers0399dde2012-06-06 17:09:28 -0700434 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800435 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700436 }
437
Dave Allisonb373e092014-02-20 16:06:36 -0800438 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700439
Ian Rogers62d6c772013-02-27 08:32:07 -0800440 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
441
Ian Rogers0c7abda2012-09-19 13:33:42 -0700442 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
443
Ian Rogersef7d42f2014-01-06 12:55:46 -0800444 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
445 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700446 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800447 DCHECK(GetMethod() != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700448 uint8_t* save_addr =
449 reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size - ((num + 1) * sizeof(void*));
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800450#if defined(__i386__) || defined(__x86_64__)
Ian Rogers13735952014-10-08 12:43:28 -0700451 save_addr -= sizeof(void*); // account for return address
Ian Rogers0399dde2012-06-06 17:09:28 -0700452#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800453 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700454 }
455
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700456 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700457 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800458 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700459 }
460
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700461 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700462 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700463 return GetFrameHeight() + 1;
464 }
465
Ian Rogersb726dcb2012-09-05 08:57:23 -0700466 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700467 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800468 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700469 }
470 return num_frames_;
471 }
472
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700473 size_t GetFrameDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
474 return cur_depth_;
475 }
476
Ian Rogers5cf98192014-05-29 21:31:50 -0700477 // Get the method and dex pc immediately after the one that's currently being visited.
478 bool GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc)
479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
480
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200481 bool GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700483
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200484 bool GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
485 uint64_t* val) const
486 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
487
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200488 bool SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700489 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700490
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200491 bool SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
492 VRegKind kind_lo, VRegKind kind_hi)
493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
494
Mathieu Chartier815873e2014-02-13 18:02:13 -0800495 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700496
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700497 // This is a fast-path for getting/setting values in a quick frame.
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000498 uint32_t* GetVRegAddrFromQuickCode(StackReference<mirror::ArtMethod>* cur_quick_frame,
499 const DexFile::CodeItem* code_item,
500 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
501 uint16_t vreg) const {
502 int offset = GetVRegOffsetFromQuickCode(
503 code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700504 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700505 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700506 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700507 }
508
Ian Rogersef7d42f2014-01-06 12:55:46 -0800509 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700510
Ian Rogersef7d42f2014-01-06 12:55:46 -0800511 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700512
513 /*
514 * Return sp-relative offset for a Dalvik virtual register, compiler
515 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700516 * Note that (reg == -1) denotes an invalid Dalvik register. For the
517 * positive values, the Dalvik registers come first, followed by the
518 * Method*, followed by other special temporaries if any, followed by
519 * regular compiler temporary. As of now we only have the Method* as
520 * as a special compiler temporary.
521 * A compiler temporary can be thought of as a virtual register that
522 * does not exist in the dex but holds intermediate values to help
523 * optimizations and code generation. A special compiler temporary is
524 * one whose location in frame is well known while non-special ones
525 * do not have a requirement on location in frame as long as code
526 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700527 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700528 * +-------------------------------+
529 * | IN[ins-1] | {Note: resides in caller's frame}
530 * | . |
531 * | IN[0] |
532 * | caller's ArtMethod | ... StackReference<ArtMethod>
533 * +===============================+ {Note: start of callee's frame}
534 * | core callee-save spill | {variable sized}
535 * +-------------------------------+
536 * | fp callee-save spill |
537 * +-------------------------------+
538 * | filler word | {For compatibility, if V[locals-1] used as wide
539 * +-------------------------------+
540 * | V[locals-1] |
541 * | V[locals-2] |
542 * | . |
543 * | . | ... (reg == 2)
544 * | V[1] | ... (reg == 1)
545 * | V[0] | ... (reg == 0) <---- "locals_start"
546 * +-------------------------------+
547 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
548 * +-------------------------------+
549 * | Compiler temp region | ... (reg >= max_num_special_temps)
550 * | . |
551 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700552 * | V[max_num_special_temps + 1] |
553 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700554 * +-------------------------------+
555 * | OUT[outs-1] |
556 * | OUT[outs-2] |
557 * | . |
558 * | OUT[0] |
559 * | StackReference<ArtMethod> | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
560 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700561 */
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000562 static int GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
563 uint32_t core_spills, uint32_t fp_spills,
564 size_t frame_size, int reg, InstructionSet isa) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700565 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700566 DCHECK_NE(reg, -1);
Vladimir Marko81949632014-05-02 11:53:22 +0100567 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
568 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000569 + sizeof(uint32_t); // Filler.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700570 int num_regs = code_item->registers_size_ - code_item->ins_size_;
571 int temp_threshold = code_item->registers_size_;
572 const int max_num_special_temps = 1;
573 if (reg == temp_threshold) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800574 // The current method pointer corresponds to special location on stack.
575 return 0;
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700576 } else if (reg >= temp_threshold + max_num_special_temps) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800577 /*
578 * Special temporaries may have custom locations and the logic above deals with that.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700579 * However, non-special temporaries are placed relative to the outs.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800580 */
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700581 int temps_start = sizeof(StackReference<mirror::ArtMethod>) +
582 code_item->outs_size_ * sizeof(uint32_t);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700583 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
584 return temps_start + relative_offset;
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800585 } else if (reg < num_regs) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700586 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800587 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700588 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800589 // Handle ins.
buzbee82818642014-06-04 15:35:41 -0700590 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) +
591 sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700592 }
593 }
594
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000595 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700596 UNUSED(isa);
buzbee82818642014-06-04 15:35:41 -0700597 // According to stack model, the first out is above the Method referernce.
598 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800599 }
600
Ian Rogers0399dde2012-06-06 17:09:28 -0700601 uintptr_t GetCurrentQuickFramePc() const {
602 return cur_quick_frame_pc_;
603 }
604
Andreas Gampecf4035a2014-05-28 22:43:01 -0700605 StackReference<mirror::ArtMethod>* GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700606 return cur_quick_frame_;
607 }
608
609 ShadowFrame* GetCurrentShadowFrame() const {
610 return cur_shadow_frame_;
611 }
612
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700613 HandleScope* GetCurrentHandleScope() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700614 StackReference<mirror::ArtMethod>* sp = GetCurrentQuickFrame();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700615 ++sp; // Skip Method*; handle scope comes next;
616 return reinterpret_cast<HandleScope*>(sp);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700617 }
618
Ian Rogers40e3bac2012-11-20 00:09:14 -0800619 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
620
Ian Rogers7a22fa62013-01-23 12:16:16 -0800621 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800622
Ian Rogers7a22fa62013-01-23 12:16:16 -0800623 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800624
Ian Rogers0399dde2012-06-06 17:09:28 -0700625 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700626 // Private constructor known in the case that num_frames_ has already been computed.
627 StackVisitor(Thread* thread, Context* context, size_t num_frames)
628 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
629
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100630 bool IsAccessibleRegister(uint32_t reg, bool is_float) const {
631 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg);
632 }
633 uintptr_t GetRegister(uint32_t reg, bool is_float) const {
634 DCHECK(IsAccessibleRegister(reg, is_float));
635 return is_float ? GetFPR(reg) : GetGPR(reg);
636 }
637 void SetRegister(uint32_t reg, uintptr_t value, bool is_float) {
638 DCHECK(IsAccessibleRegister(reg, is_float));
639 if (is_float) {
640 SetFPR(reg, value);
641 } else {
642 SetGPR(reg, value);
643 }
644 }
645
646 bool IsAccessibleGPR(uint32_t reg) const;
647 uintptr_t GetGPR(uint32_t reg) const;
648 void SetGPR(uint32_t reg, uintptr_t value);
649
650 bool IsAccessibleFPR(uint32_t reg) const;
651 uintptr_t GetFPR(uint32_t reg) const;
652 void SetFPR(uint32_t reg, uintptr_t value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200653
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100654 bool GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
655 uint32_t* val) const
656 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
657 bool GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
658 uint32_t* val) const
659 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
660 bool GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const
661 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
662
663 bool GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
664 VRegKind kind_hi, uint64_t* val) const
665 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
666 bool GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
667 VRegKind kind_lo, VRegKind kind_hi,
668 uint64_t* val) const
669 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
670 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
671 uint64_t* val) const
672 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
673
674 bool SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
675 VRegKind kind)
676 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100677 bool SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind)
678 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
679
680 bool SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
681 VRegKind kind_lo, VRegKind kind_hi)
682 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100683 bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,
684 bool is_float)
685 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
686
Ian Rogersb726dcb2012-09-05 08:57:23 -0700687 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700688
Ian Rogers7a22fa62013-01-23 12:16:16 -0800689 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700690 ShadowFrame* cur_shadow_frame_;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700691 StackReference<mirror::ArtMethod>* cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700692 uintptr_t cur_quick_frame_pc_;
693 // Lazily computed, number of frames in the stack.
694 size_t num_frames_;
695 // Depth of the frame we're currently at.
696 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700697
Ian Rogers0399dde2012-06-06 17:09:28 -0700698 protected:
699 Context* const context_;
700};
701
Elliott Hughes68e76522011-10-05 13:22:16 -0700702} // namespace art
703
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700704#endif // ART_RUNTIME_STACK_H_