blob: 0db0266a37a0be414c722b1173382595acf8de00 [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 ArtMethod;
35 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036} // namespace mirror
37
38class 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,
79 mirror::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,
Brian Carlstromea46f952013-07-30 01:26:50 -070092 mirror::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
TDYa127ce4cc0d2012-11-18 16:59:53 -080098 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070099 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700100 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700101
TDYa127ce4cc0d2012-11-18 16:59:53 -0800102 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700103 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700104 }
105
Ian Rogers0399dde2012-06-06 17:09:28 -0700106 uint32_t GetDexPC() const {
107 return dex_pc_;
108 }
109
110 void SetDexPC(uint32_t dex_pc) {
111 dex_pc_ = dex_pc;
112 }
113
Ian Rogers0399dde2012-06-06 17:09:28 -0700114 ShadowFrame* GetLink() const {
115 return link_;
116 }
117
118 void SetLink(ShadowFrame* frame) {
119 DCHECK_NE(this, frame);
120 link_ = frame;
121 }
122
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700123 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800124 DCHECK_LT(i, NumberOfVRegs());
125 const uint32_t* vreg = &vregs_[i];
126 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700127 }
128
129 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800130 DCHECK_LT(i, NumberOfVRegs());
131 // NOTE: Strict-aliasing?
132 const uint32_t* vreg = &vregs_[i];
133 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700134 }
135
136 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200137 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800138 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700139 // Alignment attribute required for GCC 4.8
140 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
141 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700142 }
143
144 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200145 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800146 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700147 // Alignment attribute required for GCC 4.8
148 typedef const double unaligned_double __attribute__ ((aligned (4)));
149 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800150 }
151
Mathieu Chartier4e305412014-02-19 10:54:44 -0800152 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800153 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800154 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800155 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800156 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800157 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800158 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800159 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800160 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800161 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800162 if (kUseReadBarrier) {
163 ReadBarrier::AssertToSpaceInvariant(ref);
164 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800165 if (kVerifyFlags & kVerifyReads) {
166 VerifyObject(ref);
167 }
168 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700169 }
170
Jeff Hao16743632013-05-08 10:59:04 -0700171 // Get view of vregs as range of consecutive arguments starting at i.
172 uint32_t* GetVRegArgs(size_t i) {
173 return &vregs_[i];
174 }
175
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700176 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800177 DCHECK_LT(i, NumberOfVRegs());
178 uint32_t* vreg = &vregs_[i];
179 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700180 // This is needed for moving collectors since these can update the vreg references if they
181 // happen to agree with references in the reference array.
182 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800183 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700184 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700185 }
186
187 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800188 DCHECK_LT(i, NumberOfVRegs());
189 uint32_t* vreg = &vregs_[i];
190 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700191 // This is needed for moving collectors since these can update the vreg references if they
192 // happen to agree with references in the reference array.
193 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800194 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700195 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700196 }
197
198 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200199 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800200 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700201 // Alignment attribute required for GCC 4.8
202 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
203 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700204 // This is needed for moving collectors since these can update the vreg references if they
205 // happen to agree with references in the reference array.
206 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800207 References()[i].Clear();
208 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700209 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700210 }
211
212 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200213 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800214 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700215 // Alignment attribute required for GCC 4.8
216 typedef double unaligned_double __attribute__ ((aligned (4)));
217 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700218 // This is needed for moving collectors since these can update the vreg references if they
219 // happen to agree with references in the reference array.
220 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800221 References()[i].Clear();
222 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700223 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700224 }
225
Mathieu Chartier4e305412014-02-19 10:54:44 -0800226 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800227 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800228 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800229 if (kVerifyFlags & kVerifyWrites) {
230 VerifyObject(val);
231 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800232 if (kUseReadBarrier) {
233 ReadBarrier::AssertToSpaceInvariant(val);
234 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800235 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800236 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800237 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800238 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800239 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700240 }
241
Ian Rogersef7d42f2014-01-06 12:55:46 -0800242 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
243 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700244 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700245 }
246
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700247 mirror::ArtMethod** GetMethodAddress() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
248 DCHECK(method_ != nullptr);
249 return &method_;
250 }
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:
Brian Carlstromea46f952013-07-30 01:26:50 -0700288 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::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) {
291 if (has_reference_array) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800292 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800293 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700294 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700295 }
296 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700297
Ian Rogersef7d42f2014-01-06 12:55:46 -0800298 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800299 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800300 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800301 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800302 }
303
Ian Rogersef7d42f2014-01-06 12:55:46 -0800304 StackReference<mirror::Object>* References() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700305 return const_cast<StackReference<mirror::Object>*>(
306 const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800307 }
308
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700309 const uint32_t number_of_vregs_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700310 // Link to previous shadow frame or null.
Ian Rogers0399dde2012-06-06 17:09:28 -0700311 ShadowFrame* link_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700312 mirror::ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700313 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800314 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700315
Ian Rogers0399dde2012-06-06 17:09:28 -0700316 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700317};
318
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800319class JavaFrameRootInfo : public RootInfo {
320 public:
321 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
322 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
323 }
324 virtual void Describe(std::ostream& os) const OVERRIDE
325 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
326
327 private:
328 const StackVisitor* const stack_visitor_;
329 const size_t vreg_;
330};
331
Ian Rogers0399dde2012-06-06 17:09:28 -0700332// The managed stack is used to record fragments of managed code stacks. Managed code stacks
333// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
334// necessary for transitions between code using different frame layouts and transitions into native
335// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800336class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700337 public:
Ian Rogersca190662012-06-26 15:45:57 -0700338 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700339 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700340
341 void PushManagedStackFragment(ManagedStack* fragment) {
342 // Copy this top fragment into given fragment.
343 memcpy(fragment, this, sizeof(ManagedStack));
344 // Clear this fragment, which has become the top.
345 memset(this, 0, sizeof(ManagedStack));
346 // Link our top fragment onto the given fragment.
347 link_ = fragment;
348 }
349
350 void PopManagedStackFragment(const ManagedStack& fragment) {
351 DCHECK(&fragment == link_);
352 // Copy this given fragment back to the top.
353 memcpy(this, &fragment, sizeof(ManagedStack));
354 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700355
356 ManagedStack* GetLink() const {
357 return link_;
358 }
359
Andreas Gampecf4035a2014-05-28 22:43:01 -0700360 StackReference<mirror::ArtMethod>* GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700361 return top_quick_frame_;
362 }
363
Andreas Gampecf4035a2014-05-28 22:43:01 -0700364 void SetTopQuickFrame(StackReference<mirror::ArtMethod>* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700365 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700366 top_quick_frame_ = top;
367 }
368
Ian Rogers0399dde2012-06-06 17:09:28 -0700369 static size_t TopQuickFrameOffset() {
370 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
371 }
372
Ian Rogers0399dde2012-06-06 17:09:28 -0700373 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700374 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700375 ShadowFrame* old_frame = top_shadow_frame_;
376 top_shadow_frame_ = new_top_frame;
377 new_top_frame->SetLink(old_frame);
378 return old_frame;
379 }
380
381 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700382 DCHECK(top_quick_frame_ == nullptr);
383 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700384 ShadowFrame* frame = top_shadow_frame_;
385 top_shadow_frame_ = frame->GetLink();
386 return frame;
387 }
388
389 ShadowFrame* GetTopShadowFrame() const {
390 return top_shadow_frame_;
391 }
392
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800393 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700394 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800395 top_shadow_frame_ = top;
396 }
397
Ian Rogers0399dde2012-06-06 17:09:28 -0700398 static size_t TopShadowFrameOffset() {
399 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
400 }
401
Ian Rogersef7d42f2014-01-06 12:55:46 -0800402 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700403
Ian Rogersef7d42f2014-01-06 12:55:46 -0800404 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700405
406 private:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700407 StackReference<mirror::ArtMethod>* top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700408 ManagedStack* link_;
409 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700410};
411
412class StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100413 public:
414 // This enum defines a flag to control whether inlined frames are included
415 // when walking the stack.
416 enum class StackWalkKind {
417 kIncludeInlinedFrames,
418 kSkipInlinedFrames,
419 };
420
Ian Rogers0399dde2012-06-06 17:09:28 -0700421 protected:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100422 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700424
425 public:
426 virtual ~StackVisitor() {}
427
428 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700429 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700430
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700431 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700433
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100434 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700435
Ian Rogers0399dde2012-06-06 17:09:28 -0700436 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800437 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700438 }
439
Dave Allisonb373e092014-02-20 16:06:36 -0800440 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700441
Ian Rogers62d6c772013-02-27 08:32:07 -0800442 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
443
Ian Rogers0c7abda2012-09-19 13:33:42 -0700444 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
445
Ian Rogersef7d42f2014-01-06 12:55:46 -0800446 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
447 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700448 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800449 DCHECK(GetMethod() != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700450 uint8_t* save_addr =
451 reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size - ((num + 1) * sizeof(void*));
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800452#if defined(__i386__) || defined(__x86_64__)
Ian Rogers13735952014-10-08 12:43:28 -0700453 save_addr -= sizeof(void*); // account for return address
Ian Rogers0399dde2012-06-06 17:09:28 -0700454#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800455 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700456 }
457
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700458 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700459 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800460 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700461 }
462
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700463 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700464 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700465 return GetFrameHeight() + 1;
466 }
467
Ian Rogersb726dcb2012-09-05 08:57:23 -0700468 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700469 if (num_frames_ == 0) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100470 num_frames_ = ComputeNumFrames(thread_, walk_kind_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700471 }
472 return num_frames_;
473 }
474
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700475 size_t GetFrameDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
476 return cur_depth_;
477 }
478
Ian Rogers5cf98192014-05-29 21:31:50 -0700479 // Get the method and dex pc immediately after the one that's currently being visited.
480 bool GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc)
481 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
482
Mathieu Chartier50030ef2015-05-08 14:19:26 -0700483 bool IsReferenceVReg(mirror::ArtMethod* m, uint16_t vreg)
484 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
485
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200486 bool GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800487 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700488
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200489 bool GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
490 uint64_t* val) const
491 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
492
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200493 bool SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700494 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700495
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200496 bool SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
497 VRegKind kind_lo, VRegKind kind_hi)
498 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
499
Mathieu Chartier815873e2014-02-13 18:02:13 -0800500 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700501
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700502 // This is a fast-path for getting/setting values in a quick frame.
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000503 uint32_t* GetVRegAddrFromQuickCode(StackReference<mirror::ArtMethod>* cur_quick_frame,
504 const DexFile::CodeItem* code_item,
505 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
506 uint16_t vreg) const {
507 int offset = GetVRegOffsetFromQuickCode(
508 code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700509 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700510 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700511 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700512 }
513
Ian Rogersef7d42f2014-01-06 12:55:46 -0800514 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700515
Ian Rogersef7d42f2014-01-06 12:55:46 -0800516 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700517
518 /*
519 * Return sp-relative offset for a Dalvik virtual register, compiler
520 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700521 * Note that (reg == -1) denotes an invalid Dalvik register. For the
522 * positive values, the Dalvik registers come first, followed by the
523 * Method*, followed by other special temporaries if any, followed by
524 * regular compiler temporary. As of now we only have the Method* as
525 * as a special compiler temporary.
526 * A compiler temporary can be thought of as a virtual register that
527 * does not exist in the dex but holds intermediate values to help
528 * optimizations and code generation. A special compiler temporary is
529 * one whose location in frame is well known while non-special ones
530 * do not have a requirement on location in frame as long as code
531 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700532 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700533 * +-------------------------------+
534 * | IN[ins-1] | {Note: resides in caller's frame}
535 * | . |
536 * | IN[0] |
537 * | caller's ArtMethod | ... StackReference<ArtMethod>
538 * +===============================+ {Note: start of callee's frame}
539 * | core callee-save spill | {variable sized}
540 * +-------------------------------+
541 * | fp callee-save spill |
542 * +-------------------------------+
543 * | filler word | {For compatibility, if V[locals-1] used as wide
544 * +-------------------------------+
545 * | V[locals-1] |
546 * | V[locals-2] |
547 * | . |
548 * | . | ... (reg == 2)
549 * | V[1] | ... (reg == 1)
550 * | V[0] | ... (reg == 0) <---- "locals_start"
551 * +-------------------------------+
552 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
553 * +-------------------------------+
554 * | Compiler temp region | ... (reg >= max_num_special_temps)
555 * | . |
556 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700557 * | V[max_num_special_temps + 1] |
558 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700559 * +-------------------------------+
560 * | OUT[outs-1] |
561 * | OUT[outs-2] |
562 * | . |
563 * | OUT[0] |
564 * | StackReference<ArtMethod> | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
565 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700566 */
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000567 static int GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
568 uint32_t core_spills, uint32_t fp_spills,
569 size_t frame_size, int reg, InstructionSet isa) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700570 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700571 DCHECK_NE(reg, -1);
Vladimir Marko81949632014-05-02 11:53:22 +0100572 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
573 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000574 + sizeof(uint32_t); // Filler.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700575 int num_regs = code_item->registers_size_ - code_item->ins_size_;
576 int temp_threshold = code_item->registers_size_;
577 const int max_num_special_temps = 1;
578 if (reg == temp_threshold) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800579 // The current method pointer corresponds to special location on stack.
580 return 0;
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700581 } else if (reg >= temp_threshold + max_num_special_temps) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800582 /*
583 * Special temporaries may have custom locations and the logic above deals with that.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700584 * However, non-special temporaries are placed relative to the outs.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800585 */
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700586 int temps_start = sizeof(StackReference<mirror::ArtMethod>) +
587 code_item->outs_size_ * sizeof(uint32_t);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700588 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
589 return temps_start + relative_offset;
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800590 } else if (reg < num_regs) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700591 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800592 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700593 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800594 // Handle ins.
buzbee82818642014-06-04 15:35:41 -0700595 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) +
596 sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700597 }
598 }
599
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000600 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700601 UNUSED(isa);
buzbee82818642014-06-04 15:35:41 -0700602 // According to stack model, the first out is above the Method referernce.
603 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800604 }
605
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100606 bool IsInInlinedFrame() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100607 return current_inlining_depth_ != 0;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100608 }
609
Ian Rogers0399dde2012-06-06 17:09:28 -0700610 uintptr_t GetCurrentQuickFramePc() const {
611 return cur_quick_frame_pc_;
612 }
613
Andreas Gampecf4035a2014-05-28 22:43:01 -0700614 StackReference<mirror::ArtMethod>* GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700615 return cur_quick_frame_;
616 }
617
618 ShadowFrame* GetCurrentShadowFrame() const {
619 return cur_shadow_frame_;
620 }
621
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700622 HandleScope* GetCurrentHandleScope() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700623 StackReference<mirror::ArtMethod>* sp = GetCurrentQuickFrame();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700624 ++sp; // Skip Method*; handle scope comes next;
625 return reinterpret_cast<HandleScope*>(sp);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700626 }
627
Ian Rogers40e3bac2012-11-20 00:09:14 -0800628 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
629
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100630 static size_t ComputeNumFrames(Thread* thread, StackWalkKind walk_kind)
631 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800632
Ian Rogers7a22fa62013-01-23 12:16:16 -0800633 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800634
Ian Rogers0399dde2012-06-06 17:09:28 -0700635 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700636 // Private constructor known in the case that num_frames_ has already been computed.
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100637 StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind, size_t num_frames)
Ian Rogers5cf98192014-05-29 21:31:50 -0700638 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
639
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100640 bool IsAccessibleRegister(uint32_t reg, bool is_float) const {
641 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg);
642 }
643 uintptr_t GetRegister(uint32_t reg, bool is_float) const {
644 DCHECK(IsAccessibleRegister(reg, is_float));
645 return is_float ? GetFPR(reg) : GetGPR(reg);
646 }
647 void SetRegister(uint32_t reg, uintptr_t value, bool is_float) {
648 DCHECK(IsAccessibleRegister(reg, is_float));
649 if (is_float) {
650 SetFPR(reg, value);
651 } else {
652 SetGPR(reg, value);
653 }
654 }
655
656 bool IsAccessibleGPR(uint32_t reg) const;
657 uintptr_t GetGPR(uint32_t reg) const;
658 void SetGPR(uint32_t reg, uintptr_t value);
659
660 bool IsAccessibleFPR(uint32_t reg) const;
661 uintptr_t GetFPR(uint32_t reg) const;
662 void SetFPR(uint32_t reg, uintptr_t value);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200663
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100664 bool GetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
665 uint32_t* val) const
666 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
667 bool GetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
668 uint32_t* val) const
669 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
670 bool GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const
671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
672
673 bool GetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
674 VRegKind kind_hi, uint64_t* val) const
675 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
676 bool GetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg,
677 VRegKind kind_lo, VRegKind kind_hi,
678 uint64_t* val) const
679 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
680 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
681 uint64_t* val) const
682 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
683
684 bool SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
685 VRegKind kind)
686 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100687 bool SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind)
688 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
689
690 bool SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
691 VRegKind kind_lo, VRegKind kind_hi)
692 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100693 bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,
694 bool is_float)
695 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
696
Ian Rogersb726dcb2012-09-05 08:57:23 -0700697 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700698
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100699 InlineInfo GetCurrentInlineInfo() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
700
Ian Rogers7a22fa62013-01-23 12:16:16 -0800701 Thread* const thread_;
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100702 const StackWalkKind walk_kind_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700703 ShadowFrame* cur_shadow_frame_;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700704 StackReference<mirror::ArtMethod>* cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700705 uintptr_t cur_quick_frame_pc_;
706 // Lazily computed, number of frames in the stack.
707 size_t num_frames_;
708 // Depth of the frame we're currently at.
709 size_t cur_depth_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100710 // Current inlining depth of the method we are currently at.
711 // 0 if there is no inlined frame.
712 size_t current_inlining_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700713
Ian Rogers0399dde2012-06-06 17:09:28 -0700714 protected:
715 Context* const context_;
716};
717
Elliott Hughes68e76522011-10-05 13:22:16 -0700718} // namespace art
719
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700720#endif // ART_RUNTIME_STACK_H_