blob: fbb0aa4c0fce0a1ff167b6cf1af469f269b4b0f1 [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.
TDYa127ce4cc0d2012-11-18 16:59:53 -080077 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070078 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
83 // Create ShadowFrame for interpreter using provided memory.
84 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070085 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080086 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
87 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070088 }
89 ~ShadowFrame() {}
90
TDYa127ce4cc0d2012-11-18 16:59:53 -080091 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070092 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -070093 }
Elliott Hughes68e76522011-10-05 13:22:16 -070094
TDYa127ce4cc0d2012-11-18 16:59:53 -080095 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070096 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -070097 }
98
Ian Rogers0399dde2012-06-06 17:09:28 -070099 uint32_t GetDexPC() const {
100 return dex_pc_;
101 }
102
103 void SetDexPC(uint32_t dex_pc) {
104 dex_pc_ = dex_pc;
105 }
106
Ian Rogers0399dde2012-06-06 17:09:28 -0700107 ShadowFrame* GetLink() const {
108 return link_;
109 }
110
111 void SetLink(ShadowFrame* frame) {
112 DCHECK_NE(this, frame);
113 link_ = frame;
114 }
115
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700116 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800117 DCHECK_LT(i, NumberOfVRegs());
118 const uint32_t* vreg = &vregs_[i];
119 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700120 }
121
122 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800123 DCHECK_LT(i, NumberOfVRegs());
124 // NOTE: Strict-aliasing?
125 const uint32_t* vreg = &vregs_[i];
126 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700127 }
128
129 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200130 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800131 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700132 // Alignment attribute required for GCC 4.8
133 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
134 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700135 }
136
137 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200138 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800139 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700140 // Alignment attribute required for GCC 4.8
141 typedef const double unaligned_double __attribute__ ((aligned (4)));
142 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800143 }
144
Mathieu Chartier4e305412014-02-19 10:54:44 -0800145 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800146 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800147 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800148 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800149 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800150 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800151 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800152 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800153 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800154 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800155 if (kUseReadBarrier) {
156 ReadBarrier::AssertToSpaceInvariant(ref);
157 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800158 if (kVerifyFlags & kVerifyReads) {
159 VerifyObject(ref);
160 }
161 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700162 }
163
Jeff Hao16743632013-05-08 10:59:04 -0700164 // Get view of vregs as range of consecutive arguments starting at i.
165 uint32_t* GetVRegArgs(size_t i) {
166 return &vregs_[i];
167 }
168
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700169 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800170 DCHECK_LT(i, NumberOfVRegs());
171 uint32_t* vreg = &vregs_[i];
172 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700173 // This is needed for moving collectors since these can update the vreg references if they
174 // happen to agree with references in the reference array.
175 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800176 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700177 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700178 }
179
180 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800181 DCHECK_LT(i, NumberOfVRegs());
182 uint32_t* vreg = &vregs_[i];
183 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700184 // This is needed for moving collectors since these can update the vreg references if they
185 // happen to agree with references in the reference array.
186 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800187 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700188 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700189 }
190
191 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200192 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800193 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700194 // Alignment attribute required for GCC 4.8
195 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
196 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700197 // This is needed for moving collectors since these can update the vreg references if they
198 // happen to agree with references in the reference array.
199 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800200 References()[i].Clear();
201 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700202 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700203 }
204
205 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200206 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800207 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700208 // Alignment attribute required for GCC 4.8
209 typedef double unaligned_double __attribute__ ((aligned (4)));
210 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700211 // This is needed for moving collectors since these can update the vreg references if they
212 // happen to agree with references in the reference array.
213 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800214 References()[i].Clear();
215 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700216 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700217 }
218
Mathieu Chartier4e305412014-02-19 10:54:44 -0800219 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800220 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800221 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800222 if (kVerifyFlags & kVerifyWrites) {
223 VerifyObject(val);
224 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800225 if (kUseReadBarrier) {
226 ReadBarrier::AssertToSpaceInvariant(val);
227 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800228 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800229 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800230 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800231 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800232 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700233 }
234
Ian Rogersef7d42f2014-01-06 12:55:46 -0800235 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
236 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700237 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700238 }
239
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700240 mirror::ArtMethod** GetMethodAddress() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
241 DCHECK(method_ != nullptr);
242 return &method_;
243 }
244
Ian Rogers62d6c772013-02-27 08:32:07 -0800245 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
246
Jeff Haoe701f482013-05-24 11:50:49 -0700247 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
248
Ian Rogersef7d42f2014-01-06 12:55:46 -0800249 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800250 if (HasReferenceArray()) {
251 return ((&References()[0] <= shadow_frame_entry_obj) &&
252 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
253 } else {
254 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
255 return ((&vregs_[0] <= shadow_frame_entry) &&
256 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700257 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700258 }
259
Ian Rogers0399dde2012-06-06 17:09:28 -0700260 static size_t LinkOffset() {
261 return OFFSETOF_MEMBER(ShadowFrame, link_);
262 }
263
Ian Rogers0399dde2012-06-06 17:09:28 -0700264 static size_t MethodOffset() {
265 return OFFSETOF_MEMBER(ShadowFrame, method_);
266 }
267
Ian Rogers0399dde2012-06-06 17:09:28 -0700268 static size_t DexPCOffset() {
269 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
270 }
271
Ian Rogers5438ad82012-10-15 17:22:44 -0700272 static size_t NumberOfVRegsOffset() {
273 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
274 }
275
TDYa127ce4cc0d2012-11-18 16:59:53 -0800276 static size_t VRegsOffset() {
277 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700278 }
279
Elliott Hughes68e76522011-10-05 13:22:16 -0700280 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700281 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800283 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
284 if (has_reference_array) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800285 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800286 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700287 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700288 }
289 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700290
Ian Rogersef7d42f2014-01-06 12:55:46 -0800291 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800292 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800293 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800294 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800295 }
296
Ian Rogersef7d42f2014-01-06 12:55:46 -0800297 StackReference<mirror::Object>* References() {
298 return const_cast<StackReference<mirror::Object>*>(const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800299 }
300
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700301 const uint32_t number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700302 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700303 ShadowFrame* link_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700304 mirror::ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700305 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800306 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700307
Ian Rogers0399dde2012-06-06 17:09:28 -0700308 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700309};
310
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800311class JavaFrameRootInfo : public RootInfo {
312 public:
313 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
314 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
315 }
316 virtual void Describe(std::ostream& os) const OVERRIDE
317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
318
319 private:
320 const StackVisitor* const stack_visitor_;
321 const size_t vreg_;
322};
323
Ian Rogers0399dde2012-06-06 17:09:28 -0700324// The managed stack is used to record fragments of managed code stacks. Managed code stacks
325// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
326// necessary for transitions between code using different frame layouts and transitions into native
327// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800328class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700329 public:
Ian Rogersca190662012-06-26 15:45:57 -0700330 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700331 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700332
333 void PushManagedStackFragment(ManagedStack* fragment) {
334 // Copy this top fragment into given fragment.
335 memcpy(fragment, this, sizeof(ManagedStack));
336 // Clear this fragment, which has become the top.
337 memset(this, 0, sizeof(ManagedStack));
338 // Link our top fragment onto the given fragment.
339 link_ = fragment;
340 }
341
342 void PopManagedStackFragment(const ManagedStack& fragment) {
343 DCHECK(&fragment == link_);
344 // Copy this given fragment back to the top.
345 memcpy(this, &fragment, sizeof(ManagedStack));
346 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700347
348 ManagedStack* GetLink() const {
349 return link_;
350 }
351
Andreas Gampecf4035a2014-05-28 22:43:01 -0700352 StackReference<mirror::ArtMethod>* GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700353 return top_quick_frame_;
354 }
355
Andreas Gampecf4035a2014-05-28 22:43:01 -0700356 void SetTopQuickFrame(StackReference<mirror::ArtMethod>* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700357 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700358 top_quick_frame_ = top;
359 }
360
Ian Rogers0399dde2012-06-06 17:09:28 -0700361 static size_t TopQuickFrameOffset() {
362 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
363 }
364
Ian Rogers0399dde2012-06-06 17:09:28 -0700365 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700366 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700367 ShadowFrame* old_frame = top_shadow_frame_;
368 top_shadow_frame_ = new_top_frame;
369 new_top_frame->SetLink(old_frame);
370 return old_frame;
371 }
372
373 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700374 DCHECK(top_quick_frame_ == nullptr);
375 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700376 ShadowFrame* frame = top_shadow_frame_;
377 top_shadow_frame_ = frame->GetLink();
378 return frame;
379 }
380
381 ShadowFrame* GetTopShadowFrame() const {
382 return top_shadow_frame_;
383 }
384
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800385 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700386 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800387 top_shadow_frame_ = top;
388 }
389
Ian Rogers0399dde2012-06-06 17:09:28 -0700390 static size_t TopShadowFrameOffset() {
391 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
392 }
393
Ian Rogersef7d42f2014-01-06 12:55:46 -0800394 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700395
Ian Rogersef7d42f2014-01-06 12:55:46 -0800396 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700397
398 private:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700399 StackReference<mirror::ArtMethod>* top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700400 ManagedStack* link_;
401 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700402};
403
404class StackVisitor {
405 protected:
Ian Rogers7a22fa62013-01-23 12:16:16 -0800406 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700407
408 public:
409 virtual ~StackVisitor() {}
410
411 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700412 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700413
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700414 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700416
Ian Rogersef7d42f2014-01-06 12:55:46 -0800417 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
418 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700419 return cur_shadow_frame_->GetMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800420 } else if (cur_quick_frame_ != nullptr) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700421 return cur_quick_frame_->AsMirrorPtr();
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700422 } else {
423 return nullptr;
424 }
425 }
426
Ian Rogers0399dde2012-06-06 17:09:28 -0700427 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800428 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700429 }
430
Dave Allisonb373e092014-02-20 16:06:36 -0800431 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700432
Ian Rogers62d6c772013-02-27 08:32:07 -0800433 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
434
Ian Rogers0c7abda2012-09-19 13:33:42 -0700435 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
436
Ian Rogersef7d42f2014-01-06 12:55:46 -0800437 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700439 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800440 DCHECK(GetMethod() != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700441 uint8_t* save_addr =
442 reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size - ((num + 1) * sizeof(void*));
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800443#if defined(__i386__) || defined(__x86_64__)
Ian Rogers13735952014-10-08 12:43:28 -0700444 save_addr -= sizeof(void*); // account for return address
Ian Rogers0399dde2012-06-06 17:09:28 -0700445#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800446 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700447 }
448
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700449 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700450 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800451 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700452 }
453
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700454 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700455 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700456 return GetFrameHeight() + 1;
457 }
458
Ian Rogersb726dcb2012-09-05 08:57:23 -0700459 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700460 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800461 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700462 }
463 return num_frames_;
464 }
465
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700466 size_t GetFrameDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
467 return cur_depth_;
468 }
469
Ian Rogers5cf98192014-05-29 21:31:50 -0700470 // Get the method and dex pc immediately after the one that's currently being visited.
471 bool GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc)
472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
473
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200474 bool GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700476
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200477 bool GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
478 uint64_t* val) const
479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
480
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200481 bool SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700483
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200484 bool SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
485 VRegKind kind_lo, VRegKind kind_hi)
486 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
487
Mathieu Chartier815873e2014-02-13 18:02:13 -0800488 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700489
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700490 // This is a fast-path for getting/setting values in a quick frame.
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000491 uint32_t* GetVRegAddrFromQuickCode(StackReference<mirror::ArtMethod>* cur_quick_frame,
492 const DexFile::CodeItem* code_item,
493 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
494 uint16_t vreg) const {
495 int offset = GetVRegOffsetFromQuickCode(
496 code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700497 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700498 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700499 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700500 }
501
Ian Rogersef7d42f2014-01-06 12:55:46 -0800502 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700503
Ian Rogersef7d42f2014-01-06 12:55:46 -0800504 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700505
506 /*
507 * Return sp-relative offset for a Dalvik virtual register, compiler
508 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700509 * Note that (reg == -1) denotes an invalid Dalvik register. For the
510 * positive values, the Dalvik registers come first, followed by the
511 * Method*, followed by other special temporaries if any, followed by
512 * regular compiler temporary. As of now we only have the Method* as
513 * as a special compiler temporary.
514 * A compiler temporary can be thought of as a virtual register that
515 * does not exist in the dex but holds intermediate values to help
516 * optimizations and code generation. A special compiler temporary is
517 * one whose location in frame is well known while non-special ones
518 * do not have a requirement on location in frame as long as code
519 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700520 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700521 * +-------------------------------+
522 * | IN[ins-1] | {Note: resides in caller's frame}
523 * | . |
524 * | IN[0] |
525 * | caller's ArtMethod | ... StackReference<ArtMethod>
526 * +===============================+ {Note: start of callee's frame}
527 * | core callee-save spill | {variable sized}
528 * +-------------------------------+
529 * | fp callee-save spill |
530 * +-------------------------------+
531 * | filler word | {For compatibility, if V[locals-1] used as wide
532 * +-------------------------------+
533 * | V[locals-1] |
534 * | V[locals-2] |
535 * | . |
536 * | . | ... (reg == 2)
537 * | V[1] | ... (reg == 1)
538 * | V[0] | ... (reg == 0) <---- "locals_start"
539 * +-------------------------------+
540 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
541 * +-------------------------------+
542 * | Compiler temp region | ... (reg >= max_num_special_temps)
543 * | . |
544 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700545 * | V[max_num_special_temps + 1] |
546 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700547 * +-------------------------------+
548 * | OUT[outs-1] |
549 * | OUT[outs-2] |
550 * | . |
551 * | OUT[0] |
552 * | StackReference<ArtMethod> | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
553 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700554 */
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000555 static int GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
556 uint32_t core_spills, uint32_t fp_spills,
557 size_t frame_size, int reg, InstructionSet isa) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700558 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700559 DCHECK_NE(reg, -1);
Vladimir Marko81949632014-05-02 11:53:22 +0100560 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
561 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000562 + sizeof(uint32_t); // Filler.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700563 int num_regs = code_item->registers_size_ - code_item->ins_size_;
564 int temp_threshold = code_item->registers_size_;
565 const int max_num_special_temps = 1;
566 if (reg == temp_threshold) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800567 // The current method pointer corresponds to special location on stack.
568 return 0;
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700569 } else if (reg >= temp_threshold + max_num_special_temps) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800570 /*
571 * Special temporaries may have custom locations and the logic above deals with that.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700572 * However, non-special temporaries are placed relative to the outs.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800573 */
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700574 int temps_start = sizeof(StackReference<mirror::ArtMethod>) + code_item->outs_size_ * sizeof(uint32_t);
575 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
576 return temps_start + relative_offset;
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800577 } else if (reg < num_regs) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700578 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800579 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700580 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800581 // Handle ins.
buzbee82818642014-06-04 15:35:41 -0700582 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) +
583 sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700584 }
585 }
586
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000587 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700588 UNUSED(isa);
buzbee82818642014-06-04 15:35:41 -0700589 // According to stack model, the first out is above the Method referernce.
590 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800591 }
592
Ian Rogers0399dde2012-06-06 17:09:28 -0700593 uintptr_t GetCurrentQuickFramePc() const {
594 return cur_quick_frame_pc_;
595 }
596
Andreas Gampecf4035a2014-05-28 22:43:01 -0700597 StackReference<mirror::ArtMethod>* GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700598 return cur_quick_frame_;
599 }
600
601 ShadowFrame* GetCurrentShadowFrame() const {
602 return cur_shadow_frame_;
603 }
604
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700605 HandleScope* GetCurrentHandleScope() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700606 StackReference<mirror::ArtMethod>* sp = GetCurrentQuickFrame();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700607 ++sp; // Skip Method*; handle scope comes next;
608 return reinterpret_cast<HandleScope*>(sp);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700609 }
610
Ian Rogers40e3bac2012-11-20 00:09:14 -0800611 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
612
Ian Rogers7a22fa62013-01-23 12:16:16 -0800613 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800614
Ian Rogers7a22fa62013-01-23 12:16:16 -0800615 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800616
Ian Rogers0399dde2012-06-06 17:09:28 -0700617 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700618 // Private constructor known in the case that num_frames_ has already been computed.
619 StackVisitor(Thread* thread, Context* context, size_t num_frames)
620 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
621
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100622 bool IsAccessibleRegister(uint32_t reg, bool is_float) const {
623 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg);
624 }
625 uintptr_t GetRegister(uint32_t reg, bool is_float) const {
626 DCHECK(IsAccessibleRegister(reg, is_float));
627 return is_float ? GetFPR(reg) : GetGPR(reg);
628 }
629 void SetRegister(uint32_t reg, uintptr_t value, bool is_float) {
630 DCHECK(IsAccessibleRegister(reg, is_float));
631 if (is_float) {
632 SetFPR(reg, value);
633 } else {
634 SetGPR(reg, value);
635 }
636 }
637
638 bool IsAccessibleGPR(uint32_t reg) const;
639 uintptr_t GetGPR(uint32_t reg) const;
640 void SetGPR(uint32_t reg, uintptr_t value);
641
642 bool IsAccessibleFPR(uint32_t reg) const;
643 uintptr_t GetFPR(uint32_t reg) const;
644 void SetFPR(uint32_t reg, uintptr_t value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200645
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100646 bool GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
647 uint32_t* val) const
648 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
649 bool GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
650 uint32_t* val) const
651 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
652 bool GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const
653 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
654
655 bool GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
656 VRegKind kind_hi, uint64_t* val) const
657 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
658 bool GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
659 VRegKind kind_lo, VRegKind kind_hi,
660 uint64_t* val) const
661 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
662 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
663 uint64_t* val) const
664 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
665
666 bool SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
667 VRegKind kind)
668 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
669 bool SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
670 VRegKind kind)
671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
672 bool SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind)
673 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
674
675 bool SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
676 VRegKind kind_lo, VRegKind kind_hi)
677 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
678 bool SetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
679 VRegKind kind_lo, VRegKind kind_hi)
680 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
681 bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,
682 bool is_float)
683 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
684
Ian Rogersb726dcb2012-09-05 08:57:23 -0700685 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700686
Ian Rogers7a22fa62013-01-23 12:16:16 -0800687 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700688 ShadowFrame* cur_shadow_frame_;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700689 StackReference<mirror::ArtMethod>* cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700690 uintptr_t cur_quick_frame_pc_;
691 // Lazily computed, number of frames in the stack.
692 size_t num_frames_;
693 // Depth of the frame we're currently at.
694 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700695
Ian Rogers0399dde2012-06-06 17:09:28 -0700696 protected:
697 Context* const context_;
698};
699
Elliott Hughes68e76522011-10-05 13:22:16 -0700700} // namespace art
701
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700702#endif // ART_RUNTIME_STACK_H_