blob: 4ee5de1d8932475e8e7e03b9eaf7f8996174073a [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"
Mathieu Chartier4e305412014-02-19 10:54:44 -080025#include "mirror/object.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080026#include "mirror/object_reference.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080027#include "verify_object.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070028
29#include <stdint.h>
Ian Rogers40e3bac2012-11-20 00:09:14 -080030#include <string>
Elliott Hughes68e76522011-10-05 13:22:16 -070031
32namespace art {
33
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070035 class ArtMethod;
36 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037} // namespace mirror
38
39class Context;
Ian Rogers0399dde2012-06-06 17:09:28 -070040class ShadowFrame;
Elliott Hughes08fc03a2012-06-26 17:34:00 -070041class StackIndirectReferenceTable;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042class ScopedObjectAccess;
Elliott Hughes68e76522011-10-05 13:22:16 -070043class Thread;
44
Ian Rogers2bcb4a42012-11-08 10:39:18 -080045// The kind of vreg being accessed in calls to Set/GetVReg.
46enum VRegKind {
47 kReferenceVReg,
48 kIntVReg,
49 kFloatVReg,
50 kLongLoVReg,
51 kLongHiVReg,
52 kDoubleLoVReg,
53 kDoubleHiVReg,
54 kConstant,
55 kImpreciseConstant,
56 kUndefined,
57};
58
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -080059/**
60 * @brief Represents the virtual register numbers that denote special meaning.
61 * @details This is used to make some virtual register numbers to have specific
62 * semantic meaning. This is done so that the compiler can treat all virtual
63 * registers the same way and only special case when needed. For example,
64 * calculating SSA does not care whether a virtual register is a normal one or
65 * a compiler temporary, so it can deal with them in a consistent manner. But,
66 * for example if backend cares about temporaries because it has custom spill
67 * location, then it can special case them only then.
68 */
69enum VRegBaseRegNum : int {
70 /**
71 * @brief Virtual registers originating from dex have number >= 0.
72 */
73 kVRegBaseReg = 0,
74
75 /**
76 * @brief Invalid virtual register number.
77 */
78 kVRegInvalid = -1,
79
80 /**
81 * @brief Used to denote the base register for compiler temporaries.
82 * @details Compiler temporaries are virtual registers not originating
83 * from dex but that are created by compiler. All virtual register numbers
84 * that are <= kVRegTempBaseReg are categorized as compiler temporaries.
85 */
86 kVRegTempBaseReg = -2,
87
88 /**
89 * @brief Base register of temporary that holds the method pointer.
90 * @details This is a special compiler temporary because it has a specific
91 * location on stack.
92 */
93 kVRegMethodPtrBaseReg = kVRegTempBaseReg,
94
95 /**
96 * @brief Base register of non-special compiler temporary.
97 * @details A non-special compiler temporary is one whose spill location
98 * is flexible.
99 */
100 kVRegNonSpecialTempBaseReg = -3,
101};
102
Ian Rogersef7d42f2014-01-06 12:55:46 -0800103// A reference from the shadow stack to a MirrorType object within the Java heap.
104template<class MirrorType>
105class MANAGED StackReference : public mirror::ObjectReference<false, MirrorType> {
106 public:
107 StackReference<MirrorType>() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
108 : mirror::ObjectReference<false, MirrorType>(nullptr) {}
109
110 static StackReference<MirrorType> FromMirrorPtr(MirrorType* p)
111 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
112 return StackReference<MirrorType>(p);
113 }
114
115 private:
116 StackReference<MirrorType>(MirrorType* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
117 : mirror::ObjectReference<false, MirrorType>(p) {}
118};
119
Mathieu Chartier67022432012-11-29 18:04:50 -0800120// ShadowFrame has 3 possible layouts:
121// - portable - a unified array of VRegs and references. Precise references need GC maps.
122// - interpreter - separate VRegs and reference arrays. References are in the reference array.
123// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -0700124class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -0700125 public:
Ian Rogersef7d42f2014-01-06 12:55:46 -0800126 // Compute size of ShadowFrame in bytes assuming it has a reference array.
Jeff Hao66135192013-05-14 11:02:41 -0700127 static size_t ComputeSize(uint32_t num_vregs) {
128 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
Ian Rogersef7d42f2014-01-06 12:55:46 -0800129 (sizeof(StackReference<mirror::Object>) * num_vregs);
Jeff Hao66135192013-05-14 11:02:41 -0700130 }
131
132 // Create ShadowFrame in heap for deoptimization.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800133 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -0700134 mirror::ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -0700135 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200136 return Create(num_vregs, link, method, dex_pc, memory);
Jeff Hao66135192013-05-14 11:02:41 -0700137 }
138
139 // Create ShadowFrame for interpreter using provided memory.
140 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -0700141 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800142 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
143 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700144 }
145 ~ShadowFrame() {}
146
TDYa127ce4cc0d2012-11-18 16:59:53 -0800147 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700148#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800149 return (number_of_vregs_ & kHasReferenceArray) != 0;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700150#else
151 return true;
152#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700153 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700154
TDYa127ce4cc0d2012-11-18 16:59:53 -0800155 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700156#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800157 return number_of_vregs_ & ~kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700158#else
159 return number_of_vregs_;
160#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700161 }
162
TDYa127ce4cc0d2012-11-18 16:59:53 -0800163 void SetNumberOfVRegs(uint32_t number_of_vregs) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700164#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800165 number_of_vregs_ = number_of_vregs | (number_of_vregs_ & kHasReferenceArray);
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700166#else
167 UNUSED(number_of_vregs);
168 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
169#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700170 }
171
Ian Rogers0399dde2012-06-06 17:09:28 -0700172 uint32_t GetDexPC() const {
173 return dex_pc_;
174 }
175
176 void SetDexPC(uint32_t dex_pc) {
177 dex_pc_ = dex_pc;
178 }
179
Ian Rogers0399dde2012-06-06 17:09:28 -0700180 ShadowFrame* GetLink() const {
181 return link_;
182 }
183
184 void SetLink(ShadowFrame* frame) {
185 DCHECK_NE(this, frame);
186 link_ = frame;
187 }
188
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700189 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800190 DCHECK_LT(i, NumberOfVRegs());
191 const uint32_t* vreg = &vregs_[i];
192 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700193 }
194
195 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800196 DCHECK_LT(i, NumberOfVRegs());
197 // NOTE: Strict-aliasing?
198 const uint32_t* vreg = &vregs_[i];
199 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700200 }
201
202 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200203 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800204 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700205 // Alignment attribute required for GCC 4.8
206 typedef const int64_t unaligned_int64 __attribute__ ((aligned (4)));
207 return *reinterpret_cast<unaligned_int64*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700208 }
209
210 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200211 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800212 const uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700213 // Alignment attribute required for GCC 4.8
214 typedef const double unaligned_double __attribute__ ((aligned (4)));
215 return *reinterpret_cast<unaligned_double*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800216 }
217
Mathieu Chartier4e305412014-02-19 10:54:44 -0800218 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800219 mirror::Object* GetVRegReference(size_t i) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800220 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800221 mirror::Object* ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800222 if (HasReferenceArray()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800223 ref = References()[i].AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800224 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800225 const uint32_t* vreg_ptr = &vregs_[i];
Mathieu Chartier4e305412014-02-19 10:54:44 -0800226 ref = reinterpret_cast<const StackReference<mirror::Object>*>(vreg_ptr)->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800227 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800228 if (kVerifyFlags & kVerifyReads) {
229 VerifyObject(ref);
230 }
231 return ref;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700232 }
233
Jeff Hao16743632013-05-08 10:59:04 -0700234 // Get view of vregs as range of consecutive arguments starting at i.
235 uint32_t* GetVRegArgs(size_t i) {
236 return &vregs_[i];
237 }
238
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700239 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800240 DCHECK_LT(i, NumberOfVRegs());
241 uint32_t* vreg = &vregs_[i];
242 *reinterpret_cast<int32_t*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700243 // This is needed for moving collectors since these can update the vreg references if they
244 // happen to agree with references in the reference array.
245 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800246 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700247 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700248 }
249
250 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800251 DCHECK_LT(i, NumberOfVRegs());
252 uint32_t* vreg = &vregs_[i];
253 *reinterpret_cast<float*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700254 // This is needed for moving collectors since these can update the vreg references if they
255 // happen to agree with references in the reference array.
256 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800257 References()[i].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700258 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700259 }
260
261 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200262 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800263 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700264 // Alignment attribute required for GCC 4.8
265 typedef int64_t unaligned_int64 __attribute__ ((aligned (4)));
266 *reinterpret_cast<unaligned_int64*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700267 // This is needed for moving collectors since these can update the vreg references if they
268 // happen to agree with references in the reference array.
269 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800270 References()[i].Clear();
271 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700272 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700273 }
274
275 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200276 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800277 uint32_t* vreg = &vregs_[i];
Jeff Haoe47637c2013-09-19 15:13:16 -0700278 // Alignment attribute required for GCC 4.8
279 typedef double unaligned_double __attribute__ ((aligned (4)));
280 *reinterpret_cast<unaligned_double*>(vreg) = val;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700281 // This is needed for moving collectors since these can update the vreg references if they
282 // happen to agree with references in the reference array.
283 if (kMovingCollector && HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800284 References()[i].Clear();
285 References()[i + 1].Clear();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700286 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700287 }
288
Mathieu Chartier4e305412014-02-19 10:54:44 -0800289 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800291 DCHECK_LT(i, NumberOfVRegs());
Mathieu Chartier4e305412014-02-19 10:54:44 -0800292 if (kVerifyFlags & kVerifyWrites) {
293 VerifyObject(val);
294 }
TDYa127ce4cc0d2012-11-18 16:59:53 -0800295 uint32_t* vreg = &vregs_[i];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800296 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800297 if (HasReferenceArray()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800298 References()[i].Assign(val);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800299 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700300 }
301
Ian Rogersef7d42f2014-01-06 12:55:46 -0800302 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
303 DCHECK(method_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700304 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700305 }
306
Ian Rogers62d6c772013-02-27 08:32:07 -0800307 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
308
Jeff Haoe701f482013-05-24 11:50:49 -0700309 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
310
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 ThrowLocation GetCurrentLocationForThrow() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
312
Brian Carlstromea46f952013-07-30 01:26:50 -0700313 void SetMethod(mirror::ArtMethod* method) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700314#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersef7d42f2014-01-06 12:55:46 -0800315 DCHECK(method != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700316 method_ = method;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700317#else
318 UNUSED(method);
319 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
320#endif
Elliott Hughes68e76522011-10-05 13:22:16 -0700321 }
322
Ian Rogersef7d42f2014-01-06 12:55:46 -0800323 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800324 if (HasReferenceArray()) {
325 return ((&References()[0] <= shadow_frame_entry_obj) &&
326 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
327 } else {
328 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
329 return ((&vregs_[0] <= shadow_frame_entry) &&
330 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700331 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700332 }
333
Ian Rogers0399dde2012-06-06 17:09:28 -0700334 static size_t LinkOffset() {
335 return OFFSETOF_MEMBER(ShadowFrame, link_);
336 }
337
Ian Rogers0399dde2012-06-06 17:09:28 -0700338 static size_t MethodOffset() {
339 return OFFSETOF_MEMBER(ShadowFrame, method_);
340 }
341
Ian Rogers0399dde2012-06-06 17:09:28 -0700342 static size_t DexPCOffset() {
343 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
344 }
345
Ian Rogers5438ad82012-10-15 17:22:44 -0700346 static size_t NumberOfVRegsOffset() {
347 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
348 }
349
TDYa127ce4cc0d2012-11-18 16:59:53 -0800350 static size_t VRegsOffset() {
351 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700352 }
353
Elliott Hughes68e76522011-10-05 13:22:16 -0700354 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700355 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800356 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800357 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
358 if (has_reference_array) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700359#if defined(ART_USE_PORTABLE_COMPILER)
360 CHECK_LT(num_vregs, static_cast<uint32_t>(kHasReferenceArray));
TDYa127ce4cc0d2012-11-18 16:59:53 -0800361 number_of_vregs_ |= kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700362#endif
Ian Rogersef7d42f2014-01-06 12:55:46 -0800363 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(StackReference<mirror::Object>)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800364 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700365 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700366 }
367 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700368
Ian Rogersef7d42f2014-01-06 12:55:46 -0800369 const StackReference<mirror::Object>* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800370 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800371 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800372 return reinterpret_cast<const StackReference<mirror::Object>*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800373 }
374
Ian Rogersef7d42f2014-01-06 12:55:46 -0800375 StackReference<mirror::Object>* References() {
376 return const_cast<StackReference<mirror::Object>*>(const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800377 }
378
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700379#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800380 enum ShadowFrameFlag {
381 kHasReferenceArray = 1ul << 31
382 };
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700383 // TODO: make const in the portable case.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800384 uint32_t number_of_vregs_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700385#else
386 const uint32_t number_of_vregs_;
387#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700388 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700389 ShadowFrame* link_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700390#if defined(ART_USE_PORTABLE_COMPILER)
391 // TODO: make const in the portable case.
Brian Carlstromea46f952013-07-30 01:26:50 -0700392 mirror::ArtMethod* method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700393#else
Brian Carlstromea46f952013-07-30 01:26:50 -0700394 mirror::ArtMethod* const method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700395#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700396 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800397 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700398
Ian Rogers0399dde2012-06-06 17:09:28 -0700399 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700400};
401
Ian Rogers0399dde2012-06-06 17:09:28 -0700402// The managed stack is used to record fragments of managed code stacks. Managed code stacks
403// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
404// necessary for transitions between code using different frame layouts and transitions into native
405// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800406class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700407 public:
Ian Rogersca190662012-06-26 15:45:57 -0700408 ManagedStack()
409 : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700410
411 void PushManagedStackFragment(ManagedStack* fragment) {
412 // Copy this top fragment into given fragment.
413 memcpy(fragment, this, sizeof(ManagedStack));
414 // Clear this fragment, which has become the top.
415 memset(this, 0, sizeof(ManagedStack));
416 // Link our top fragment onto the given fragment.
417 link_ = fragment;
418 }
419
420 void PopManagedStackFragment(const ManagedStack& fragment) {
421 DCHECK(&fragment == link_);
422 // Copy this given fragment back to the top.
423 memcpy(this, &fragment, sizeof(ManagedStack));
424 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700425
426 ManagedStack* GetLink() const {
427 return link_;
428 }
429
Brian Carlstromea46f952013-07-30 01:26:50 -0700430 mirror::ArtMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700431 return top_quick_frame_;
432 }
433
Brian Carlstromea46f952013-07-30 01:26:50 -0700434 void SetTopQuickFrame(mirror::ArtMethod** top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200435 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700436 top_quick_frame_ = top;
437 }
438
439 uintptr_t GetTopQuickFramePc() const {
440 return top_quick_frame_pc_;
441 }
442
443 void SetTopQuickFramePc(uintptr_t pc) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200444 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700445 top_quick_frame_pc_ = pc;
446 }
447
448 static size_t TopQuickFrameOffset() {
449 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
450 }
451
452 static size_t TopQuickFramePcOffset() {
453 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_pc_);
454 }
455
456 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200457 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700458 ShadowFrame* old_frame = top_shadow_frame_;
459 top_shadow_frame_ = new_top_frame;
460 new_top_frame->SetLink(old_frame);
461 return old_frame;
462 }
463
464 ShadowFrame* PopShadowFrame() {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200465 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700466 CHECK(top_shadow_frame_ != NULL);
467 ShadowFrame* frame = top_shadow_frame_;
468 top_shadow_frame_ = frame->GetLink();
469 return frame;
470 }
471
472 ShadowFrame* GetTopShadowFrame() const {
473 return top_shadow_frame_;
474 }
475
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800476 void SetTopShadowFrame(ShadowFrame* top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200477 DCHECK(top_quick_frame_ == NULL);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800478 top_shadow_frame_ = top;
479 }
480
Ian Rogers0399dde2012-06-06 17:09:28 -0700481 static size_t TopShadowFrameOffset() {
482 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
483 }
484
Ian Rogersef7d42f2014-01-06 12:55:46 -0800485 size_t NumJniShadowFrameReferences() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700486
Ian Rogersef7d42f2014-01-06 12:55:46 -0800487 bool ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700488
489 private:
490 ManagedStack* link_;
491 ShadowFrame* top_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700492 mirror::ArtMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700493 uintptr_t top_quick_frame_pc_;
494};
495
496class StackVisitor {
497 protected:
Ian Rogers7a22fa62013-01-23 12:16:16 -0800498 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700499
500 public:
501 virtual ~StackVisitor() {}
502
503 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700504 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700505
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700506 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700508
Ian Rogersef7d42f2014-01-06 12:55:46 -0800509 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
510 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700511 return cur_shadow_frame_->GetMethod();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800512 } else if (cur_quick_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700513 return *cur_quick_frame_;
514 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800515 return nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700516 }
517 }
518
519 bool IsShadowFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800520 return cur_shadow_frame_ != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -0700521 }
522
Dave Allisonb373e092014-02-20 16:06:36 -0800523 uint32_t GetDexPc(bool abort_on_failure = true) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700524
Ian Rogers62d6c772013-02-27 08:32:07 -0800525 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
526
Ian Rogers0c7abda2012-09-19 13:33:42 -0700527 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
528
Ian Rogersef7d42f2014-01-06 12:55:46 -0800529 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const
530 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700531 // Callee saves are held at the top of the frame
Ian Rogersef7d42f2014-01-06 12:55:46 -0800532 DCHECK(GetMethod() != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700533 byte* save_addr =
534 reinterpret_cast<byte*>(cur_quick_frame_) + frame_size - ((num + 1) * kPointerSize);
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800535#if defined(__i386__) || defined(__x86_64__)
Ian Rogers0399dde2012-06-06 17:09:28 -0700536 save_addr -= kPointerSize; // account for return address
537#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800538 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700539 }
540
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700541 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700542 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800543 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700544 }
545
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700546 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700547 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700548 return GetFrameHeight() + 1;
549 }
550
Ian Rogersb726dcb2012-09-05 08:57:23 -0700551 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700552 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800553 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700554 }
555 return num_frames_;
556 }
557
Brian Carlstromea46f952013-07-30 01:26:50 -0700558 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800559 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700560
Brian Carlstromea46f952013-07-30 01:26:50 -0700561 void SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700562 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700563
Mathieu Chartier815873e2014-02-13 18:02:13 -0800564 uintptr_t* GetGPRAddress(uint32_t reg) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700565 uintptr_t GetGPR(uint32_t reg) const;
Mathieu Chartier67022432012-11-29 18:04:50 -0800566 void SetGPR(uint32_t reg, uintptr_t value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700567
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700568 // This is a fast-path for getting/setting values in a quick frame.
569 uint32_t* GetVRegAddr(mirror::ArtMethod** cur_quick_frame, const DexFile::CodeItem* code_item,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800570 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
571 uint16_t vreg) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700572 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700573 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
574 byte* vreg_addr = reinterpret_cast<byte*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700575 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700576 }
577
Ian Rogersef7d42f2014-01-06 12:55:46 -0800578 uintptr_t GetReturnPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700579
Ian Rogersef7d42f2014-01-06 12:55:46 -0800580 void SetReturnPc(uintptr_t new_ret_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700581
582 /*
583 * Return sp-relative offset for a Dalvik virtual register, compiler
584 * spill or Method* in bytes using Method*.
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800585 * Note that (reg >= 0) refers to a Dalvik register, (reg == -1)
586 * denotes an invalid Dalvik register, (reg == -2) denotes Method*
587 * and (reg <= -3) denotes a compiler temporary. A compiler temporary
588 * can be thought of as a virtual register that does not exist in the
589 * dex but holds intermediate values to help optimizations and code
590 * generation. A special compiler temporary is one whose location
591 * in frame is well known while non-special ones do not have a requirement
592 * on location in frame as long as code generator itself knows how
593 * to access them.
Ian Rogers0399dde2012-06-06 17:09:28 -0700594 *
595 * +------------------------+
596 * | IN[ins-1] | {Note: resides in caller's frame}
597 * | . |
598 * | IN[0] |
599 * | caller's Method* |
600 * +========================+ {Note: start of callee's frame}
601 * | core callee-save spill | {variable sized}
602 * +------------------------+
603 * | fp callee-save spill |
604 * +------------------------+
605 * | filler word | {For compatibility, if V[locals-1] used as wide
606 * +------------------------+
607 * | V[locals-1] |
608 * | V[locals-2] |
609 * | . |
610 * | . | ... (reg == 2)
611 * | V[1] | ... (reg == 1)
612 * | V[0] | ... (reg == 0) <---- "locals_start"
613 * +------------------------+
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800614 * | Compiler temp region | ... (reg <= -3)
615 * | |
616 * | |
Ian Rogers0399dde2012-06-06 17:09:28 -0700617 * +------------------------+
618 * | stack alignment padding| {0 to (kStackAlignWords-1) of padding}
619 * +------------------------+
620 * | OUT[outs-1] |
621 * | OUT[outs-2] |
622 * | . |
623 * | OUT[0] |
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800624 * | curMethod* | ... (reg == -2) <<== sp, 16-byte aligned
Ian Rogers0399dde2012-06-06 17:09:28 -0700625 * +========================+
626 */
627 static int GetVRegOffset(const DexFile::CodeItem* code_item,
Ian Rogersb23a7722012-10-09 16:54:26 -0700628 uint32_t core_spills, uint32_t fp_spills,
629 size_t frame_size, int reg) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700630 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800631 DCHECK_NE(reg, static_cast<int>(kVRegInvalid));
632
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700633 int num_spills = __builtin_popcount(core_spills) + __builtin_popcount(fp_spills) + 1; // Filler.
Ian Rogers0399dde2012-06-06 17:09:28 -0700634 int num_ins = code_item->ins_size_;
635 int num_regs = code_item->registers_size_ - num_ins;
636 int locals_start = frame_size - ((num_spills + num_regs) * sizeof(uint32_t));
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800637 if (reg == static_cast<int>(kVRegMethodPtrBaseReg)) {
638 // The current method pointer corresponds to special location on stack.
639 return 0;
640 } else if (reg <= static_cast<int>(kVRegNonSpecialTempBaseReg)) {
641 /*
642 * Special temporaries may have custom locations and the logic above deals with that.
643 * However, non-special temporaries are placed relative to the locals. Since the
644 * virtual register numbers for temporaries "grow" in negative direction, reg number
645 * will always be <= to the temp base reg. Thus, the logic ensures that the first
646 * temp is at offset -4 bytes from locals, the second is at -8 bytes from locals,
647 * and so on.
648 */
649 int relative_offset = (reg + std::abs(static_cast<int>(kVRegNonSpecialTempBaseReg)) - 1) * sizeof(uint32_t);
650 return locals_start + relative_offset;
651 } else if (reg < num_regs) {
652 return locals_start + (reg * sizeof(uint32_t));
Ian Rogers0399dde2012-06-06 17:09:28 -0700653 } else {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800654 // Handle ins.
655 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + sizeof(StackReference<mirror::ArtMethod>);
Ian Rogers0399dde2012-06-06 17:09:28 -0700656 }
657 }
658
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800659 static int GetOutVROffset(uint16_t out_num) {
660 // According to stack model, the first out is above the Method ptr.
661 return sizeof(StackReference<mirror::ArtMethod>) + (out_num * sizeof(uint32_t));
662 }
663
Ian Rogers0399dde2012-06-06 17:09:28 -0700664 uintptr_t GetCurrentQuickFramePc() const {
665 return cur_quick_frame_pc_;
666 }
667
Brian Carlstromea46f952013-07-30 01:26:50 -0700668 mirror::ArtMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700669 return cur_quick_frame_;
670 }
671
672 ShadowFrame* GetCurrentShadowFrame() const {
673 return cur_shadow_frame_;
674 }
675
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700676 StackIndirectReferenceTable* GetCurrentSirt() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700677 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700678 ++sp; // Skip Method*; SIRT comes next;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700679 return reinterpret_cast<StackIndirectReferenceTable*>(sp);
680 }
681
Ian Rogers40e3bac2012-11-20 00:09:14 -0800682 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
683
Ian Rogers7a22fa62013-01-23 12:16:16 -0800684 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800685
Ian Rogers7a22fa62013-01-23 12:16:16 -0800686 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800687
Ian Rogers0399dde2012-06-06 17:09:28 -0700688 private:
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200689 instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(uint32_t depth) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700690
Ian Rogersb726dcb2012-09-05 08:57:23 -0700691 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700692
Ian Rogers7a22fa62013-01-23 12:16:16 -0800693 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700694 ShadowFrame* cur_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700695 mirror::ArtMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700696 uintptr_t cur_quick_frame_pc_;
697 // Lazily computed, number of frames in the stack.
698 size_t num_frames_;
699 // Depth of the frame we're currently at.
700 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700701
Ian Rogers0399dde2012-06-06 17:09:28 -0700702 protected:
703 Context* const context_;
704};
705
Elliott Hughes68e76522011-10-05 13:22:16 -0700706} // namespace art
707
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700708#endif // ART_RUNTIME_STACK_H_