blob: bd29cebc8b16533889a851ecf500f5992710d95f [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 Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "base/macros.h"
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070024
25#include <stdint.h>
Ian Rogers40e3bac2012-11-20 00:09:14 -080026#include <string>
Elliott Hughes68e76522011-10-05 13:22:16 -070027
28namespace art {
29
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070031 class ArtMethod;
32 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033} // namespace mirror
34
35class Context;
Ian Rogers0399dde2012-06-06 17:09:28 -070036class ShadowFrame;
Elliott Hughes08fc03a2012-06-26 17:34:00 -070037class StackIndirectReferenceTable;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070038class ScopedObjectAccess;
Elliott Hughes68e76522011-10-05 13:22:16 -070039class Thread;
40
Ian Rogers2bcb4a42012-11-08 10:39:18 -080041// The kind of vreg being accessed in calls to Set/GetVReg.
42enum VRegKind {
43 kReferenceVReg,
44 kIntVReg,
45 kFloatVReg,
46 kLongLoVReg,
47 kLongHiVReg,
48 kDoubleLoVReg,
49 kDoubleHiVReg,
50 kConstant,
51 kImpreciseConstant,
52 kUndefined,
53};
54
Mathieu Chartier67022432012-11-29 18:04:50 -080055// ShadowFrame has 3 possible layouts:
56// - portable - a unified array of VRegs and references. Precise references need GC maps.
57// - interpreter - separate VRegs and reference arrays. References are in the reference array.
58// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -070059class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -070060 public:
Jeff Hao66135192013-05-14 11:02:41 -070061 // Compute size of ShadowFrame in bytes.
62 static size_t ComputeSize(uint32_t num_vregs) {
63 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
64 (sizeof(mirror::Object*) * num_vregs);
65 }
66
67 // Create ShadowFrame in heap for deoptimization.
TDYa127ce4cc0d2012-11-18 16:59:53 -080068 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070069 mirror::ArtMethod* method, uint32_t dex_pc) {
Jeff Hao66135192013-05-14 11:02:41 -070070 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
71 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
72 return sf;
73 }
74
75 // Create ShadowFrame for interpreter using provided memory.
76 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Brian Carlstromea46f952013-07-30 01:26:50 -070077 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080078 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
79 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070080 }
81 ~ShadowFrame() {}
82
TDYa127ce4cc0d2012-11-18 16:59:53 -080083 bool HasReferenceArray() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070084#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -080085 return (number_of_vregs_ & kHasReferenceArray) != 0;
Ian Rogers8a01a3a2013-05-06 13:25:44 -070086#else
87 return true;
88#endif
Ian Rogers0399dde2012-06-06 17:09:28 -070089 }
Elliott Hughes68e76522011-10-05 13:22:16 -070090
TDYa127ce4cc0d2012-11-18 16:59:53 -080091 uint32_t NumberOfVRegs() const {
Ian Rogers8a01a3a2013-05-06 13:25:44 -070092#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -080093 return number_of_vregs_ & ~kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -070094#else
95 return number_of_vregs_;
96#endif
Ian Rogers0399dde2012-06-06 17:09:28 -070097 }
98
TDYa127ce4cc0d2012-11-18 16:59:53 -080099 void SetNumberOfVRegs(uint32_t number_of_vregs) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700100#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800101 number_of_vregs_ = number_of_vregs | (number_of_vregs_ & kHasReferenceArray);
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700102#else
103 UNUSED(number_of_vregs);
104 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
105#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700106 }
107
Ian Rogers0399dde2012-06-06 17:09:28 -0700108 uint32_t GetDexPC() const {
109 return dex_pc_;
110 }
111
112 void SetDexPC(uint32_t dex_pc) {
113 dex_pc_ = dex_pc;
114 }
115
Ian Rogers0399dde2012-06-06 17:09:28 -0700116 ShadowFrame* GetLink() const {
117 return link_;
118 }
119
120 void SetLink(ShadowFrame* frame) {
121 DCHECK_NE(this, frame);
122 link_ = frame;
123 }
124
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700125 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800126 DCHECK_LT(i, NumberOfVRegs());
127 const uint32_t* vreg = &vregs_[i];
128 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700129 }
130
131 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800132 DCHECK_LT(i, NumberOfVRegs());
133 // NOTE: Strict-aliasing?
134 const uint32_t* vreg = &vregs_[i];
135 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700136 }
137
138 int64_t GetVRegLong(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200139 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800140 const uint32_t* vreg = &vregs_[i];
141 return *reinterpret_cast<const int64_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700142 }
143
144 double GetVRegDouble(size_t i) const {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200145 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800146 const uint32_t* vreg = &vregs_[i];
147 return *reinterpret_cast<const double*>(vreg);
148 }
149
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800150 mirror::Object* GetVRegReference(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800151 DCHECK_LT(i, NumberOfVRegs());
152 if (HasReferenceArray()) {
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700153 mirror::Object* ref = References()[i];
154 // If the vreg reference is not equal to the vreg then the vreg reference is stale.
155 if (reinterpret_cast<uint32_t>(ref) != vregs_[i]) {
156 return nullptr;
157 }
158 return ref;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800159 } else {
160 const uint32_t* vreg = &vregs_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 return *reinterpret_cast<mirror::Object* const*>(vreg);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800162 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700163 }
164
Jeff Hao16743632013-05-08 10:59:04 -0700165 // Get view of vregs as range of consecutive arguments starting at i.
166 uint32_t* GetVRegArgs(size_t i) {
167 return &vregs_[i];
168 }
169
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700170 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800171 DCHECK_LT(i, NumberOfVRegs());
172 uint32_t* vreg = &vregs_[i];
173 *reinterpret_cast<int32_t*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700174 }
175
176 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800177 DCHECK_LT(i, NumberOfVRegs());
178 uint32_t* vreg = &vregs_[i];
179 *reinterpret_cast<float*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700180 }
181
182 void SetVRegLong(size_t i, int64_t val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200183 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800184 uint32_t* vreg = &vregs_[i];
185 *reinterpret_cast<int64_t*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700186 }
187
188 void SetVRegDouble(size_t i, double val) {
Sebastien Hertz807a2562013-04-15 09:33:39 +0200189 DCHECK_LT(i, NumberOfVRegs());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800190 uint32_t* vreg = &vregs_[i];
191 *reinterpret_cast<double*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700192 }
193
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800194 void SetVRegReference(size_t i, mirror::Object* val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800195 DCHECK_LT(i, NumberOfVRegs());
196 uint32_t* vreg = &vregs_[i];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 *reinterpret_cast<mirror::Object**>(vreg) = val;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800198 if (HasReferenceArray()) {
199 References()[i] = val;
200 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700201 }
202
Brian Carlstromea46f952013-07-30 01:26:50 -0700203 mirror::ArtMethod* GetMethod() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700204 DCHECK_NE(method_, static_cast<void*>(NULL));
205 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700206 }
207
Ian Rogers62d6c772013-02-27 08:32:07 -0800208 mirror::Object* GetThisObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
209
Jeff Haoe701f482013-05-24 11:50:49 -0700210 mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
211
Ian Rogers62d6c772013-02-27 08:32:07 -0800212 ThrowLocation GetCurrentLocationForThrow() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
213
Brian Carlstromea46f952013-07-30 01:26:50 -0700214 void SetMethod(mirror::ArtMethod* method) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700215#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogers0399dde2012-06-06 17:09:28 -0700216 DCHECK_NE(method, static_cast<void*>(NULL));
217 method_ = method;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700218#else
219 UNUSED(method);
220 UNIMPLEMENTED(FATAL) << "Should only be called when portable is enabled";
221#endif
Elliott Hughes68e76522011-10-05 13:22:16 -0700222 }
223
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800224 bool Contains(mirror::Object** shadow_frame_entry_obj) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800225 if (HasReferenceArray()) {
226 return ((&References()[0] <= shadow_frame_entry_obj) &&
227 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
228 } else {
229 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
230 return ((&vregs_[0] <= shadow_frame_entry) &&
231 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700232 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700233 }
234
Ian Rogers0399dde2012-06-06 17:09:28 -0700235 static size_t LinkOffset() {
236 return OFFSETOF_MEMBER(ShadowFrame, link_);
237 }
238
Ian Rogers0399dde2012-06-06 17:09:28 -0700239 static size_t MethodOffset() {
240 return OFFSETOF_MEMBER(ShadowFrame, method_);
241 }
242
Ian Rogers0399dde2012-06-06 17:09:28 -0700243 static size_t DexPCOffset() {
244 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
245 }
246
Ian Rogers5438ad82012-10-15 17:22:44 -0700247 static size_t NumberOfVRegsOffset() {
248 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
249 }
250
TDYa127ce4cc0d2012-11-18 16:59:53 -0800251 static size_t VRegsOffset() {
252 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700253 }
254
Elliott Hughes68e76522011-10-05 13:22:16 -0700255 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700256 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, mirror::ArtMethod* method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800257 uint32_t dex_pc, bool has_reference_array)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800258 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
259 if (has_reference_array) {
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700260#if defined(ART_USE_PORTABLE_COMPILER)
261 CHECK_LT(num_vregs, static_cast<uint32_t>(kHasReferenceArray));
TDYa127ce4cc0d2012-11-18 16:59:53 -0800262 number_of_vregs_ |= kHasReferenceArray;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700263#endif
Jeff Haoe701f482013-05-24 11:50:49 -0700264 memset(vregs_, 0, num_vregs * (sizeof(uint32_t) + sizeof(mirror::Object*)));
Mathieu Chartier67022432012-11-29 18:04:50 -0800265 } else {
Jeff Haoe701f482013-05-24 11:50:49 -0700266 memset(vregs_, 0, num_vregs * sizeof(uint32_t));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700267 }
268 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700269
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270 mirror::Object* const* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800271 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800272 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273 return reinterpret_cast<mirror::Object* const*>(vreg_end);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800274 }
275
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800276 mirror::Object** References() {
277 return const_cast<mirror::Object**>(const_cast<const ShadowFrame*>(this)->References());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800278 }
279
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700280#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127ce4cc0d2012-11-18 16:59:53 -0800281 enum ShadowFrameFlag {
282 kHasReferenceArray = 1ul << 31
283 };
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700284 // TODO: make const in the portable case.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800285 uint32_t number_of_vregs_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700286#else
287 const uint32_t number_of_vregs_;
288#endif
Ian Rogers5438ad82012-10-15 17:22:44 -0700289 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700290 ShadowFrame* link_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700291#if defined(ART_USE_PORTABLE_COMPILER)
292 // TODO: make const in the portable case.
Brian Carlstromea46f952013-07-30 01:26:50 -0700293 mirror::ArtMethod* method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700294#else
Brian Carlstromea46f952013-07-30 01:26:50 -0700295 mirror::ArtMethod* const method_;
Ian Rogers8a01a3a2013-05-06 13:25:44 -0700296#endif
Ian Rogers0399dde2012-06-06 17:09:28 -0700297 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800298 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700299
Ian Rogers0399dde2012-06-06 17:09:28 -0700300 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700301};
302
Ian Rogers0399dde2012-06-06 17:09:28 -0700303// The managed stack is used to record fragments of managed code stacks. Managed code stacks
304// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
305// necessary for transitions between code using different frame layouts and transitions into native
306// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800307class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700308 public:
Ian Rogersca190662012-06-26 15:45:57 -0700309 ManagedStack()
310 : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700311
312 void PushManagedStackFragment(ManagedStack* fragment) {
313 // Copy this top fragment into given fragment.
314 memcpy(fragment, this, sizeof(ManagedStack));
315 // Clear this fragment, which has become the top.
316 memset(this, 0, sizeof(ManagedStack));
317 // Link our top fragment onto the given fragment.
318 link_ = fragment;
319 }
320
321 void PopManagedStackFragment(const ManagedStack& fragment) {
322 DCHECK(&fragment == link_);
323 // Copy this given fragment back to the top.
324 memcpy(this, &fragment, sizeof(ManagedStack));
325 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700326
327 ManagedStack* GetLink() const {
328 return link_;
329 }
330
Brian Carlstromea46f952013-07-30 01:26:50 -0700331 mirror::ArtMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700332 return top_quick_frame_;
333 }
334
Brian Carlstromea46f952013-07-30 01:26:50 -0700335 void SetTopQuickFrame(mirror::ArtMethod** top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200336 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700337 top_quick_frame_ = top;
338 }
339
340 uintptr_t GetTopQuickFramePc() const {
341 return top_quick_frame_pc_;
342 }
343
344 void SetTopQuickFramePc(uintptr_t pc) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200345 DCHECK(top_shadow_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700346 top_quick_frame_pc_ = pc;
347 }
348
349 static size_t TopQuickFrameOffset() {
350 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
351 }
352
353 static size_t TopQuickFramePcOffset() {
354 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_pc_);
355 }
356
357 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200358 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700359 ShadowFrame* old_frame = top_shadow_frame_;
360 top_shadow_frame_ = new_top_frame;
361 new_top_frame->SetLink(old_frame);
362 return old_frame;
363 }
364
365 ShadowFrame* PopShadowFrame() {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200366 DCHECK(top_quick_frame_ == NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700367 CHECK(top_shadow_frame_ != NULL);
368 ShadowFrame* frame = top_shadow_frame_;
369 top_shadow_frame_ = frame->GetLink();
370 return frame;
371 }
372
373 ShadowFrame* GetTopShadowFrame() const {
374 return top_shadow_frame_;
375 }
376
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800377 void SetTopShadowFrame(ShadowFrame* top) {
Sebastien Hertza7b0c422013-04-05 16:19:39 +0200378 DCHECK(top_quick_frame_ == NULL);
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800379 top_shadow_frame_ = top;
380 }
381
Ian Rogers0399dde2012-06-06 17:09:28 -0700382 static size_t TopShadowFrameOffset() {
383 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
384 }
385
TDYa127ce4cc0d2012-11-18 16:59:53 -0800386 size_t NumJniShadowFrameReferences() const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700387
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800388 bool ShadowFramesContain(mirror::Object** shadow_frame_entry) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700389
390 private:
391 ManagedStack* link_;
392 ShadowFrame* top_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700393 mirror::ArtMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700394 uintptr_t top_quick_frame_pc_;
395};
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
Brian Carlstromea46f952013-07-30 01:26:50 -0700410 mirror::ArtMethod* GetMethod() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700411 if (cur_shadow_frame_ != NULL) {
412 return cur_shadow_frame_->GetMethod();
413 } else if (cur_quick_frame_ != NULL) {
414 return *cur_quick_frame_;
415 } else {
416 return NULL;
417 }
418 }
419
420 bool IsShadowFrame() const {
421 return cur_shadow_frame_ != NULL;
422 }
423
Ian Rogers0c7abda2012-09-19 13:33:42 -0700424 uint32_t GetDexPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
425
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
Mathieu Chartier67022432012-11-29 18:04:50 -0800430 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700431 // Callee saves are held at the top of the frame
Mathieu Chartier67022432012-11-29 18:04:50 -0800432 DCHECK(GetMethod() != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700433 byte* save_addr =
434 reinterpret_cast<byte*>(cur_quick_frame_) + frame_size - ((num + 1) * kPointerSize);
435#if defined(__i386__)
436 save_addr -= kPointerSize; // account for return address
437#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800438 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700439 }
440
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700441 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700442 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800443 return GetNumFrames() - cur_depth_ - 1;
Ian Rogers0399dde2012-06-06 17:09:28 -0700444 }
445
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700446 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700447 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700448 return GetFrameHeight() + 1;
449 }
450
Ian Rogersb726dcb2012-09-05 08:57:23 -0700451 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700452 if (num_frames_ == 0) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800453 num_frames_ = ComputeNumFrames(thread_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700454 }
455 return num_frames_;
456 }
457
Brian Carlstromea46f952013-07-30 01:26:50 -0700458 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700460
Brian Carlstromea46f952013-07-30 01:26:50 -0700461 void SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700462 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700463
464 uintptr_t GetGPR(uint32_t reg) const;
Mathieu Chartier67022432012-11-29 18:04:50 -0800465 void SetGPR(uint32_t reg, uintptr_t value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700466
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700467 // This is a fast-path for getting/setting values in a quick frame.
468 uint32_t* GetVRegAddr(mirror::ArtMethod** cur_quick_frame, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800469 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
470 uint16_t vreg) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700471 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700472 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
473 byte* vreg_addr = reinterpret_cast<byte*>(cur_quick_frame) + offset;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700474 return reinterpret_cast<uint32_t*>(vreg_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700475 }
476
477 uintptr_t GetReturnPc() const;
478
479 void SetReturnPc(uintptr_t new_ret_pc);
480
481 /*
482 * Return sp-relative offset for a Dalvik virtual register, compiler
483 * spill or Method* in bytes using Method*.
484 * Note that (reg >= 0) refers to a Dalvik register, (reg == -2)
485 * denotes Method* and (reg <= -3) denotes a compiler temp.
486 *
487 * +------------------------+
488 * | IN[ins-1] | {Note: resides in caller's frame}
489 * | . |
490 * | IN[0] |
491 * | caller's Method* |
492 * +========================+ {Note: start of callee's frame}
493 * | core callee-save spill | {variable sized}
494 * +------------------------+
495 * | fp callee-save spill |
496 * +------------------------+
497 * | filler word | {For compatibility, if V[locals-1] used as wide
498 * +------------------------+
499 * | V[locals-1] |
500 * | V[locals-2] |
501 * | . |
502 * | . | ... (reg == 2)
503 * | V[1] | ... (reg == 1)
504 * | V[0] | ... (reg == 0) <---- "locals_start"
505 * +------------------------+
506 * | Compiler temps | ... (reg == -2)
507 * | | ... (reg == -3)
508 * | | ... (reg == -4)
509 * +------------------------+
510 * | stack alignment padding| {0 to (kStackAlignWords-1) of padding}
511 * +------------------------+
512 * | OUT[outs-1] |
513 * | OUT[outs-2] |
514 * | . |
515 * | OUT[0] |
516 * | curMethod* | ... (reg == -1) <<== sp, 16-byte aligned
517 * +========================+
518 */
519 static int GetVRegOffset(const DexFile::CodeItem* code_item,
Ian Rogersb23a7722012-10-09 16:54:26 -0700520 uint32_t core_spills, uint32_t fp_spills,
521 size_t frame_size, int reg) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700522 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700523 int num_spills = __builtin_popcount(core_spills) + __builtin_popcount(fp_spills) + 1; // Filler.
Ian Rogers0399dde2012-06-06 17:09:28 -0700524 int num_ins = code_item->ins_size_;
525 int num_regs = code_item->registers_size_ - num_ins;
526 int locals_start = frame_size - ((num_spills + num_regs) * sizeof(uint32_t));
527 if (reg == -2) {
528 return 0; // Method*
529 } else if (reg <= -3) {
530 return locals_start - ((reg + 1) * sizeof(uint32_t)); // Compiler temp.
531 } else if (reg < num_regs) {
532 return locals_start + (reg * sizeof(uint32_t)); // Dalvik local reg.
533 } else {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700534 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + sizeof(uint32_t); // Dalvik in.
Ian Rogers0399dde2012-06-06 17:09:28 -0700535 }
536 }
537
538 uintptr_t GetCurrentQuickFramePc() const {
539 return cur_quick_frame_pc_;
540 }
541
Brian Carlstromea46f952013-07-30 01:26:50 -0700542 mirror::ArtMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700543 return cur_quick_frame_;
544 }
545
546 ShadowFrame* GetCurrentShadowFrame() const {
547 return cur_shadow_frame_;
548 }
549
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700550 StackIndirectReferenceTable* GetCurrentSirt() const {
Brian Carlstromea46f952013-07-30 01:26:50 -0700551 mirror::ArtMethod** sp = GetCurrentQuickFrame();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700552 ++sp; // Skip Method*; SIRT comes next;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700553 return reinterpret_cast<StackIndirectReferenceTable*>(sp);
554 }
555
Ian Rogers40e3bac2012-11-20 00:09:14 -0800556 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
557
Ian Rogers7a22fa62013-01-23 12:16:16 -0800558 static size_t ComputeNumFrames(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800559
Ian Rogers7a22fa62013-01-23 12:16:16 -0800560 static void DescribeStack(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers306057f2012-11-26 12:45:53 -0800561
Ian Rogers0399dde2012-06-06 17:09:28 -0700562 private:
Ian Rogers62d6c772013-02-27 08:32:07 -0800563 instrumentation::InstrumentationStackFrame GetInstrumentationStackFrame(uint32_t depth) const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700564
Ian Rogersb726dcb2012-09-05 08:57:23 -0700565 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700566
Ian Rogers7a22fa62013-01-23 12:16:16 -0800567 Thread* const thread_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700568 ShadowFrame* cur_shadow_frame_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700569 mirror::ArtMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700570 uintptr_t cur_quick_frame_pc_;
571 // Lazily computed, number of frames in the stack.
572 size_t num_frames_;
573 // Depth of the frame we're currently at.
574 size_t cur_depth_;
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700575
Ian Rogers0399dde2012-06-06 17:09:28 -0700576 protected:
577 Context* const context_;
578};
579
Elliott Hughes68e76522011-10-05 13:22:16 -0700580} // namespace art
581
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700582#endif // ART_RUNTIME_STACK_H_