blob: 15007af85af8e83002e7060def4e0da16b834cd3 [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"
Ian Rogerse63db272014-07-15 15:36:11 -070025#include "mirror/object_reference.h"
26#include "throw_location.h"
27#include "utils.h"
28#include "verify_object.h"
29
Elliott Hughes68e76522011-10-05 13:22:16 -070030namespace art {
31
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070033 class ArtMethod;
34 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035} // namespace mirror
36
37class Context;
Ian Rogers0399dde2012-06-06 17:09:28 -070038class ShadowFrame;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070039class HandleScope;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040class ScopedObjectAccess;
Elliott Hughes68e76522011-10-05 13:22:16 -070041class Thread;
42
Ian Rogers2bcb4a42012-11-08 10:39:18 -080043// The kind of vreg being accessed in calls to Set/GetVReg.
44enum VRegKind {
45 kReferenceVReg,
46 kIntVReg,
47 kFloatVReg,
48 kLongLoVReg,
49 kLongHiVReg,
50 kDoubleLoVReg,
51 kDoubleHiVReg,
52 kConstant,
53 kImpreciseConstant,
54 kUndefined,
55};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070056std::ostream& operator<<(std::ostream& os, const VRegKind& rhs);
Ian Rogers2bcb4a42012-11-08 10:39:18 -080057
Ian Rogersef7d42f2014-01-06 12:55:46 -080058// A reference from the shadow stack to a MirrorType object within the Java heap.
59template<class MirrorType>
60class MANAGED StackReference : public mirror::ObjectReference<false, MirrorType> {
61 public:
62 StackReference<MirrorType>() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
63 : mirror::ObjectReference<false, MirrorType>(nullptr) {}
64
65 static StackReference<MirrorType> FromMirrorPtr(MirrorType* p)
66 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
67 return StackReference<MirrorType>(p);
68 }
69
70 private:
71 StackReference<MirrorType>(MirrorType* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
72 : mirror::ObjectReference<false, MirrorType>(p) {}
73};
74
Elliott Hughes956af0f2014-12-11 14:34:28 -080075// ShadowFrame has 2 possible layouts:
Mathieu Chartier67022432012-11-29 18:04:50 -080076// - interpreter - separate VRegs and reference arrays. References are in the reference array.
77// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -070078class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -070079 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -080080 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -070081 static size_t ComputeSize(uint32_t num_vregs) {
82 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -080083 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -070084 }
85
86 // Create ShadowFrame in heap for deoptimization.
TDYa127ce4cc0d2012-11-18 16:59:53 -080087 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070088 mirror::ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -070089 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Sebastien Hertzc61124b2013-09-10 11:44:19 +020090 return Create(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -070091 }
92
93 // Create ShadowFrame for interpreter using provided memory.
94 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070095 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080096 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
97 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070098 }
99 ~ShadowFrame() {}
100
TDYa127ce4cc0d2012-11-18 16:59:53 -0800101 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700102 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700103 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700104
TDYa127ce4cc0d2012-11-18 16:59:53 -0800105 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700106 return number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700107 }
108
Ian Rogers0399dde2012-06-06 17:09:28 -0700109 uint32_t GetDexPC() const {
110 return dex_pc_;
111 }
112
113 void SetDexPC(uint32_t dex_pc) {
114 dex_pc_ = dex_pc;
115 }
116
Ian Rogers0399dde2012-06-06 17:09:28 -0700117 ShadowFrame* GetLink() const {
118 return link_;
119 }
120
121 void SetLink(ShadowFrame* frame) {
122 DCHECK_NE(this, frame);
123 link_ = frame;
124 }
125
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700126 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800127 DCHECK_LT(i, NumberOfVRegs());
128 const uint32_t* vreg = &vregs_[i];
129 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700130 }
131
132 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800133 DCHECK_LT(i, NumberOfVRegs());
134 // NOTE: Strict-aliasing?
135 const uint32_t* vreg = &vregs_[i];
136 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700137 }
138
139 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200140 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800141 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700142 // Alignment attribute required for GCC 4.8
143 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
144 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700145 }
146
147 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200148 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800149 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700150 // Alignment attribute required for GCC 4.8
151 typedef const double unaligned_double __attribute__ ((aligned (4)));
152 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800153 }
154
Mathieu Chartier4e305412014-02-19 10:54:44 -0800155 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800156 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800157 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800158 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800159 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800160 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800161 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800162 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800163 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800164 }
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 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800232 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800233 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800234 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800235 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800236 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700237 }
238
Ian Rogersef7d42f2014-01-06 12:55:46 -0800239 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
240 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700241 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700242 }
243
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700244 mirror::ArtMethod** GetMethodAddress() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
245 DCHECK(method_ != nullptr);
246 return &method_;
247 }
248
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
250
Jeff Haoe701f482013-05-24 11:50:49 -0700251 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
252
Ian Rogers62d6c772013-02-27 08:32:07 -0800253 ThrowLocation GetCurrentLocationForThrow() 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() {
304 return const_cast<StackReference<mirror::Object>*>(const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800305 }
306
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700307 const uint32_t number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700308 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700309 ShadowFrame* link_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700310 mirror::ArtMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700311 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800312 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700313
Ian Rogers0399dde2012-06-06 17:09:28 -0700314 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700315};
316
Ian Rogers0399dde2012-06-06 17:09:28 -0700317// The managed stack is used to record fragments of managed code stacks. Managed code stacks
318// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
319// necessary for transitions between code using different frame layouts and transitions into native
320// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800321class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700322 public:
Ian Rogersca190662012-06-26 15:45:57 -0700323 ManagedStack()
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700324 : top_quick_frame_(nullptr), link_(nullptr), top_shadow_frame_(nullptr) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700325
326 void PushManagedStackFragment(ManagedStack* fragment) {
327 // Copy this top fragment into given fragment.
328 memcpy(fragment, this, sizeof(ManagedStack));
329 // Clear this fragment, which has become the top.
330 memset(this, 0, sizeof(ManagedStack));
331 // Link our top fragment onto the given fragment.
332 link_ = fragment;
333 }
334
335 void PopManagedStackFragment(const ManagedStack& fragment) {
336 DCHECK(&fragment == link_);
337 // Copy this given fragment back to the top.
338 memcpy(this, &fragment, sizeof(ManagedStack));
339 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700340
341 ManagedStack* GetLink() const {
342 return link_;
343 }
344
Andreas Gampecf4035a2014-05-28 22:43:01 -0700345 StackReference<mirror::ArtMethod>* GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700346 return top_quick_frame_;
347 }
348
Andreas Gampecf4035a2014-05-28 22:43:01 -0700349 void SetTopQuickFrame(StackReference<mirror::ArtMethod>* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700350 DCHECK(top_shadow_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700351 top_quick_frame_ = top;
352 }
353
Ian Rogers0399dde2012-06-06 17:09:28 -0700354 static size_t TopQuickFrameOffset() {
355 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
356 }
357
Ian Rogers0399dde2012-06-06 17:09:28 -0700358 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700359 DCHECK(top_quick_frame_ == nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700360 ShadowFrame* old_frame = top_shadow_frame_;
361 top_shadow_frame_ = new_top_frame;
362 new_top_frame->SetLink(old_frame);
363 return old_frame;
364 }
365
366 ShadowFrame* PopShadowFrame() {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700367 DCHECK(top_quick_frame_ == nullptr);
368 CHECK(top_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700369 ShadowFrame* frame = top_shadow_frame_;
370 top_shadow_frame_ = frame->GetLink();
371 return frame;
372 }
373
374 ShadowFrame* GetTopShadowFrame() const {
375 return top_shadow_frame_;
376 }
377
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800378 void SetTopShadowFrame(ShadowFrame* top) {
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700379 DCHECK(top_quick_frame_ == nullptr);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800380 top_shadow_frame_ = top;
381 }
382
Ian Rogers0399dde2012-06-06 17:09:28 -0700383 static size_t TopShadowFrameOffset() {
384 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
385 }
386
Ian Rogersef7d42f2014-01-06 12:55:46 -0800387 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700388
Ian Rogersef7d42f2014-01-06 12:55:46 -0800389 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700390
391 private:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700392 StackReference<mirror::ArtMethod>* top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700393 ManagedStack* link_;
394 ShadowFrame* top_shadow_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700395};
396
397class StackVisitor {
398 protected:
Ian Rogers7a22fa62013-01-23 12:16:16 -0800399 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700400
401 public:
402 virtual ~StackVisitor() {}
403
404 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700405 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700406
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700407 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700409
Ian Rogersef7d42f2014-01-06 12:55:46 -0800410 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
411 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700412 return cur_shadow_frame_->GetMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800413 } else if (cur_quick_frame_ != nullptr) {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700414 return cur_quick_frame_->AsMirrorPtr();
Hiroshi Yamauchi92d1a662014-05-15 21:43:59 -0700415 } else {
416 return nullptr;
417 }
418 }
419
Ian Rogers0399dde2012-06-06 17:09:28 -0700420 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800421 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700422 }
423
Dave Allisonb373e092014-02-20 16:06:36 -0800424 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700425
Ian Rogers62d6c772013-02-27 08:32:07 -0800426 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
427
Ian Rogers0c7abda2012-09-19 13:33:42 -0700428 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
429
Ian Rogersef7d42f2014-01-06 12:55:46 -0800430 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
431 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700432 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800433 DCHECK(GetMethod() != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700434 uint8_t* save_addr =
435 reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size - ((num + 1) * sizeof(void*));
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800436#if defined(__i386__) || defined(__x86_64__)
Ian Rogers13735952014-10-08 12:43:28 -0700437 save_addr -= sizeof(void*); // account for return address
Ian Rogers0399dde2012-06-06 17:09:28 -0700438#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800439 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700440 }
441
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700442 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700443 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800444 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700445 }
446
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700447 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700448 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700449 return GetFrameHeight() + 1;
450 }
451
Ian Rogersb726dcb2012-09-05 08:57:23 -0700452 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700453 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800454 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700455 }
456 return num_frames_;
457 }
458
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700459 size_t GetFrameDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
460 return cur_depth_;
461 }
462
Ian Rogers5cf98192014-05-29 21:31:50 -0700463 // Get the method and dex pc immediately after the one that's currently being visited.
464 bool GetNextMethodAndDexPc(mirror::ArtMethod** next_method, uint32_t* next_dex_pc)
465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
466
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200467 bool GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700469
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200470 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const
471 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
472 uint32_t val;
473 bool success = GetVReg(m, vreg, kind, &val);
474 CHECK(success) << "Failed to read vreg " << vreg << " of kind " << kind;
475 return val;
476 }
477
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200478 bool GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
479 uint64_t* val) const
480 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
481
482 uint64_t GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
483 VRegKind kind_hi) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
484 uint64_t val;
485 bool success = GetVRegPair(m, vreg, kind_lo, kind_hi, &val);
486 CHECK(success) << "Failed to read vreg pair " << vreg
487 << " of kind [" << kind_lo << "," << kind_hi << "]";
488 return val;
489 }
490
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200491 bool SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700492 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700493
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200494 bool SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
495 VRegKind kind_lo, VRegKind kind_hi)
496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
497
Mathieu Chartier815873e2014-02-13 18:02:13 -0800498 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700499
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700500 // This is a fast-path for getting/setting values in a quick frame.
Andreas Gampecf4035a2014-05-28 22:43:01 -0700501 uint32_t* GetVRegAddr(StackReference<mirror::ArtMethod>* cur_quick_frame,
502 const DexFile::CodeItem* code_item,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800503 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
504 uint16_t vreg) const {
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000505 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700506 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
Ian Rogers13735952014-10-08 12:43:28 -0700507 uint8_t* vreg_addr = reinterpret_cast<uint8_t*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700508 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700509 }
510
Ian Rogersef7d42f2014-01-06 12:55:46 -0800511 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700512
Ian Rogersef7d42f2014-01-06 12:55:46 -0800513 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700514
515 /*
516 * Return sp-relative offset for a Dalvik virtual register, compiler
517 * spill or Method* in bytes using Method*.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700518 * Note that (reg == -1) denotes an invalid Dalvik register. For the
519 * positive values, the Dalvik registers come first, followed by the
520 * Method*, followed by other special temporaries if any, followed by
521 * regular compiler temporary. As of now we only have the Method* as
522 * as a special compiler temporary.
523 * A compiler temporary can be thought of as a virtual register that
524 * does not exist in the dex but holds intermediate values to help
525 * optimizations and code generation. A special compiler temporary is
526 * one whose location in frame is well known while non-special ones
527 * do not have a requirement on location in frame as long as code
528 * generator itself knows how to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700529 *
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700530 * +-------------------------------+
531 * | IN[ins-1] | {Note: resides in caller's frame}
532 * | . |
533 * | IN[0] |
534 * | caller's ArtMethod | ... StackReference<ArtMethod>
535 * +===============================+ {Note: start of callee's frame}
536 * | core callee-save spill | {variable sized}
537 * +-------------------------------+
538 * | fp callee-save spill |
539 * +-------------------------------+
540 * | filler word | {For compatibility, if V[locals-1] used as wide
541 * +-------------------------------+
542 * | V[locals-1] |
543 * | V[locals-2] |
544 * | . |
545 * | . | ... (reg == 2)
546 * | V[1] | ... (reg == 1)
547 * | V[0] | ... (reg == 0) <---- "locals_start"
548 * +-------------------------------+
549 * | stack alignment padding | {0 to (kStackAlignWords-1) of padding}
550 * +-------------------------------+
551 * | Compiler temp region | ... (reg >= max_num_special_temps)
552 * | . |
553 * | . |
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700554 * | V[max_num_special_temps + 1] |
555 * | V[max_num_special_temps + 0] |
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700556 * +-------------------------------+
557 * | OUT[outs-1] |
558 * | OUT[outs-2] |
559 * | . |
560 * | OUT[0] |
561 * | StackReference<ArtMethod> | ... (reg == num_total_code_regs == special_temp_value) <<== sp, 16-byte aligned
562 * +===============================+
Ian Rogers0399dde2012-06-06 17:09:28 -0700563 */
564 static int GetVRegOffset(const DexFile::CodeItem* code_item,
Ian Rogersb23a7722012-10-09 16:54:26 -0700565 uint32_t core_spills, uint32_t fp_spills,
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000566 size_t frame_size, int reg, InstructionSet isa) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700567 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700568 DCHECK_NE(reg, -1);
Vladimir Marko81949632014-05-02 11:53:22 +0100569 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
570 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000571 + sizeof(uint32_t); // Filler.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700572 int num_regs = code_item->registers_size_ - code_item->ins_size_;
573 int temp_threshold = code_item->registers_size_;
574 const int max_num_special_temps = 1;
575 if (reg == temp_threshold) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800576 // The current method pointer corresponds to special location on stack.
577 return 0;
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700578 } else if (reg >= temp_threshold + max_num_special_temps) {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800579 /*
580 * Special temporaries may have custom locations and the logic above deals with that.
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700581 * However, non-special temporaries are placed relative to the outs.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800582 */
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700583 int temps_start = sizeof(StackReference<mirror::ArtMethod>) + code_item->outs_size_ * sizeof(uint32_t);
584 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
585 return temps_start + relative_offset;
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800586 } else if (reg < num_regs) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -0700587 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800588 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700589 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800590 // Handle ins.
buzbee82818642014-06-04 15:35:41 -0700591 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) +
592 sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700593 }
594 }
595
Nicolas Geoffray42fcd982014-04-22 11:03:52 +0000596 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700597 UNUSED(isa);
buzbee82818642014-06-04 15:35:41 -0700598 // According to stack model, the first out is above the Method referernce.
599 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800600 }
601
Ian Rogers0399dde2012-06-06 17:09:28 -0700602 uintptr_t GetCurrentQuickFramePc() const {
603 return cur_quick_frame_pc_;
604 }
605
Andreas Gampecf4035a2014-05-28 22:43:01 -0700606 StackReference<mirror::ArtMethod>* GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700607 return cur_quick_frame_;
608 }
609
610 ShadowFrame* GetCurrentShadowFrame() const {
611 return cur_shadow_frame_;
612 }
613
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700614 HandleScope* GetCurrentHandleScope() const {
Andreas Gampecf4035a2014-05-28 22:43:01 -0700615 StackReference<mirror::ArtMethod>* sp = GetCurrentQuickFrame();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700616 ++sp; // Skip Method*; handle scope comes next;
617 return reinterpret_cast<HandleScope*>(sp);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700618 }
619
Ian Rogers40e3bac2012-11-20 00:09:14 -0800620 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
621
Ian Rogers7a22fa62013-01-23 12:16:16 -0800622 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800623
Ian Rogers7a22fa62013-01-23 12:16:16 -0800624 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800625
Ian Rogers0399dde2012-06-06 17:09:28 -0700626 private:
Ian Rogers5cf98192014-05-29 21:31:50 -0700627 // Private constructor known in the case that num_frames_ has already been computed.
628 StackVisitor(Thread* thread, Context* context, size_t num_frames)
629 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
630
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200631 bool GetGPR(uint32_t reg, uintptr_t* val) const;
632 bool SetGPR(uint32_t reg, uintptr_t value);
633 bool GetFPR(uint32_t reg, uintptr_t* val) const;
634 bool SetFPR(uint32_t reg, uintptr_t value);
635
Ian Rogersb726dcb2012-09-05 08:57:23 -0700636 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700637
Ian Rogers7a22fa62013-01-23 12:16:16 -0800638 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700639 ShadowFrame* cur_shadow_frame_;
Andreas Gampecf4035a2014-05-28 22:43:01 -0700640 StackReference<mirror::ArtMethod>* cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700641 uintptr_t cur_quick_frame_pc_;
642 // Lazily computed, number of frames in the stack.
643 size_t num_frames_;
644 // Depth of the frame we're currently at.
645 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700646
Ian Rogers0399dde2012-06-06 17:09:28 -0700647 protected:
648 Context* const context_;
649};
650
Elliott Hughes68e76522011-10-05 13:22:16 -0700651} // namespace art
652
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700653#endif // ART_RUNTIME_STACK_H_