blob: c3b837ff4c2b820b9695607d8eb795a46000f9e6 [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
17#ifndef ART_SRC_STACK_H_
18#define ART_SRC_STACK_H_
19
Elliott Hughes76160052012-12-12 16:31:20 -080020#include "base/macros.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080021#include "dex_file.h"
Ian Rogers0399dde2012-06-06 17:09:28 -070022#include "heap.h"
jeffhao725a9572012-11-13 18:20:12 -080023#include "instrumentation.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070024#include "jni.h"
Ian Rogers0399dde2012-06-06 17:09:28 -070025#include "oat/runtime/context.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
Mathieu Chartier66f19252012-09-18 08:57:04 -070032class AbstractMethod;
Ian Rogers2bcb4a42012-11-08 10:39:18 -080033class Context;
Ian Rogers0399dde2012-06-06 17:09:28 -070034class Object;
35class ShadowFrame;
Elliott Hughes08fc03a2012-06-26 17:34:00 -070036class StackIndirectReferenceTable;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070037class ScopedObjectAccess;
Elliott Hughes68e76522011-10-05 13:22:16 -070038class Thread;
39
Ian Rogers2bcb4a42012-11-08 10:39:18 -080040// The kind of vreg being accessed in calls to Set/GetVReg.
41enum VRegKind {
42 kReferenceVReg,
43 kIntVReg,
44 kFloatVReg,
45 kLongLoVReg,
46 kLongHiVReg,
47 kDoubleLoVReg,
48 kDoubleHiVReg,
49 kConstant,
50 kImpreciseConstant,
51 kUndefined,
52};
53
Mathieu Chartier67022432012-11-29 18:04:50 -080054// ShadowFrame has 3 possible layouts:
55// - portable - a unified array of VRegs and references. Precise references need GC maps.
56// - interpreter - separate VRegs and reference arrays. References are in the reference array.
57// - JNI - just VRegs, but where every VReg holds a reference.
Ian Rogers0399dde2012-06-06 17:09:28 -070058class ShadowFrame {
Elliott Hughes68e76522011-10-05 13:22:16 -070059 public:
TDYa127ce4cc0d2012-11-18 16:59:53 -080060 // Create ShadowFrame for interpreter.
61 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link,
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070062 AbstractMethod* method, uint32_t dex_pc) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080063 size_t sz = sizeof(ShadowFrame) +
64 (sizeof(uint32_t) * num_vregs) +
65 (sizeof(Object*) * num_vregs);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070066 uint8_t* memory = new uint8_t[sz];
TDYa127ce4cc0d2012-11-18 16:59:53 -080067 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
68 return sf;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070069 }
70 ~ShadowFrame() {}
71
TDYa127ce4cc0d2012-11-18 16:59:53 -080072 bool HasReferenceArray() const {
73 return (number_of_vregs_ & kHasReferenceArray) != 0;
Ian Rogers0399dde2012-06-06 17:09:28 -070074 }
Elliott Hughes68e76522011-10-05 13:22:16 -070075
TDYa127ce4cc0d2012-11-18 16:59:53 -080076 uint32_t NumberOfVRegs() const {
77 return number_of_vregs_ & ~kHasReferenceArray;
Ian Rogers0399dde2012-06-06 17:09:28 -070078 }
79
TDYa127ce4cc0d2012-11-18 16:59:53 -080080 void SetNumberOfVRegs(uint32_t number_of_vregs) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080081 number_of_vregs_ = number_of_vregs | (number_of_vregs_ & kHasReferenceArray);
Ian Rogers5438ad82012-10-15 17:22:44 -070082 }
83
Ian Rogers0399dde2012-06-06 17:09:28 -070084 uint32_t GetDexPC() const {
85 return dex_pc_;
86 }
87
88 void SetDexPC(uint32_t dex_pc) {
89 dex_pc_ = dex_pc;
90 }
91
Ian Rogers0399dde2012-06-06 17:09:28 -070092 ShadowFrame* GetLink() const {
93 return link_;
94 }
95
96 void SetLink(ShadowFrame* frame) {
97 DCHECK_NE(this, frame);
98 link_ = frame;
99 }
100
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700101 int32_t GetVReg(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800102 DCHECK_LT(i, NumberOfVRegs());
103 const uint32_t* vreg = &vregs_[i];
104 return *reinterpret_cast<const int32_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700105 }
106
107 float GetVRegFloat(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800108 DCHECK_LT(i, NumberOfVRegs());
109 // NOTE: Strict-aliasing?
110 const uint32_t* vreg = &vregs_[i];
111 return *reinterpret_cast<const float*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700112 }
113
114 int64_t GetVRegLong(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800115 const uint32_t* vreg = &vregs_[i];
116 return *reinterpret_cast<const int64_t*>(vreg);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700117 }
118
119 double GetVRegDouble(size_t i) const {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800120 const uint32_t* vreg = &vregs_[i];
121 return *reinterpret_cast<const double*>(vreg);
122 }
123
124 Object* GetVRegReference(size_t i) const {
125 DCHECK_LT(i, NumberOfVRegs());
126 if (HasReferenceArray()) {
127 return References()[i];
128 } else {
129 const uint32_t* vreg = &vregs_[i];
130 return *reinterpret_cast<Object* const*>(vreg);
131 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700132 }
133
134 void SetVReg(size_t i, int32_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800135 DCHECK_LT(i, NumberOfVRegs());
136 uint32_t* vreg = &vregs_[i];
137 *reinterpret_cast<int32_t*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700138 }
139
140 void SetVRegFloat(size_t i, float val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800141 DCHECK_LT(i, NumberOfVRegs());
142 uint32_t* vreg = &vregs_[i];
143 *reinterpret_cast<float*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700144 }
145
146 void SetVRegLong(size_t i, int64_t val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800147 uint32_t* vreg = &vregs_[i];
148 *reinterpret_cast<int64_t*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700149 }
150
151 void SetVRegDouble(size_t i, double val) {
TDYa127ce4cc0d2012-11-18 16:59:53 -0800152 uint32_t* vreg = &vregs_[i];
153 *reinterpret_cast<double*>(vreg) = val;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700154 }
155
TDYa127ce4cc0d2012-11-18 16:59:53 -0800156 void SetVRegReference(size_t i, Object* val) {
157 DCHECK_LT(i, NumberOfVRegs());
158 uint32_t* vreg = &vregs_[i];
159 *reinterpret_cast<Object**>(vreg) = val;
160 if (HasReferenceArray()) {
161 References()[i] = val;
162 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700163 }
164
Mathieu Chartier66f19252012-09-18 08:57:04 -0700165 AbstractMethod* GetMethod() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700166 DCHECK_NE(method_, static_cast<void*>(NULL));
167 return method_;
Elliott Hughes68e76522011-10-05 13:22:16 -0700168 }
169
Mathieu Chartier66f19252012-09-18 08:57:04 -0700170 void SetMethod(AbstractMethod* method) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700171 DCHECK_NE(method, static_cast<void*>(NULL));
172 method_ = method;
Elliott Hughes68e76522011-10-05 13:22:16 -0700173 }
174
TDYa127ce4cc0d2012-11-18 16:59:53 -0800175 bool Contains(Object** shadow_frame_entry_obj) const {
176 if (HasReferenceArray()) {
177 return ((&References()[0] <= shadow_frame_entry_obj) &&
178 (shadow_frame_entry_obj <= (&References()[NumberOfVRegs() - 1])));
179 } else {
180 uint32_t* shadow_frame_entry = reinterpret_cast<uint32_t*>(shadow_frame_entry_obj);
181 return ((&vregs_[0] <= shadow_frame_entry) &&
182 (shadow_frame_entry <= (&vregs_[NumberOfVRegs() - 1])));
Ian Rogers0399dde2012-06-06 17:09:28 -0700183 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700184 }
185
Ian Rogers0399dde2012-06-06 17:09:28 -0700186 static size_t LinkOffset() {
187 return OFFSETOF_MEMBER(ShadowFrame, link_);
188 }
189
Ian Rogers0399dde2012-06-06 17:09:28 -0700190 static size_t MethodOffset() {
191 return OFFSETOF_MEMBER(ShadowFrame, method_);
192 }
193
Ian Rogers0399dde2012-06-06 17:09:28 -0700194 static size_t DexPCOffset() {
195 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_);
196 }
197
Ian Rogers5438ad82012-10-15 17:22:44 -0700198 static size_t NumberOfVRegsOffset() {
199 return OFFSETOF_MEMBER(ShadowFrame, number_of_vregs_);
200 }
201
TDYa127ce4cc0d2012-11-18 16:59:53 -0800202 static size_t VRegsOffset() {
203 return OFFSETOF_MEMBER(ShadowFrame, vregs_);
Ian Rogers5438ad82012-10-15 17:22:44 -0700204 }
205
Elliott Hughes68e76522011-10-05 13:22:16 -0700206 private:
TDYa127ce4cc0d2012-11-18 16:59:53 -0800207 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, AbstractMethod* method, uint32_t dex_pc,
208 bool has_reference_array)
209 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800210 CHECK_LT(num_vregs, static_cast<uint32_t>(kHasReferenceArray));
TDYa127ce4cc0d2012-11-18 16:59:53 -0800211 if (has_reference_array) {
212 number_of_vregs_ |= kHasReferenceArray;
213 for (size_t i = 0; i < num_vregs; ++i) {
214 SetVRegReference(i, NULL);
215 }
Mathieu Chartier67022432012-11-29 18:04:50 -0800216 } else {
217 for (size_t i = 0; i < num_vregs; ++i) {
218 SetVReg(i, 0);
219 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700220 }
221 }
Elliott Hughes68e76522011-10-05 13:22:16 -0700222
TDYa127ce4cc0d2012-11-18 16:59:53 -0800223 Object* const* References() const {
Mathieu Chartier67022432012-11-29 18:04:50 -0800224 DCHECK(HasReferenceArray());
TDYa127ce4cc0d2012-11-18 16:59:53 -0800225 const uint32_t* vreg_end = &vregs_[NumberOfVRegs()];
226 return reinterpret_cast<Object* const*>(vreg_end);
227 }
228
229 Object** References() {
230 return const_cast<Object**>(const_cast<const ShadowFrame*>(this)->References());
231 }
232
233 enum ShadowFrameFlag {
234 kHasReferenceArray = 1ul << 31
235 };
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700236 // TODO: make the majority of these fields const.
TDYa127ce4cc0d2012-11-18 16:59:53 -0800237 uint32_t number_of_vregs_;
Ian Rogers5438ad82012-10-15 17:22:44 -0700238 // Link to previous shadow frame or NULL.
Ian Rogers0399dde2012-06-06 17:09:28 -0700239 ShadowFrame* link_;
Mathieu Chartier66f19252012-09-18 08:57:04 -0700240 AbstractMethod* method_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700241 uint32_t dex_pc_;
TDYa127ce4cc0d2012-11-18 16:59:53 -0800242 uint32_t vregs_[0];
Elliott Hughes68e76522011-10-05 13:22:16 -0700243
Ian Rogers0399dde2012-06-06 17:09:28 -0700244 DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame);
Elliott Hughes68e76522011-10-05 13:22:16 -0700245};
246
Ian Rogers0399dde2012-06-06 17:09:28 -0700247// The managed stack is used to record fragments of managed code stacks. Managed code stacks
248// may either be shadow frames or lists of frames using fixed frame sizes. Transition records are
249// necessary for transitions between code using different frame layouts and transitions into native
250// code.
Ian Rogersdf1ce912012-11-27 17:07:11 -0800251class PACKED(4) ManagedStack {
Ian Rogers0399dde2012-06-06 17:09:28 -0700252 public:
Ian Rogersca190662012-06-26 15:45:57 -0700253 ManagedStack()
254 : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {}
Ian Rogers81d425b2012-09-27 16:03:43 -0700255
256 void PushManagedStackFragment(ManagedStack* fragment) {
257 // Copy this top fragment into given fragment.
258 memcpy(fragment, this, sizeof(ManagedStack));
259 // Clear this fragment, which has become the top.
260 memset(this, 0, sizeof(ManagedStack));
261 // Link our top fragment onto the given fragment.
262 link_ = fragment;
263 }
264
265 void PopManagedStackFragment(const ManagedStack& fragment) {
266 DCHECK(&fragment == link_);
267 // Copy this given fragment back to the top.
268 memcpy(this, &fragment, sizeof(ManagedStack));
269 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700270
271 ManagedStack* GetLink() const {
272 return link_;
273 }
274
Mathieu Chartier66f19252012-09-18 08:57:04 -0700275 AbstractMethod** GetTopQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700276 return top_quick_frame_;
277 }
278
Mathieu Chartier66f19252012-09-18 08:57:04 -0700279 void SetTopQuickFrame(AbstractMethod** top) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700280 top_quick_frame_ = top;
281 }
282
283 uintptr_t GetTopQuickFramePc() const {
284 return top_quick_frame_pc_;
285 }
286
287 void SetTopQuickFramePc(uintptr_t pc) {
288 top_quick_frame_pc_ = pc;
289 }
290
291 static size_t TopQuickFrameOffset() {
292 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_);
293 }
294
295 static size_t TopQuickFramePcOffset() {
296 return OFFSETOF_MEMBER(ManagedStack, top_quick_frame_pc_);
297 }
298
299 ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) {
300 ShadowFrame* old_frame = top_shadow_frame_;
301 top_shadow_frame_ = new_top_frame;
302 new_top_frame->SetLink(old_frame);
303 return old_frame;
304 }
305
306 ShadowFrame* PopShadowFrame() {
307 CHECK(top_shadow_frame_ != NULL);
308 ShadowFrame* frame = top_shadow_frame_;
309 top_shadow_frame_ = frame->GetLink();
310 return frame;
311 }
312
313 ShadowFrame* GetTopShadowFrame() const {
314 return top_shadow_frame_;
315 }
316
317 static size_t TopShadowFrameOffset() {
318 return OFFSETOF_MEMBER(ManagedStack, top_shadow_frame_);
319 }
320
TDYa127ce4cc0d2012-11-18 16:59:53 -0800321 size_t NumJniShadowFrameReferences() const;
Ian Rogers0399dde2012-06-06 17:09:28 -0700322
323 bool ShadowFramesContain(Object** shadow_frame_entry) const;
324
325 private:
326 ManagedStack* link_;
327 ShadowFrame* top_shadow_frame_;
Mathieu Chartier66f19252012-09-18 08:57:04 -0700328 AbstractMethod** top_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700329 uintptr_t top_quick_frame_pc_;
330};
331
332class StackVisitor {
333 protected:
Ian Rogers306057f2012-11-26 12:45:53 -0800334 StackVisitor(const ManagedStack* stack,
335 const std::deque<InstrumentationStackFrame>* instrumentation_stack,
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700336 Context* context)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao725a9572012-11-13 18:20:12 -0800338 : stack_start_(stack), instrumentation_stack_(instrumentation_stack), cur_shadow_frame_(NULL),
Ian Rogersca190662012-06-26 15:45:57 -0700339 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
340 context_(context) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700341
342 public:
343 virtual ~StackVisitor() {}
344
345 // Return 'true' if we should continue to visit more frames, 'false' to stop.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700346 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers0399dde2012-06-06 17:09:28 -0700347
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700348 void WalkStack(bool include_transitions = false)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700349 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700350
Mathieu Chartier66f19252012-09-18 08:57:04 -0700351 AbstractMethod* GetMethod() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700352 if (cur_shadow_frame_ != NULL) {
353 return cur_shadow_frame_->GetMethod();
354 } else if (cur_quick_frame_ != NULL) {
355 return *cur_quick_frame_;
356 } else {
357 return NULL;
358 }
359 }
360
361 bool IsShadowFrame() const {
362 return cur_shadow_frame_ != NULL;
363 }
364
Ian Rogers0c7abda2012-09-19 13:33:42 -0700365 uint32_t GetDexPc() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
366
367 size_t GetNativePcOffset() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
368
Mathieu Chartier67022432012-11-29 18:04:50 -0800369 uintptr_t* CalleeSaveAddress(int num, size_t frame_size) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700370 // Callee saves are held at the top of the frame
Mathieu Chartier67022432012-11-29 18:04:50 -0800371 DCHECK(GetMethod() != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700372 byte* save_addr =
373 reinterpret_cast<byte*>(cur_quick_frame_) + frame_size - ((num + 1) * kPointerSize);
374#if defined(__i386__)
375 save_addr -= kPointerSize; // account for return address
376#endif
Mathieu Chartier67022432012-11-29 18:04:50 -0800377 return reinterpret_cast<uintptr_t*>(save_addr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700378 }
379
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700380 // Returns the height of the stack in the managed stack frames, including transitions.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700381 size_t GetFrameHeight() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700382 return GetNumFrames() - cur_depth_;
383 }
384
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700385 // Returns a frame ID for JDWP use, starting from 1.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700386 size_t GetFrameId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700387 return GetFrameHeight() + 1;
388 }
389
Ian Rogersb726dcb2012-09-05 08:57:23 -0700390 size_t GetNumFrames() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700391 if (num_frames_ == 0) {
Ian Rogers306057f2012-11-26 12:45:53 -0800392 num_frames_ = ComputeNumFrames(stack_start_, instrumentation_stack_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700393 }
394 return num_frames_;
395 }
396
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800397 uint32_t GetVReg(AbstractMethod* m, uint16_t vreg, VRegKind kind) const
398 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700399
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800400 void SetVReg(AbstractMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700401 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700402
403 uintptr_t GetGPR(uint32_t reg) const;
Mathieu Chartier67022432012-11-29 18:04:50 -0800404 void SetGPR(uint32_t reg, uintptr_t value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700405
Mathieu Chartier66f19252012-09-18 08:57:04 -0700406 uint32_t GetVReg(AbstractMethod** cur_quick_frame, const DexFile::CodeItem* code_item,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800407 uint32_t core_spills, uint32_t fp_spills, size_t frame_size,
408 uint16_t vreg) const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700409 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
Ian Rogers0ec569a2012-07-01 16:43:46 -0700410 DCHECK_EQ(cur_quick_frame, GetCurrentQuickFrame());
411 byte* vreg_addr = reinterpret_cast<byte*>(cur_quick_frame) + offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700412 return *reinterpret_cast<uint32_t*>(vreg_addr);
413 }
414
415 uintptr_t GetReturnPc() const;
416
417 void SetReturnPc(uintptr_t new_ret_pc);
418
419 /*
420 * Return sp-relative offset for a Dalvik virtual register, compiler
421 * spill or Method* in bytes using Method*.
422 * Note that (reg >= 0) refers to a Dalvik register, (reg == -2)
423 * denotes Method* and (reg <= -3) denotes a compiler temp.
424 *
425 * +------------------------+
426 * | IN[ins-1] | {Note: resides in caller's frame}
427 * | . |
428 * | IN[0] |
429 * | caller's Method* |
430 * +========================+ {Note: start of callee's frame}
431 * | core callee-save spill | {variable sized}
432 * +------------------------+
433 * | fp callee-save spill |
434 * +------------------------+
435 * | filler word | {For compatibility, if V[locals-1] used as wide
436 * +------------------------+
437 * | V[locals-1] |
438 * | V[locals-2] |
439 * | . |
440 * | . | ... (reg == 2)
441 * | V[1] | ... (reg == 1)
442 * | V[0] | ... (reg == 0) <---- "locals_start"
443 * +------------------------+
444 * | Compiler temps | ... (reg == -2)
445 * | | ... (reg == -3)
446 * | | ... (reg == -4)
447 * +------------------------+
448 * | stack alignment padding| {0 to (kStackAlignWords-1) of padding}
449 * +------------------------+
450 * | OUT[outs-1] |
451 * | OUT[outs-2] |
452 * | . |
453 * | OUT[0] |
454 * | curMethod* | ... (reg == -1) <<== sp, 16-byte aligned
455 * +========================+
456 */
457 static int GetVRegOffset(const DexFile::CodeItem* code_item,
Ian Rogersb23a7722012-10-09 16:54:26 -0700458 uint32_t core_spills, uint32_t fp_spills,
459 size_t frame_size, int reg) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700460 DCHECK_EQ(frame_size & (kStackAlignment - 1), 0U);
461 int num_spills = __builtin_popcount(core_spills) + __builtin_popcount(fp_spills) + 1; // Filler.
462 int num_ins = code_item->ins_size_;
463 int num_regs = code_item->registers_size_ - num_ins;
464 int locals_start = frame_size - ((num_spills + num_regs) * sizeof(uint32_t));
465 if (reg == -2) {
466 return 0; // Method*
467 } else if (reg <= -3) {
468 return locals_start - ((reg + 1) * sizeof(uint32_t)); // Compiler temp.
469 } else if (reg < num_regs) {
470 return locals_start + (reg * sizeof(uint32_t)); // Dalvik local reg.
471 } else {
472 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + sizeof(uint32_t); // Dalvik in.
473 }
474 }
475
476 uintptr_t GetCurrentQuickFramePc() const {
477 return cur_quick_frame_pc_;
478 }
479
Mathieu Chartier66f19252012-09-18 08:57:04 -0700480 AbstractMethod** GetCurrentQuickFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700481 return cur_quick_frame_;
482 }
483
484 ShadowFrame* GetCurrentShadowFrame() const {
485 return cur_shadow_frame_;
486 }
487
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700488 StackIndirectReferenceTable* GetCurrentSirt() const {
Mathieu Chartier66f19252012-09-18 08:57:04 -0700489 AbstractMethod** sp = GetCurrentQuickFrame();
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700490 ++sp; // Skip Method*; SIRT comes next;
491 return reinterpret_cast<StackIndirectReferenceTable*>(sp);
492 }
493
Ian Rogers40e3bac2012-11-20 00:09:14 -0800494 std::string DescribeLocation() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
495
Ian Rogers306057f2012-11-26 12:45:53 -0800496 static size_t ComputeNumFrames(const ManagedStack* stack,
497 const std::deque<InstrumentationStackFrame>* instr_stack)
498 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
499
500 static void DescribeStack(const ManagedStack* stack,
501 const std::deque<InstrumentationStackFrame>* instr_stack)
502 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
503
Ian Rogers0399dde2012-06-06 17:09:28 -0700504 private:
Ian Rogers0399dde2012-06-06 17:09:28 -0700505
jeffhao725a9572012-11-13 18:20:12 -0800506 InstrumentationStackFrame GetInstrumentationStackFrame(uint32_t depth) const {
Ian Rogers306057f2012-11-26 12:45:53 -0800507 return instrumentation_stack_->at(depth);
Ian Rogers0399dde2012-06-06 17:09:28 -0700508 }
509
Ian Rogersb726dcb2012-09-05 08:57:23 -0700510 void SanityCheckFrame() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700511
512 const ManagedStack* const stack_start_;
Ian Rogers306057f2012-11-26 12:45:53 -0800513 const std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700514 ShadowFrame* cur_shadow_frame_;
Mathieu Chartier66f19252012-09-18 08:57:04 -0700515 AbstractMethod** cur_quick_frame_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700516 uintptr_t cur_quick_frame_pc_;
517 // Lazily computed, number of frames in the stack.
518 size_t num_frames_;
519 // Depth of the frame we're currently at.
520 size_t cur_depth_;
521 protected:
522 Context* const context_;
523};
524
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800525class VmapTable {
526 public:
527 explicit VmapTable(const uint16_t* table) : table_(table) {
528 }
529
530 uint16_t operator[](size_t i) const {
531 return table_[i + 1];
532 }
533
534 size_t size() const {
535 return table_[0];
536 }
537
538 // Is the dex register 'vreg' in the context or on the stack? Should not be called when the
539 // 'kind' is unknown or constant.
540 bool IsInContext(size_t vreg, uint32_t& vmap_offset, VRegKind kind) const {
541 DCHECK(kind == kReferenceVReg || kind == kIntVReg || kind == kFloatVReg ||
542 kind == kLongLoVReg || kind == kLongHiVReg || kind == kDoubleLoVReg ||
543 kind == kDoubleHiVReg || kind == kImpreciseConstant);
544 vmap_offset = 0xEBAD0FF5;
545 // TODO: take advantage of the registers being ordered
546 // TODO: we treat kImpreciseConstant as an integer below, need to ensure that such values
547 // are never promoted to floating point registers.
548 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
549 bool in_floats = false;
550 for (size_t i = 0; i < size(); ++i) {
551 // Stop if we find what we are are looking for.
552 if ((table_[i + 1] == vreg) && (in_floats == is_float)) {
553 vmap_offset = i;
554 return true;
555 }
556 // 0xffff is the marker for LR (return PC on x86), following it are spilled float registers.
557 if (table_[i + 1] == 0xffff) {
558 in_floats = true;
559 }
560 }
561 return false;
562 }
563
564 // Compute the register number that corresponds to the entry in the vmap (vmap_offset, computed
565 // by IsInContext above). If the kind is floating point then the result will be a floating point
566 // register number, otherwise it will be an integer register number.
567 uint32_t ComputeRegister(uint32_t spill_mask, uint32_t vmap_offset, VRegKind kind) const {
568 // Compute the register we need to load from the context.
569 DCHECK(kind == kReferenceVReg || kind == kIntVReg || kind == kFloatVReg ||
570 kind == kLongLoVReg || kind == kLongHiVReg || kind == kDoubleLoVReg ||
571 kind == kDoubleHiVReg || kind == kImpreciseConstant);
572 // TODO: we treat kImpreciseConstant as an integer below, need to ensure that such values
573 // are never promoted to floating point registers.
574 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
575 uint32_t matches = 0;
576 if (is_float) {
577 while (table_[matches] != 0xffff) {
578 matches++;
579 }
580 }
581 CHECK_LT(vmap_offset - matches, static_cast<uint32_t>(__builtin_popcount(spill_mask)));
582 uint32_t spill_shifts = 0;
583 while (matches != (vmap_offset + 1)) {
584 DCHECK_NE(spill_mask, 0u);
585 matches += spill_mask & 1; // Add 1 if the low bit is set
586 spill_mask >>= 1;
587 spill_shifts++;
588 }
589 spill_shifts--; // wind back one as we want the last match
590 return spill_shifts;
591 }
592 private:
593 const uint16_t* table_;
594};
595
Elliott Hughes68e76522011-10-05 13:22:16 -0700596} // namespace art
597
598#endif // ART_SRC_STACK_H_