blob: 7e9889ee86651edbbe7564c28988c6aa5e72315c [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
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080020#include "dex_file.h"
jeffhao725a9572012-11-13 18:20:12 -080021#include "instrumentation.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080022#include "base/casts.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "base/macros.h"
Ian Rogers166db042013-07-26 12:05:57 -070024#include "arch/context.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080025#include "mirror/object_reference.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070026
27#include <stdint.h>
Ian Rogers40e3bac2012-11-20 00:09:14 -080028#include <string>
Elliott Hughes68e76522011-10-05 13:22:16 -070029
30namespace 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;
Elliott Hughes08fc03a2012-06-26 17:34:00 -070039class StackIndirectReferenceTable;
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};
56
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -080057/**
58 * @brief Represents the virtual register numbers that denote special meaning.
59 * @details This is used to make some virtual register numbers to have specific
60 * semantic meaning. This is done so that the compiler can treat all virtual
61 * registers the same way and only special case when needed. For example,
62 * calculating SSA does not care whether a virtual register is a normal one or
63 * a compiler temporary, so it can deal with them in a consistent manner. But,
64 * for example if backend cares about temporaries because it has custom spill
65 * location, then it can special case them only then.
66 */
67enum VRegBaseRegNum : int {
68 /**
69 * @brief Virtual registers originating from dex have number >= 0.
70 */
71 kVRegBaseReg = 0,
72
73 /**
74 * @brief Invalid virtual register number.
75 */
76 kVRegInvalid = -1,
77
78 /**
79 * @brief Used to denote the base register for compiler temporaries.
80 * @details Compiler temporaries are virtual registers not originating
81 * from dex but that are created by compiler. All virtual register numbers
82 * that are <= kVRegTempBaseReg are categorized as compiler temporaries.
83 */
84 kVRegTempBaseReg = -2,
85
86 /**
87 * @brief Base register of temporary that holds the method pointer.
88 * @details This is a special compiler temporary because it has a specific
89 * location on stack.
90 */
91 kVRegMethodPtrBaseReg = kVRegTempBaseReg,
92
93 /**
94 * @brief Base register of non-special compiler temporary.
95 * @details A non-special compiler temporary is one whose spill location
96 * is flexible.
97 */
98 kVRegNonSpecialTempBaseReg = -3,
99};
100
Ian Rogersef7d42f2014-01-06 12:55:46 -0800101// A reference from the shadow stack to a MirrorType object within the Java heap.
102template<class MirrorType>
103class MANAGED StackReference : public mirror::ObjectReference<false, MirrorType> {
104 public:
105 StackReference<MirrorType>() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
106 : mirror::ObjectReference<false, MirrorType>(nullptr) {}
107
108 static StackReference<MirrorType> FromMirrorPtr(MirrorType* p)
109 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
110 return StackReference<MirrorType>(p);
111 }
112
113 private:
114 StackReference<MirrorType>(MirrorType* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
115 : mirror::ObjectReference<false, MirrorType>(p) {}
116};
117
Mathieu Chartier67022432012-11-29 18:04:50 -0800118// ShadowFrame has 3 possible layouts:
119// - portable - a unified array of VRegs and references. Precise references need GC maps.
120// - interpreter - separate VRegs and reference arrays. References are in the reference array.
121// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -0700122class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -0700123 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -0800124 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -0700125 static size_t ComputeSize(uint32_t num_vregs) {
126 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -0800127 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -0700128 }
129
130 // Create ShadowFrame in heap for deoptimization.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800131 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -0700132 mirror::ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -0700133 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200134 return Create(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -0700135 }
136
137 // Create ShadowFrame for interpreter using provided memory.
138 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -0700139 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800140 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
141 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700142 }
143 ~ShadowFrame() {}
144
TDYa127ce4cc0d2012-11-18 16:59:53 -0800145 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700146#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800147 return (number_of_vregs_ & kHasReferenceArray) != 0;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700148#else
149 return true;
150#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700151 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700152
TDYa127ce4cc0d2012-11-18 16:59:53 -0800153 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700154#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800155 return number_of_vregs_ & ~kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700156#else
157 return number_of_vregs_;
158#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700159 }
160
TDYa127ce4cc0d2012-11-18 16:59:53 -0800161 void SetNumberOfVRegs(uint32_t number_of_vregs) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700162#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800163 number_of_vregs_ = number_of_vregs | (number_of_vregs_ & kHasReferenceArray);
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700164#else
165 UNUSED(number_of_vregs);
166 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
167#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700168 }
169
Ian Rogers0399dde2012-06-06 17:09:28 -0700170 uint32_t GetDexPC() const {
171 return dex_pc_;
172 }
173
174 void SetDexPC(uint32_t dex_pc) {
175 dex_pc_ = dex_pc;
176 }
177
Ian Rogers0399dde2012-06-06 17:09:28 -0700178 ShadowFrame* GetLink() const {
179 return link_;
180 }
181
182 void SetLink(ShadowFrame* frame) {
183 DCHECK_NE(this, frame);
184 link_ = frame;
185 }
186
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700187 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800188 DCHECK_LT(i, NumberOfVRegs());
189 const uint32_t* vreg = &vregs_[i];
190 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700191 }
192
193 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800194 DCHECK_LT(i, NumberOfVRegs());
195 // NOTE: Strict-aliasing?
196 const uint32_t* vreg = &vregs_[i];
197 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700198 }
199
200 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200201 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800202 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700203 // Alignment attribute required for GCC 4.8
204 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
205 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700206 }
207
208 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200209 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800210 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700211 // Alignment attribute required for GCC 4.8
212 typedef const double unaligned_double __attribute__ ((aligned (4)));
213 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800214 }
215
Mathieu Chartier590fee92013-09-13 13:46:47 -0700216 template <bool kChecked = false>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800217 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800218 DCHECK_LT(i, NumberOfVRegs());
219 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800220 mirror::Object* ref = References()[i].AsMirrorPtr();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700221 if (kChecked) {
222 CHECK(VerifyReference(ref)) << "VReg " << i << "(" << ref
223 << ") is in protected space, reference array " << true;
224 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700225 return ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800226 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800227 const uint32_t* vreg_ptr = &vregs_[i];
228 mirror::Object* ref =
229 reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700230 if (kChecked) {
231 CHECK(VerifyReference(ref)) << "VReg " << i
232 << "(" << ref << ") is in protected space, reference array " << false;
233 }
234 return ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800235 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700236 }
237
Jeff Hao16743632013-05-08 10:59:04 -0700238 // Get view of vregs as range of consecutive arguments starting at i.
239 uint32_t* GetVRegArgs(size_t i) {
240 return &vregs_[i];
241 }
242
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700243 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800244 DCHECK_LT(i, NumberOfVRegs());
245 uint32_t* vreg = &vregs_[i];
246 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700247 // This is needed for moving collectors since these can update the vreg references if they
248 // happen to agree with references in the reference array.
249 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800250 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700251 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700252 }
253
254 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800255 DCHECK_LT(i, NumberOfVRegs());
256 uint32_t* vreg = &vregs_[i];
257 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700258 // This is needed for moving collectors since these can update the vreg references if they
259 // happen to agree with references in the reference array.
260 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800261 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700262 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700263 }
264
265 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200266 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800267 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700268 // Alignment attribute required for GCC 4.8
269 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
270 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700271 // This is needed for moving collectors since these can update the vreg references if they
272 // happen to agree with references in the reference array.
273 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800274 References()[i].Clear();
275 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700276 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700277 }
278
279 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200280 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800281 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700282 // Alignment attribute required for GCC 4.8
283 typedef double unaligned_double __attribute__ ((aligned (4)));
284 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700285 // This is needed for moving collectors since these can update the vreg references if they
286 // happen to agree with references in the reference array.
287 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800288 References()[i].Clear();
289 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700290 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700291 }
292
Ian Rogersef7d42f2014-01-06 12:55:46 -0800293 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800294 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700295 DCHECK(!kMovingCollector || VerifyReference(val))
296 << "VReg " << i << "(" << val << ") is in protected space";
TDYa127ce4cc0d2012-11-18 16:59:53 -0800297 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800298 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800299 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800301 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700302 }
303
Ian Rogersef7d42f2014-01-06 12:55:46 -0800304 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
305 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700306 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700307 }
308
Ian Rogers62d6c772013-02-27 08:32:07 -0800309 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
310
Jeff Haoe701f482013-05-24 11:50:49 -0700311 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
312
Ian Rogers62d6c772013-02-27 08:32:07 -0800313 ThrowLocation GetCurrentLocationForThrow() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
314
Brian Carlstromea46f952013-07-30 01:26:50 -0700315 void SetMethod(mirror::ArtMethod* method) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700316#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersef7d42f2014-01-06 12:55:46 -0800317 DCHECK(method != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700318 method_ = method;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700319#else
320 UNUSED(method);
321 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
322#endif
Elliott Hughes68e76522011-10-05 13:22:16 -0700323 }
324
Ian Rogersef7d42f2014-01-06 12:55:46 -0800325 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800326 if (HasReferenceArray()) {
327 return ((&References()[0] <= shadow_frame_entry_obj) &&
328 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
329 } else {
330 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
331 return ((&vregs_[0] <= shadow_frame_entry) &&
332 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700333 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700334 }
335
Ian Rogers0399dde2012-06-06 17:09:28 -0700336 static size_t LinkOffset() {
337 return OFFSETOF_MEMBER(ShadowFrame, link_);
338 }
339
Ian Rogers0399dde2012-06-06 17:09:28 -0700340 static size_t MethodOffset() {
341 return OFFSETOF_MEMBER(ShadowFrame, method_);
342 }
343
Ian Rogers0399dde2012-06-06 17:09:28 -0700344 static size_t DexPCOffset() {
345 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
346 }
347
Ian Rogers5438ad82012-10-15 17:22:44 -0700348 static size_t NumberOfVRegsOffset() {
349 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
350 }
351
TDYa127ce4cc0d2012-11-18 16:59:53 -0800352 static size_t VRegsOffset() {
353 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700354 }
355
Elliott Hughes68e76522011-10-05 13:22:16 -0700356 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700357 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800358 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800359 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
360 if (has_reference_array) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700361#if defined(ART_USE_PORTABLE_COMPILER)
362 CHECK_LT(num_vregs, static_cast<uint32_t>(kHasReferenceArray));
TDYa127ce4cc0d2012-11-18 16:59:53 -0800363 number_of_vregs_ |= kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700364#endif
Ian Rogersef7d42f2014-01-06 12:55:46 -0800365 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800366 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700367 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700368 }
369 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700370
Ian Rogersef7d42f2014-01-06 12:55:46 -0800371 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800372 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800373 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800374 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800375 }
376
Mathieu Chartier590fee92013-09-13 13:46:47 -0700377 bool VerifyReference(const mirror::Object* val) const;
378
Ian Rogersef7d42f2014-01-06 12:55:46 -0800379 StackReference<mirror::Object>* References() {
380 return const_cast<StackReference<mirror::Object>*>(const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800381 }
382
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700383#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800384 enum ShadowFrameFlag {
385 kHasReferenceArray = 1ul << 31
386 };
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700387 // TODO: make const in the portable case.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800388 uint32_t number_of_vregs_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700389#else
390 const uint32_t number_of_vregs_;
391#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700392 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700393 ShadowFrame* link_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700394#if defined(ART_USE_PORTABLE_COMPILER)
395 // TODO: make const in the portable case.
Brian Carlstromea46f952013-07-30 01:26:50 -0700396 mirror::ArtMethod* method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700397#else
Brian Carlstromea46f952013-07-30 01:26:50 -0700398 mirror::ArtMethod* const method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700399#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700400 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800401 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700402
Ian Rogers0399dde2012-06-06 17:09:28 -0700403 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700404};
405
Ian Rogers0399dde2012-06-06 17:09:28 -0700406// The managed stack is used to record fragments of managed code stacks. Managed code stacks
407// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
408// necessary for transitions between code using different frame layouts and transitions into native
409// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800410class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700411 public:
Ian Rogersca190662012-06-26 15:45:57 -0700412 ManagedStack()
413 : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700414
415 void PushManagedStackFragment(ManagedStack* fragment) {
416 // Copy this top fragment into given fragment.
417 memcpy(fragment, this, sizeof(ManagedStack));
418 // Clear this fragment, which has become the top.
419 memset(this, 0, sizeof(ManagedStack));
420 // Link our top fragment onto the given fragment.
421 link_ = fragment;
422 }
423
424 void PopManagedStackFragment(const ManagedStack& fragment) {
425 DCHECK(&fragment == link_);
426 // Copy this given fragment back to the top.
427 memcpy(this, &fragment, sizeof(ManagedStack));
428 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700429
430 ManagedStack* GetLink() const {
431 return link_;
432 }
433
Brian Carlstromea46f952013-07-30 01:26:50 -0700434 mirror::ArtMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700435 return top_quick_frame_;
436 }
437
Brian Carlstromea46f952013-07-30 01:26:50 -0700438 void SetTopQuickFrame(mirror::ArtMethod** top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200439 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700440 top_quick_frame_ = top;
441 }
442
443 uintptr_t GetTopQuickFramePc() const {
444 return top_quick_frame_pc_;
445 }
446
447 void SetTopQuickFramePc(uintptr_t pc) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200448 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700449 top_quick_frame_pc_ = pc;
450 }
451
452 static size_t TopQuickFrameOffset() {
453 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
454 }
455
456 static size_t TopQuickFramePcOffset() {
457 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_pc_);
458 }
459
460 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200461 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700462 ShadowFrame* old_frame = top_shadow_frame_;
463 top_shadow_frame_ = new_top_frame;
464 new_top_frame->SetLink(old_frame);
465 return old_frame;
466 }
467
468 ShadowFrame* PopShadowFrame() {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200469 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700470 CHECK(top_shadow_frame_ != NULL);
471 ShadowFrame* frame = top_shadow_frame_;
472 top_shadow_frame_ = frame->GetLink();
473 return frame;
474 }
475
476 ShadowFrame* GetTopShadowFrame() const {
477 return top_shadow_frame_;
478 }
479
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800480 void SetTopShadowFrame(ShadowFrame* top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200481 DCHECK(top_quick_frame_ == NULL);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800482 top_shadow_frame_ = top;
483 }
484
Ian Rogers0399dde2012-06-06 17:09:28 -0700485 static size_t TopShadowFrameOffset() {
486 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
487 }
488
Ian Rogersef7d42f2014-01-06 12:55:46 -0800489 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700490
Ian Rogersef7d42f2014-01-06 12:55:46 -0800491 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700492
493 private:
494 ManagedStack* link_;
495 ShadowFrame* top_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700496 mirror::ArtMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700497 uintptr_t top_quick_frame_pc_;
498};
499
500class StackVisitor {
501 protected:
Ian Rogers7a22fa62013-01-23 12:16:16 -0800502 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700503
504 public:
505 virtual ~StackVisitor() {}
506
507 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700508 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700509
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700511 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700512
Ian Rogersef7d42f2014-01-06 12:55:46 -0800513 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
514 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700515 return cur_shadow_frame_->GetMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800516 } else if (cur_quick_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700517 return *cur_quick_frame_;
518 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800519 return nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700520 }
521 }
522
523 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800524 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700525 }
526
Ian Rogers0c7abda2012-09-19 13:33:42 -0700527 uint32_t GetDexPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
528
Ian Rogers62d6c772013-02-27 08:32:07 -0800529 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
530
Ian Rogers0c7abda2012-09-19 13:33:42 -0700531 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
532
Ian Rogersef7d42f2014-01-06 12:55:46 -0800533 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
534 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700535 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800536 DCHECK(GetMethod() != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700537 byte* save_addr =
538 reinterpret_cast<byte*>(cur_quick_frame_) + frame_size - ((num + 1) * kPointerSize);
539#if defined(__i386__)
540 save_addr -= kPointerSize; // account for return address
541#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800542 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700543 }
544
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700545 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700546 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800547 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700548 }
549
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700550 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700551 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700552 return GetFrameHeight() + 1;
553 }
554
Ian Rogersb726dcb2012-09-05 08:57:23 -0700555 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700556 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800557 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700558 }
559 return num_frames_;
560 }
561
Brian Carlstromea46f952013-07-30 01:26:50 -0700562 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800563 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700564
Brian Carlstromea46f952013-07-30 01:26:50 -0700565 void SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700566 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700567
Mathieu Chartier815873e2014-02-13 18:02:13 -0800568 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700569 uintptr_t GetGPR(uint32_t reg) const;
Mathieu Chartier67022432012-11-29 18:04:50 -0800570 void SetGPR(uint32_t reg, uintptr_t value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700571
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700572 // This is a fast-path for getting/setting values in a quick frame.
573 uint32_t* GetVRegAddr(mirror::ArtMethod** cur_quick_frame, const DexFile::CodeItem* code_item,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800574 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
575 uint16_t vreg) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700576 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700577 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
578 byte* vreg_addr = reinterpret_cast<byte*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700579 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700580 }
581
Ian Rogersef7d42f2014-01-06 12:55:46 -0800582 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700583
Ian Rogersef7d42f2014-01-06 12:55:46 -0800584 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700585
586 /*
587 * Return sp-relative offset for a Dalvik virtual register, compiler
588 * spill or Method* in bytes using Method*.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800589 * Note that (reg >= 0) refers to a Dalvik register, (reg == -1)
590 * denotes an invalid Dalvik register, (reg == -2) denotes Method*
591 * and (reg <= -3) denotes a compiler temporary. A compiler temporary
592 * can be thought of as a virtual register that does not exist in the
593 * dex but holds intermediate values to help optimizations and code
594 * generation. A special compiler temporary is one whose location
595 * in frame is well known while non-special ones do not have a requirement
596 * on location in frame as long as code generator itself knows how
597 * to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700598 *
599 * +------------------------+
600 * | IN[ins-1] | {Note: resides in caller's frame}
601 * | . |
602 * | IN[0] |
603 * | caller's Method* |
604 * +========================+ {Note: start of callee's frame}
605 * | core callee-save spill | {variable sized}
606 * +------------------------+
607 * | fp callee-save spill |
608 * +------------------------+
609 * | filler word | {For compatibility, if V[locals-1] used as wide
610 * +------------------------+
611 * | V[locals-1] |
612 * | V[locals-2] |
613 * | . |
614 * | . | ... (reg == 2)
615 * | V[1] | ... (reg == 1)
616 * | V[0] | ... (reg == 0) <---- "locals_start"
617 * +------------------------+
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800618 * | Compiler temp region | ... (reg <= -3)
619 * | |
620 * | |
Ian Rogers0399dde2012-06-06 17:09:28 -0700621 * +------------------------+
622 * | stack alignment padding| {0 to (kStackAlignWords-1) of padding}
623 * +------------------------+
624 * | OUT[outs-1] |
625 * | OUT[outs-2] |
626 * | . |
627 * | OUT[0] |
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800628 * | curMethod* | ... (reg == -2) <<== sp, 16-byte aligned
Ian Rogers0399dde2012-06-06 17:09:28 -0700629 * +========================+
630 */
631 static int GetVRegOffset(const DexFile::CodeItem* code_item,
Ian Rogersb23a7722012-10-09 16:54:26 -0700632 uint32_t core_spills, uint32_t fp_spills,
633 size_t frame_size, int reg) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700634 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800635 DCHECK_NE(reg, static_cast<int>(kVRegInvalid));
636
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700637 int num_spills = __builtin_popcount(core_spills) + __builtin_popcount(fp_spills) + 1; // Filler.
Ian Rogers0399dde2012-06-06 17:09:28 -0700638 int num_ins = code_item->ins_size_;
639 int num_regs = code_item->registers_size_ - num_ins;
640 int locals_start = frame_size - ((num_spills + num_regs) * sizeof(uint32_t));
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800641 if (reg == static_cast<int>(kVRegMethodPtrBaseReg)) {
642 // The current method pointer corresponds to special location on stack.
643 return 0;
644 } else if (reg <= static_cast<int>(kVRegNonSpecialTempBaseReg)) {
645 /*
646 * Special temporaries may have custom locations and the logic above deals with that.
647 * However, non-special temporaries are placed relative to the locals. Since the
648 * virtual register numbers for temporaries "grow" in negative direction, reg number
649 * will always be <= to the temp base reg. Thus, the logic ensures that the first
650 * temp is at offset -4 bytes from locals, the second is at -8 bytes from locals,
651 * and so on.
652 */
653 int relative_offset = (reg + std::abs(static_cast<int>(kVRegNonSpecialTempBaseReg)) - 1) * sizeof(uint32_t);
654 return locals_start + relative_offset;
655 } else if (reg < num_regs) {
656 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700657 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800658 // Handle ins.
659 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700660 }
661 }
662
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800663 static int GetOutVROffset(uint16_t out_num) {
664 // According to stack model, the first out is above the Method ptr.
665 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
666 }
667
Ian Rogers0399dde2012-06-06 17:09:28 -0700668 uintptr_t GetCurrentQuickFramePc() const {
669 return cur_quick_frame_pc_;
670 }
671
Brian Carlstromea46f952013-07-30 01:26:50 -0700672 mirror::ArtMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700673 return cur_quick_frame_;
674 }
675
676 ShadowFrame* GetCurrentShadowFrame() const {
677 return cur_shadow_frame_;
678 }
679
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700680 StackIndirectReferenceTable* GetCurrentSirt() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700681 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700682 ++sp; // Skip Method*; SIRT comes next;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700683 return reinterpret_cast<StackIndirectReferenceTable*>(sp);
684 }
685
Ian Rogers40e3bac2012-11-20 00:09:14 -0800686 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
687
Ian Rogers7a22fa62013-01-23 12:16:16 -0800688 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800689
Ian Rogers7a22fa62013-01-23 12:16:16 -0800690 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800691
Ian Rogers0399dde2012-06-06 17:09:28 -0700692 private:
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200693 instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(uint32_t depth) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700694
Ian Rogersb726dcb2012-09-05 08:57:23 -0700695 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700696
Ian Rogers7a22fa62013-01-23 12:16:16 -0800697 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700698 ShadowFrame* cur_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700699 mirror::ArtMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700700 uintptr_t cur_quick_frame_pc_;
701 // Lazily computed, number of frames in the stack.
702 size_t num_frames_;
703 // Depth of the frame we're currently at.
704 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700705
Ian Rogers0399dde2012-06-06 17:09:28 -0700706 protected:
707 Context* const context_;
708};
709
Elliott Hughes68e76522011-10-05 13:22:16 -0700710} // namespace art
711
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700712#endif // ART_RUNTIME_STACK_H_