blob: 4678ac6e50e30d3cb509b3fbe8447ca5e9031a14 [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#include "stack.h"
18
Ian Rogerse63db272014-07-15 15:36:11 -070019#include "arch/context.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Dave Allisonf9439142014-03-27 15:10:22 -070022#include "base/hex_dump.h"
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010023#include "entrypoints/entrypoint_utils-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070024#include "entrypoints/runtime_asm_entrypoints.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "gc/space/image_space.h"
26#include "gc/space/space-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010027#include "jit/jit.h"
28#include "jit/jit_code_cache.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "linear_alloc.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "mirror/object-inl.h"
32#include "mirror/object_array-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010033#include "oat_quick_method_header.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010034#include "quick/quick_method_frame_info.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070035#include "runtime.h"
Dave Allisonf9439142014-03-27 15:10:22 -070036#include "thread.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070037#include "thread_list.h"
Mathieu Chartier4e305412014-02-19 10:54:44 -080038#include "verify_object-inl.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070039
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080040namespace art {
41
Mathieu Chartier8405bfd2016-02-05 12:00:49 -080042static constexpr bool kDebugStackWalk = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -070043
Ian Rogers62d6c772013-02-27 08:32:07 -080044mirror::Object* ShadowFrame::GetThisObject() const {
Mathieu Chartiere401d142015-04-22 13:56:20 -070045 ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -080046 if (m->IsStatic()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070047 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -080048 } else if (m->IsNative()) {
49 return GetVRegReference(0);
50 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070051 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070052 CHECK(code_item != nullptr) << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -080053 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
54 return GetVRegReference(reg);
55 }
56}
57
Jeff Haoe701f482013-05-24 11:50:49 -070058mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
Mathieu Chartiere401d142015-04-22 13:56:20 -070059 ArtMethod* m = GetMethod();
Jeff Haoe701f482013-05-24 11:50:49 -070060 if (m->IsStatic()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070061 return nullptr;
Jeff Haoe701f482013-05-24 11:50:49 -070062 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070063 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070064 }
65}
66
TDYa127ce4cc0d2012-11-18 16:59:53 -080067size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070068 size_t count = 0;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070069 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070070 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070071 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070072 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080073 if (current_frame->GetMethod()->IsNative()) {
74 // The JNI ShadowFrame only contains references. (For indirect reference.)
75 count += current_frame->NumberOfVRegs();
76 }
Ian Rogers0399dde2012-06-06 17:09:28 -070077 }
78 }
79 return count;
80}
81
Ian Rogersef7d42f2014-01-06 12:55:46 -080082bool ManagedStack::ShadowFramesContain(StackReference<mirror::Object>* shadow_frame_entry) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070083 for (const ManagedStack* current_fragment = this; current_fragment != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070084 current_fragment = current_fragment->GetLink()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070085 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != nullptr;
Ian Rogers0399dde2012-06-06 17:09:28 -070086 current_frame = current_frame->GetLink()) {
87 if (current_frame->Contains(shadow_frame_entry)) {
88 return true;
89 }
90 }
91 }
92 return false;
93}
94
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010095StackVisitor::StackVisitor(Thread* thread, Context* context, StackWalkKind walk_kind)
96 : StackVisitor(thread, context, walk_kind, 0) {}
Ian Rogers7a22fa62013-01-23 12:16:16 -080097
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010098StackVisitor::StackVisitor(Thread* thread,
99 Context* context,
100 StackWalkKind walk_kind,
101 size_t num_frames)
102 : thread_(thread),
103 walk_kind_(walk_kind),
104 cur_shadow_frame_(nullptr),
105 cur_quick_frame_(nullptr),
106 cur_quick_frame_pc_(0),
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100107 cur_oat_quick_method_header_(nullptr),
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100108 num_frames_(num_frames),
109 cur_depth_(0),
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100110 current_inlining_depth_(0),
Ian Rogers5cf98192014-05-29 21:31:50 -0700111 context_(context) {
112 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
113}
114
Mathieu Chartiere401d142015-04-22 13:56:20 -0700115InlineInfo StackVisitor::GetCurrentInlineInfo() const {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100116 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
117 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_);
118 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000119 CodeInfoEncoding encoding = code_info.ExtractEncoding();
David Brazdilf677ebf2015-05-29 16:29:43 +0100120 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +0100121 DCHECK(stack_map.IsValid());
David Brazdilf677ebf2015-05-29 16:29:43 +0100122 return code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100123}
124
Mathieu Chartiere401d142015-04-22 13:56:20 -0700125ArtMethod* StackVisitor::GetMethod() const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100126 if (cur_shadow_frame_ != nullptr) {
127 return cur_shadow_frame_->GetMethod();
128 } else if (cur_quick_frame_ != nullptr) {
129 if (IsInInlinedFrame()) {
130 size_t depth_in_stack_map = current_inlining_depth_ - 1;
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100131 InlineInfo inline_info = GetCurrentInlineInfo();
David Srbecky61b28a12016-02-25 21:55:03 +0000132 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
133 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
Mathieu Chartier45bf2502016-03-31 11:07:09 -0700134 DCHECK(walk_kind_ != StackWalkKind::kSkipInlinedFrames);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100135 return GetResolvedMethod(*GetCurrentQuickFrame(),
136 inline_info,
137 encoding.inline_info_encoding,
138 depth_in_stack_map);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100139 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700140 return *cur_quick_frame_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100141 }
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100142 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700143 return nullptr;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100144}
145
Dave Allisonb373e092014-02-20 16:06:36 -0800146uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700147 if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700148 return cur_shadow_frame_->GetDexPC();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700149 } else if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100150 if (IsInInlinedFrame()) {
151 size_t depth_in_stack_map = current_inlining_depth_ - 1;
David Srbecky61b28a12016-02-25 21:55:03 +0000152 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
153 CodeInfoEncoding encoding = method_header->GetOptimizedCodeInfo().ExtractEncoding();
154 return GetCurrentInlineInfo().GetDexPcAtDepth(encoding.inline_info_encoding,
155 depth_in_stack_map);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100156 } else if (cur_oat_quick_method_header_ == nullptr) {
157 return DexFile::kDexNoIndex;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100158 } else {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100159 return cur_oat_quick_method_header_->ToDexPc(
160 GetMethod(), cur_quick_frame_pc_, abort_on_failure);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100161 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700162 } else {
163 return 0;
164 }
165}
166
Mathieu Chartiere401d142015-04-22 13:56:20 -0700167extern "C" mirror::Object* artQuickGetProxyThisObject(ArtMethod** sp)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700168 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertza836bc92014-11-25 16:30:53 +0100169
Ian Rogers62d6c772013-02-27 08:32:07 -0800170mirror::Object* StackVisitor::GetThisObject() const {
Andreas Gampe542451c2016-07-26 09:02:02 -0700171 DCHECK_EQ(Runtime::Current()->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700172 ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 if (m->IsStatic()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100174 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800175 } else if (m->IsNative()) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100176 if (cur_quick_frame_ != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700177 HandleScope* hs = reinterpret_cast<HandleScope*>(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100178 reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700179 return hs->GetReference(0);
Ian Rogers62d6c772013-02-27 08:32:07 -0800180 } else {
181 return cur_shadow_frame_->GetVRegReference(0);
182 }
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000183 } else if (m->IsProxyMethod()) {
Sebastien Hertza836bc92014-11-25 16:30:53 +0100184 if (cur_quick_frame_ != nullptr) {
185 return artQuickGetProxyThisObject(cur_quick_frame_);
186 } else {
187 return cur_shadow_frame_->GetVRegReference(0);
188 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800189 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700190 const DexFile::CodeItem* code_item = m->GetCodeItem();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100191 if (code_item == nullptr) {
Ian Rogerse0dcd462014-03-08 15:21:04 -0800192 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
Ian Rogers62d6c772013-02-27 08:32:07 -0800193 << PrettyMethod(m);
Ian Rogerse0dcd462014-03-08 15:21:04 -0800194 return nullptr;
Ian Rogers62d6c772013-02-27 08:32:07 -0800195 } else {
196 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000197 uint32_t value = 0;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700198 bool success = GetVReg(m, reg, kReferenceVReg, &value);
Nicolas Geoffray15b9d522015-03-12 15:05:13 +0000199 // We currently always guarantee the `this` object is live throughout the method.
200 CHECK(success) << "Failed to read the this object in " << PrettyMethod(m);
201 return reinterpret_cast<mirror::Object*>(value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800202 }
203 }
204}
205
Ian Rogers0c7abda2012-09-19 13:33:42 -0700206size_t StackVisitor::GetNativePcOffset() const {
207 DCHECK(!IsShadowFrame());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100208 return GetCurrentOatQuickMethodHeader()->NativeQuickPcOffset(cur_quick_frame_pc_);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700209}
210
Mingyao Yang99170c62015-07-06 11:10:37 -0700211bool StackVisitor::GetVRegFromDebuggerShadowFrame(uint16_t vreg,
212 VRegKind kind,
213 uint32_t* val) const {
214 size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId();
215 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id);
216 if (shadow_frame != nullptr) {
217 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id);
218 DCHECK(updated_vreg_flags != nullptr);
219 if (updated_vreg_flags[vreg]) {
220 // Value is set by the debugger.
221 if (kind == kReferenceVReg) {
222 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
223 shadow_frame->GetVRegReference(vreg)));
224 } else {
225 *val = shadow_frame->GetVReg(vreg);
226 }
227 return true;
228 }
229 }
230 // No value is set by the debugger.
231 return false;
232}
233
Mathieu Chartiere401d142015-04-22 13:56:20 -0700234bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200235 if (cur_quick_frame_ != nullptr) {
236 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800237 DCHECK(m == GetMethod());
Mingyao Yang99170c62015-07-06 11:10:37 -0700238 // Check if there is value set by the debugger.
239 if (GetVRegFromDebuggerShadowFrame(vreg, kind, val)) {
240 return true;
241 }
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100242 DCHECK(cur_oat_quick_method_header_->IsOptimized());
243 return GetVRegFromOptimizedCode(m, vreg, kind, val);
Ian Rogers0399dde2012-06-06 17:09:28 -0700244 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100245 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertz09687442015-11-17 10:35:39 +0100246 if (kind == kReferenceVReg) {
247 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
248 cur_shadow_frame_->GetVRegReference(vreg)));
249 } else {
250 *val = cur_shadow_frame_->GetVReg(vreg);
251 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200252 return true;
Ian Rogers0399dde2012-06-06 17:09:28 -0700253 }
254}
255
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256bool StackVisitor::GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100257 uint32_t* val) const {
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100258 DCHECK_EQ(m, GetMethod());
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100259 const DexFile::CodeItem* code_item = m->GetCodeItem();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700260 DCHECK(code_item != nullptr) << PrettyMethod(m); // Can't be null or how would we compile
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100261 // its instructions?
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000262 uint16_t number_of_dex_registers = code_item->registers_size_;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100263 DCHECK_LT(vreg, code_item->registers_size_);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100264 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
265 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000266 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100267
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100268 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100269 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
Nicolas Geoffraye12997f2015-05-22 14:01:33 +0100270 DCHECK(stack_map.IsValid());
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100271 size_t depth_in_stack_map = current_inlining_depth_ - 1;
272
273 DexRegisterMap dex_register_map = IsInInlinedFrame()
David Brazdilf677ebf2015-05-29 16:29:43 +0100274 ? code_info.GetDexRegisterMapAtDepth(depth_in_stack_map,
275 code_info.GetInlineInfoOf(stack_map, encoding),
276 encoding,
277 number_of_dex_registers)
278 : code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_dex_registers);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100279
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000280 if (!dex_register_map.IsValid()) {
281 return false;
282 }
Nicolas Geoffrayfead4e42015-03-13 14:39:40 +0000283 DexRegisterLocation::Kind location_kind =
David Brazdilf677ebf2015-05-29 16:29:43 +0100284 dex_register_map.GetLocationKind(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100285 switch (location_kind) {
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000286 case DexRegisterLocation::Kind::kInStack: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100287 const int32_t offset = dex_register_map.GetStackOffsetInBytes(vreg,
288 number_of_dex_registers,
289 code_info,
290 encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100291 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset;
292 *val = *reinterpret_cast<const uint32_t*>(addr);
293 return true;
294 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000295 case DexRegisterLocation::Kind::kInRegister:
David Brazdild9cb68e2015-08-25 13:52:43 +0100296 case DexRegisterLocation::Kind::kInRegisterHigh:
297 case DexRegisterLocation::Kind::kInFpuRegister:
298 case DexRegisterLocation::Kind::kInFpuRegisterHigh: {
David Brazdilf677ebf2015-05-29 16:29:43 +0100299 uint32_t reg =
300 dex_register_map.GetMachineRegister(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100301 return GetRegisterIfAccessible(reg, kind, val);
302 }
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000303 case DexRegisterLocation::Kind::kConstant:
David Brazdilf677ebf2015-05-29 16:29:43 +0100304 *val = dex_register_map.GetConstant(vreg, number_of_dex_registers, code_info, encoding);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100305 return true;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000306 case DexRegisterLocation::Kind::kNone:
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100307 return false;
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000308 default:
309 LOG(FATAL)
David Srbecky7dc11782016-02-25 13:23:56 +0000310 << "Unexpected location kind "
311 << dex_register_map.GetLocationInternalKind(vreg,
312 number_of_dex_registers,
313 code_info,
314 encoding);
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000315 UNREACHABLE();
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100316 }
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100317}
318
319bool StackVisitor::GetRegisterIfAccessible(uint32_t reg, VRegKind kind, uint32_t* val) const {
320 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
David Brazdil77a48ae2015-09-15 12:34:04 +0000321
Vladimir Marko239d6ea2016-09-05 10:44:04 +0100322 if (kRuntimeISA == InstructionSet::kX86 && is_float) {
323 // X86 float registers are 64-bit and each XMM register is provided as two separate
324 // 32-bit registers by the context.
325 reg = (kind == kDoubleHiVReg) ? (2 * reg + 1) : (2 * reg);
326 }
David Brazdil77a48ae2015-09-15 12:34:04 +0000327
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100328 if (!IsAccessibleRegister(reg, is_float)) {
329 return false;
330 }
331 uintptr_t ptr_val = GetRegister(reg, is_float);
332 const bool target64 = Is64BitInstructionSet(kRuntimeISA);
333 if (target64) {
334 const bool wide_lo = (kind == kLongLoVReg) || (kind == kDoubleLoVReg);
335 const bool wide_hi = (kind == kLongHiVReg) || (kind == kDoubleHiVReg);
336 int64_t value_long = static_cast<int64_t>(ptr_val);
337 if (wide_lo) {
338 ptr_val = static_cast<uintptr_t>(Low32Bits(value_long));
339 } else if (wide_hi) {
340 ptr_val = static_cast<uintptr_t>(High32Bits(value_long));
341 }
342 }
343 *val = ptr_val;
344 return true;
345}
346
Mingyao Yang99170c62015-07-06 11:10:37 -0700347bool StackVisitor::GetVRegPairFromDebuggerShadowFrame(uint16_t vreg,
348 VRegKind kind_lo,
349 VRegKind kind_hi,
350 uint64_t* val) const {
351 uint32_t low_32bits;
352 uint32_t high_32bits;
353 bool success = GetVRegFromDebuggerShadowFrame(vreg, kind_lo, &low_32bits);
354 success &= GetVRegFromDebuggerShadowFrame(vreg + 1, kind_hi, &high_32bits);
355 if (success) {
356 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
357 }
358 return success;
359}
360
Mathieu Chartiere401d142015-04-22 13:56:20 -0700361bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200362 VRegKind kind_hi, uint64_t* val) const {
363 if (kind_lo == kLongLoVReg) {
364 DCHECK_EQ(kind_hi, kLongHiVReg);
365 } else if (kind_lo == kDoubleLoVReg) {
366 DCHECK_EQ(kind_hi, kDoubleHiVReg);
367 } else {
368 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100369 UNREACHABLE();
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200370 }
Mingyao Yang99170c62015-07-06 11:10:37 -0700371 // Check if there is value set by the debugger.
372 if (GetVRegPairFromDebuggerShadowFrame(vreg, kind_lo, kind_hi, val)) {
373 return true;
374 }
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200375 if (cur_quick_frame_ != nullptr) {
376 DCHECK(context_ != nullptr); // You can't reliably read registers without a context.
377 DCHECK(m == GetMethod());
Vladimir Marko9d07e3d2016-03-31 12:02:28 +0100378 DCHECK(cur_oat_quick_method_header_->IsOptimized());
379 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200380 } else {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100381 DCHECK(cur_shadow_frame_ != nullptr);
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200382 *val = cur_shadow_frame_->GetVRegLong(vreg);
383 return true;
384 }
385}
386
Mathieu Chartiere401d142015-04-22 13:56:20 -0700387bool StackVisitor::GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg,
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100388 VRegKind kind_lo, VRegKind kind_hi,
389 uint64_t* val) const {
390 uint32_t low_32bits;
391 uint32_t high_32bits;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700392 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits);
393 success &= GetVRegFromOptimizedCode(m, vreg + 1, kind_hi, &high_32bits);
Sebastien Hertz7cde48c2015-01-20 16:06:43 +0100394 if (success) {
395 *val = (static_cast<uint64_t>(high_32bits) << 32) | static_cast<uint64_t>(low_32bits);
396 }
397 return success;
398}
399
400bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi,
401 VRegKind kind_lo, uint64_t* val) const {
402 const bool is_float = (kind_lo == kDoubleLoVReg);
403 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
404 return false;
405 }
406 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
407 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
408 bool target64 = Is64BitInstructionSet(kRuntimeISA);
409 if (target64) {
410 int64_t value_long_lo = static_cast<int64_t>(ptr_val_lo);
411 int64_t value_long_hi = static_cast<int64_t>(ptr_val_hi);
412 ptr_val_lo = static_cast<uintptr_t>(Low32Bits(value_long_lo));
413 ptr_val_hi = static_cast<uintptr_t>(High32Bits(value_long_hi));
414 }
415 *val = (static_cast<uint64_t>(ptr_val_hi) << 32) | static_cast<uint32_t>(ptr_val_lo);
416 return true;
417}
418
Mingyao Yang636b9252015-07-31 16:40:24 -0700419bool StackVisitor::SetVReg(ArtMethod* m,
420 uint16_t vreg,
421 uint32_t new_value,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800422 VRegKind kind) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700423 const DexFile::CodeItem* code_item = m->GetCodeItem();
424 if (code_item == nullptr) {
425 return false;
426 }
427 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
428 if (shadow_frame == nullptr) {
429 // This is a compiled frame: we must prepare and update a shadow frame that will
430 // be executed by the interpreter after deoptimization of the stack.
431 const size_t frame_id = GetFrameId();
432 const uint16_t num_regs = code_item->registers_size_;
433 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
434 CHECK(shadow_frame != nullptr);
435 // Remember the vreg has been set for debugging and must not be overwritten by the
436 // original value during deoptimization of the stack.
437 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
438 }
439 if (kind == kReferenceVReg) {
440 shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value));
441 } else {
442 shadow_frame->SetVReg(vreg, new_value);
443 }
444 return true;
445}
446
Mingyao Yang636b9252015-07-31 16:40:24 -0700447bool StackVisitor::SetVRegPair(ArtMethod* m,
448 uint16_t vreg,
449 uint64_t new_value,
450 VRegKind kind_lo,
451 VRegKind kind_hi) {
Mingyao Yang99170c62015-07-06 11:10:37 -0700452 if (kind_lo == kLongLoVReg) {
453 DCHECK_EQ(kind_hi, kLongHiVReg);
454 } else if (kind_lo == kDoubleLoVReg) {
455 DCHECK_EQ(kind_hi, kDoubleHiVReg);
456 } else {
457 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi;
458 UNREACHABLE();
459 }
460 const DexFile::CodeItem* code_item = m->GetCodeItem();
461 if (code_item == nullptr) {
462 return false;
463 }
464 ShadowFrame* shadow_frame = GetCurrentShadowFrame();
465 if (shadow_frame == nullptr) {
466 // This is a compiled frame: we must prepare for deoptimization (see SetVRegFromDebugger).
467 const size_t frame_id = GetFrameId();
468 const uint16_t num_regs = code_item->registers_size_;
469 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
470 CHECK(shadow_frame != nullptr);
471 // Remember the vreg pair has been set for debugging and must not be overwritten by the
472 // original value during deoptimization of the stack.
473 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true;
474 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true;
475 }
476 shadow_frame->SetVRegLong(vreg, new_value);
477 return true;
478}
479
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100480bool StackVisitor::IsAccessibleGPR(uint32_t reg) const {
481 DCHECK(context_ != nullptr);
482 return context_->IsAccessibleGPR(reg);
483}
484
Mathieu Chartier815873e2014-02-13 18:02:13 -0800485uintptr_t* StackVisitor::GetGPRAddress(uint32_t reg) const {
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100486 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
487 DCHECK(context_ != nullptr);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800488 return context_->GetGPRAddress(reg);
489}
490
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100491uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
492 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
493 DCHECK(context_ != nullptr);
494 return context_->GetGPR(reg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700495}
496
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100497bool StackVisitor::IsAccessibleFPR(uint32_t reg) const {
498 DCHECK(context_ != nullptr);
499 return context_->IsAccessibleFPR(reg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +0200500}
501
Sebastien Hertz96ba8dc2015-01-22 18:57:14 +0100502uintptr_t StackVisitor::GetFPR(uint32_t reg) const {
503 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine";
504 DCHECK(context_ != nullptr);
505 return context_->GetFPR(reg);
506}
507
Ian Rogers0399dde2012-06-06 17:09:28 -0700508uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers13735952014-10-08 12:43:28 -0700509 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700510 DCHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100511 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700512 return *reinterpret_cast<uintptr_t*>(pc_addr);
513}
514
515void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers13735952014-10-08 12:43:28 -0700516 uint8_t* sp = reinterpret_cast<uint8_t*>(GetCurrentQuickFrame());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700517 CHECK(sp != nullptr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100518 uint8_t* pc_addr = sp + GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogers0399dde2012-06-06 17:09:28 -0700519 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
520}
521
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100522size_t StackVisitor::ComputeNumFrames(Thread* thread, StackWalkKind walk_kind) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700523 struct NumFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100524 NumFramesVisitor(Thread* thread_in, StackWalkKind walk_kind_in)
525 : StackVisitor(thread_in, nullptr, walk_kind_in), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700526
Ian Rogers5cf98192014-05-29 21:31:50 -0700527 bool VisitFrame() OVERRIDE {
Ian Rogers0399dde2012-06-06 17:09:28 -0700528 frames++;
529 return true;
530 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700531
Ian Rogers0399dde2012-06-06 17:09:28 -0700532 size_t frames;
533 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100534 NumFramesVisitor visitor(thread, walk_kind);
Ian Rogers0399dde2012-06-06 17:09:28 -0700535 visitor.WalkStack(true);
536 return visitor.frames;
537}
538
Mathieu Chartiere401d142015-04-22 13:56:20 -0700539bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700540 struct HasMoreFramesVisitor : public StackVisitor {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100541 HasMoreFramesVisitor(Thread* thread,
542 StackWalkKind walk_kind,
543 size_t num_frames,
544 size_t frame_height)
545 : StackVisitor(thread, nullptr, walk_kind, num_frames),
546 frame_height_(frame_height),
547 found_frame_(false),
548 has_more_frames_(false),
549 next_method_(nullptr),
550 next_dex_pc_(0) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700551 }
552
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700553 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700554 if (found_frame_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700555 ArtMethod* method = GetMethod();
Ian Rogers5cf98192014-05-29 21:31:50 -0700556 if (method != nullptr && !method->IsRuntimeMethod()) {
557 has_more_frames_ = true;
558 next_method_ = method;
559 next_dex_pc_ = GetDexPc();
560 return false; // End stack walk once next method is found.
561 }
562 } else if (GetFrameHeight() == frame_height_) {
563 found_frame_ = true;
564 }
565 return true;
566 }
567
568 size_t frame_height_;
569 bool found_frame_;
570 bool has_more_frames_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700571 ArtMethod* next_method_;
Ian Rogers5cf98192014-05-29 21:31:50 -0700572 uint32_t next_dex_pc_;
573 };
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100574 HasMoreFramesVisitor visitor(thread_, walk_kind_, GetNumFrames(), GetFrameHeight());
Ian Rogers5cf98192014-05-29 21:31:50 -0700575 visitor.WalkStack(true);
576 *next_method = visitor.next_method_;
577 *next_dex_pc = visitor.next_dex_pc_;
578 return visitor.has_more_frames_;
579}
580
Ian Rogers7a22fa62013-01-23 12:16:16 -0800581void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800582 struct DescribeStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800583 explicit DescribeStackVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100584 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800585
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700586 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers306057f2012-11-26 12:45:53 -0800587 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
588 return true;
589 }
590 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800591 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800592 visitor.WalkStack(true);
593}
594
Ian Rogers40e3bac2012-11-20 00:09:14 -0800595std::string StackVisitor::DescribeLocation() const {
596 std::string result("Visiting method '");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700597 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700598 if (m == nullptr) {
Ian Rogers306057f2012-11-26 12:45:53 -0800599 return "upcall";
600 }
601 result += PrettyMethod(m);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800602 result += StringPrintf("' at dex PC 0x%04x", GetDexPc());
Ian Rogers40e3bac2012-11-20 00:09:14 -0800603 if (!IsShadowFrame()) {
604 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
605 }
606 return result;
607}
608
Ian Rogerse63db272014-07-15 15:36:11 -0700609static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread,
610 uint32_t depth) {
611 CHECK_LT(depth, thread->GetInstrumentationStack()->size());
612 return thread->GetInstrumentationStack()->at(depth);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800613}
614
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100615static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700616 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100617 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) {
618 return;
619 }
620
621 if (pc == reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())) {
622 return;
623 }
624
625 const void* code = method->GetEntryPointFromQuickCompiledCode();
626 if (code == GetQuickInstrumentationEntryPoint()) {
627 return;
628 }
629
630 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
631 if (class_linker->IsQuickToInterpreterBridge(code) ||
632 class_linker->IsQuickResolutionStub(code)) {
633 return;
634 }
635
636 // If we are the JIT then we may have just compiled the method after the
637 // IsQuickToInterpreterBridge check.
Calin Juravleffc87072016-04-20 14:22:09 +0100638 Runtime* runtime = Runtime::Current();
639 if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100640 return;
641 }
642
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100643 uint32_t code_size = OatQuickMethodHeader::FromEntryPoint(code)->code_size_;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100644 uintptr_t code_start = reinterpret_cast<uintptr_t>(code);
645 CHECK(code_start <= pc && pc <= (code_start + code_size))
646 << PrettyMethod(method)
647 << " pc=" << std::hex << pc
Roland Levillain0d5a2812015-11-13 10:07:31 +0000648 << " code_start=" << code_start
649 << " code_size=" << code_size;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100650}
651
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700652void StackVisitor::SanityCheckFrame() const {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800653 if (kIsDebugBuild) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700654 ArtMethod* method = GetMethod();
655 auto* declaring_class = method->GetDeclaringClass();
656 // Runtime methods have null declaring class.
657 if (!method->IsRuntimeMethod()) {
658 CHECK(declaring_class != nullptr);
659 CHECK_EQ(declaring_class->GetClass(), declaring_class->GetClass()->GetClass())
660 << declaring_class;
661 } else {
662 CHECK(declaring_class == nullptr);
663 }
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700664 Runtime* const runtime = Runtime::Current();
665 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc();
666 if (!linear_alloc->Contains(method)) {
667 // Check class linker linear allocs.
668 mirror::Class* klass = method->GetDeclaringClass();
669 LinearAlloc* const class_linear_alloc = (klass != nullptr)
Mathieu Chartier5b830502016-03-02 10:30:23 -0800670 ? runtime->GetClassLinker()->GetAllocatorForClassLoader(klass->GetClassLoader())
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700671 : linear_alloc;
672 if (!class_linear_alloc->Contains(method)) {
673 // Check image space.
674 bool in_image = false;
675 for (auto& space : runtime->GetHeap()->GetContinuousSpaces()) {
676 if (space->IsImageSpace()) {
677 auto* image_space = space->AsImageSpace();
678 const auto& header = image_space->GetImageHeader();
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700679 const ImageSection& methods = header.GetMethodsSection();
680 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection();
681 const size_t offset = reinterpret_cast<const uint8_t*>(method) - image_space->Begin();
682 if (methods.Contains(offset) || runtime_methods.Contains(offset)) {
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700683 in_image = true;
684 break;
685 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700686 }
687 }
Mathieu Chartier951ec2c2015-09-22 08:50:05 -0700688 CHECK(in_image) << PrettyMethod(method) << " not in linear alloc or image";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700689 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700690 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800691 if (cur_quick_frame_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100692 AssertPcIsWithinQuickCode(method, cur_quick_frame_pc_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800693 // Frame sanity.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100694 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800695 CHECK_NE(frame_size, 0u);
Andreas Gampe5b417b92014-03-10 14:18:35 -0700696 // A rough guess at an upper size we expect to see for a frame.
697 // 256 registers
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700698 // 2 words HandleScope overhead
Andreas Gampe5b417b92014-03-10 14:18:35 -0700699 // 3+3 register spills
700 // TODO: this seems architecture specific for the case of JNI frames.
Brian Carlstromed08bd42014-03-19 18:34:17 -0700701 // TODO: 083-compiler-regressions ManyFloatArgs shows this estimate is wrong.
702 // const size_t kMaxExpectedFrameSize = (256 + 2 + 3 + 3) * sizeof(word);
703 const size_t kMaxExpectedFrameSize = 2 * KB;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100704 CHECK_LE(frame_size, kMaxExpectedFrameSize) << PrettyMethod(method);
705 size_t return_pc_offset = GetCurrentQuickFrameInfo().GetReturnPcOffset();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800706 CHECK_LT(return_pc_offset, frame_size);
707 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700708 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700709}
710
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100711// Counts the number of references in the parameter list of the corresponding method.
712// Note: Thus does _not_ include "this" for non-static methods.
713static uint32_t GetNumberOfReferenceArgsWithoutReceiver(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700714 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100715 uint32_t shorty_len;
716 const char* shorty = method->GetShorty(&shorty_len);
717 uint32_t refs = 0;
718 for (uint32_t i = 1; i < shorty_len ; ++i) {
719 if (shorty[i] == 'L') {
720 refs++;
721 }
722 }
723 return refs;
724}
725
726QuickMethodFrameInfo StackVisitor::GetCurrentQuickFrameInfo() const {
727 if (cur_oat_quick_method_header_ != nullptr) {
728 return cur_oat_quick_method_header_->GetFrameInfo();
729 }
730
731 ArtMethod* method = GetMethod();
732 Runtime* runtime = Runtime::Current();
733
734 if (method->IsAbstract()) {
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100735 return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100736 }
737
738 // This goes before IsProxyMethod since runtime methods have a null declaring class.
739 if (method->IsRuntimeMethod()) {
740 return runtime->GetRuntimeMethodFrameInfo(method);
741 }
742
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100743 if (method->IsProxyMethod()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000744 // There is only one direct method of a proxy class: the constructor. A direct method is
745 // cloned from the original java.lang.reflect.Proxy and is executed as usual quick
746 // compiled method without any stubs. Therefore the method must have a OatQuickMethodHeader.
747 DCHECK(!method->IsDirect() && !method->IsConstructor())
748 << "Constructors of proxy classes must have a OatQuickMethodHeader";
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100749 return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100750 }
751
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000752 // The only remaining case is if the method is native and uses the generic JNI stub.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100753 DCHECK(method->IsNative());
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000754 ClassLinker* class_linker = runtime->GetClassLinker();
Andreas Gampe542451c2016-07-26 09:02:02 -0700755 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(method,
756 kRuntimePointerSize);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100757 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << PrettyMethod(method);
758 // Generic JNI frame.
759 uint32_t handle_refs = GetNumberOfReferenceArgsWithoutReceiver(method) + 1;
760 size_t scope_size = HandleScope::SizeOf(handle_refs);
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100761 QuickMethodFrameInfo callee_info =
762 runtime->GetCalleeSaveMethodFrameInfo(Runtime::kSaveRefsAndArgs);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100763
764 // Callee saves + handle scope + method ref + alignment
765 // Note: -sizeof(void*) since callee-save frame stores a whole method pointer.
766 size_t frame_size = RoundUp(
767 callee_info.FrameSizeInBytes() - sizeof(void*) + sizeof(ArtMethod*) + scope_size,
768 kStackAlignment);
769 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());
770}
771
Ian Rogers0399dde2012-06-06 17:09:28 -0700772void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800773 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800774 CHECK_EQ(cur_depth_, 0U);
775 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800776 uint32_t instrumentation_stack_depth = 0;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000777 size_t inlined_frames_count = 0;
Dave Allisonf9439142014-03-27 15:10:22 -0700778
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700779 for (const ManagedStack* current_fragment = thread_->GetManagedStack();
780 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700781 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
782 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700783 cur_quick_frame_pc_ = 0;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100784 cur_oat_quick_method_header_ = nullptr;
Dave Allisonf9439142014-03-27 15:10:22 -0700785
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700786 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames.
Ian Rogers0399dde2012-06-06 17:09:28 -0700787 // Can't be both a shadow and a quick fragment.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700788 DCHECK(current_fragment->GetTopShadowFrame() == nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700789 ArtMethod* method = *cur_quick_frame_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700790 while (method != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100791 cur_oat_quick_method_header_ = method->GetOatQuickMethodHeader(cur_quick_frame_pc_);
Dave Allison5cd33752014-04-15 15:57:58 -0700792 SanityCheckFrame();
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100793
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100794 if ((walk_kind_ == StackWalkKind::kIncludeInlinedFrames)
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100795 && (cur_oat_quick_method_header_ != nullptr)
796 && cur_oat_quick_method_header_->IsOptimized()) {
797 CodeInfo code_info = cur_oat_quick_method_header_->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000798 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100799 uint32_t native_pc_offset =
800 cur_oat_quick_method_header_->NativeQuickPcOffset(cur_quick_frame_pc_);
David Brazdilf677ebf2015-05-29 16:29:43 +0100801 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
David Srbecky09ed0982016-02-12 21:58:43 +0000802 if (stack_map.IsValid() && stack_map.HasInlineInfo(encoding.stack_map_encoding)) {
David Brazdilf677ebf2015-05-29 16:29:43 +0100803 InlineInfo inline_info = code_info.GetInlineInfoOf(stack_map, encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100804 DCHECK_EQ(current_inlining_depth_, 0u);
David Srbecky61b28a12016-02-25 21:55:03 +0000805 for (current_inlining_depth_ = inline_info.GetDepth(encoding.inline_info_encoding);
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100806 current_inlining_depth_ != 0;
807 --current_inlining_depth_) {
808 bool should_continue = VisitFrame();
809 if (UNLIKELY(!should_continue)) {
810 return;
811 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100812 cur_depth_++;
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000813 inlined_frames_count++;
Nicolas Geoffray57f61612015-05-15 13:20:41 +0100814 }
815 }
816 }
817
Dave Allison5cd33752014-04-15 15:57:58 -0700818 bool should_continue = VisitFrame();
819 if (UNLIKELY(!should_continue)) {
820 return;
Ian Rogers0399dde2012-06-06 17:09:28 -0700821 }
Dave Allison5cd33752014-04-15 15:57:58 -0700822
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100823 QuickMethodFrameInfo frame_info = GetCurrentQuickFrameInfo();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700824 if (context_ != nullptr) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100825 context_->FillCalleeSaves(reinterpret_cast<uint8_t*>(cur_quick_frame_), frame_info);
Ian Rogers0399dde2012-06-06 17:09:28 -0700826 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700827 // Compute PC for next stack frame from return PC.
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100828 size_t frame_size = frame_info.FrameSizeInBytes();
829 size_t return_pc_offset = frame_size - sizeof(void*);
Ian Rogers13735952014-10-08 12:43:28 -0700830 uint8_t* return_pc_addr = reinterpret_cast<uint8_t*>(cur_quick_frame_) + return_pc_offset;
Ian Rogers0399dde2012-06-06 17:09:28 -0700831 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100832
Ian Rogers62d6c772013-02-27 08:32:07 -0800833 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700834 // While profiling, the return pc is restored from the side stack, except when walking
835 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700836 if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) {
Sebastien Hertz74e256b2013-10-04 10:40:37 +0200837 const instrumentation::InstrumentationStackFrame& instrumentation_frame =
Ian Rogerse63db272014-07-15 15:36:11 -0700838 GetInstrumentationStackFrame(thread_, instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800839 instrumentation_stack_depth++;
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100840 if (GetMethod() ==
841 Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAllCalleeSaves)) {
Jeff Haofb2802d2013-07-24 13:53:05 -0700842 // Skip runtime save all callee frames which are used to deliver exceptions.
843 } else if (instrumentation_frame.interpreter_entry_) {
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100844 ArtMethod* callee =
845 Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700846 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100847 << PrettyMethod(GetMethod());
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000848 } else {
849 CHECK_EQ(instrumentation_frame.method_, GetMethod())
850 << "Expected: " << PrettyMethod(instrumentation_frame.method_)
851 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800852 }
853 if (num_frames_ != 0) {
854 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
855 // recursion.
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000856 size_t frame_id = instrumentation::Instrumentation::ComputeFrameId(
857 thread_,
858 cur_depth_,
859 inlined_frames_count);
860 CHECK_EQ(instrumentation_frame.frame_id_, frame_id);
Ian Rogers62d6c772013-02-27 08:32:07 -0800861 }
jeffhao725a9572012-11-13 18:20:12 -0800862 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700863 }
864 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100865
Ian Rogers0399dde2012-06-06 17:09:28 -0700866 cur_quick_frame_pc_ = return_pc;
Ian Rogers13735952014-10-08 12:43:28 -0700867 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700868 cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame);
869
870 if (kDebugStackWalk) {
871 LOG(INFO) << PrettyMethod(method) << "@" << method << " size=" << frame_size
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100872 << std::boolalpha
873 << " optimized=" << (cur_oat_quick_method_header_ != nullptr &&
874 cur_oat_quick_method_header_->IsOptimized())
Mathieu Chartiere401d142015-04-22 13:56:20 -0700875 << " native=" << method->IsNative()
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100876 << std::noboolalpha
Mathieu Chartiere401d142015-04-22 13:56:20 -0700877 << " entrypoints=" << method->GetEntryPointFromQuickCompiledCode()
878 << "," << method->GetEntryPointFromJni()
Mathieu Chartiere401d142015-04-22 13:56:20 -0700879 << " next=" << *cur_quick_frame_;
880 }
881
Ian Rogers0399dde2012-06-06 17:09:28 -0700882 cur_depth_++;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700883 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800884 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700885 } else if (cur_shadow_frame_ != nullptr) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700886 do {
887 SanityCheckFrame();
888 bool should_continue = VisitFrame();
889 if (UNLIKELY(!should_continue)) {
890 return;
891 }
892 cur_depth_++;
893 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700894 } while (cur_shadow_frame_ != nullptr);
Ian Rogers0399dde2012-06-06 17:09:28 -0700895 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700896 if (include_transitions) {
897 bool should_continue = VisitFrame();
898 if (!should_continue) {
899 return;
900 }
901 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800902 cur_depth_++;
903 }
904 if (num_frames_ != 0) {
905 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700906 }
907}
908
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800909void JavaFrameRootInfo::Describe(std::ostream& os) const {
910 const StackVisitor* visitor = stack_visitor_;
911 CHECK(visitor != nullptr);
912 os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" <<
913 visitor->DescribeLocation() << " vreg=" << vreg_;
914}
915
Mathieu Chartiere401d142015-04-22 13:56:20 -0700916int StackVisitor::GetVRegOffsetFromQuickCode(const DexFile::CodeItem* code_item,
917 uint32_t core_spills, uint32_t fp_spills,
918 size_t frame_size, int reg, InstructionSet isa) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700919 PointerSize pointer_size = InstructionSetPointerSize(isa);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700920 if (kIsDebugBuild) {
921 auto* runtime = Runtime::Current();
922 if (runtime != nullptr) {
923 CHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), pointer_size);
924 }
925 }
Roland Levillain14d90572015-07-16 10:52:26 +0100926 DCHECK_ALIGNED(frame_size, kStackAlignment);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700927 DCHECK_NE(reg, -1);
928 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
929 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
930 + sizeof(uint32_t); // Filler.
931 int num_regs = code_item->registers_size_ - code_item->ins_size_;
932 int temp_threshold = code_item->registers_size_;
933 const int max_num_special_temps = 1;
934 if (reg == temp_threshold) {
935 // The current method pointer corresponds to special location on stack.
936 return 0;
937 } else if (reg >= temp_threshold + max_num_special_temps) {
938 /*
939 * Special temporaries may have custom locations and the logic above deals with that.
940 * However, non-special temporaries are placed relative to the outs.
941 */
Andreas Gampe542451c2016-07-26 09:02:02 -0700942 int temps_start = code_item->outs_size_ * sizeof(uint32_t)
943 + static_cast<size_t>(pointer_size) /* art method */;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700944 int relative_offset = (reg - (temp_threshold + max_num_special_temps)) * sizeof(uint32_t);
945 return temps_start + relative_offset;
946 } else if (reg < num_regs) {
947 int locals_start = frame_size - spill_size - num_regs * sizeof(uint32_t);
948 return locals_start + (reg * sizeof(uint32_t));
949 } else {
950 // Handle ins.
Andreas Gampe542451c2016-07-26 09:02:02 -0700951 return frame_size + ((reg - num_regs) * sizeof(uint32_t))
952 + static_cast<size_t>(pointer_size) /* art method */;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700953 }
954}
955
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700956void LockCountData::AddMonitor(Thread* self, mirror::Object* obj) {
Andreas Gampe03ec9302015-08-27 17:41:47 -0700957 if (obj == nullptr) {
958 return;
959 }
960
961 // If there's an error during enter, we won't have locked the monitor. So check there's no
962 // exception.
963 if (self->IsExceptionPending()) {
964 return;
965 }
966
967 if (monitors_ == nullptr) {
968 monitors_.reset(new std::vector<mirror::Object*>());
969 }
970 monitors_->push_back(obj);
971}
972
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700973void LockCountData::RemoveMonitorOrThrow(Thread* self, const mirror::Object* obj) {
Andreas Gampe03ec9302015-08-27 17:41:47 -0700974 if (obj == nullptr) {
975 return;
976 }
977 bool found_object = false;
978 if (monitors_ != nullptr) {
979 // We need to remove one pointer to ref, as duplicates are used for counting recursive locks.
980 // We arbitrarily choose the first one.
981 auto it = std::find(monitors_->begin(), monitors_->end(), obj);
982 if (it != monitors_->end()) {
983 monitors_->erase(it);
984 found_object = true;
985 }
986 }
987 if (!found_object) {
988 // The object wasn't found. Time for an IllegalMonitorStateException.
989 // The order here isn't fully clear. Assume that any other pending exception is swallowed.
990 // TODO: Maybe make already pending exception a suppressed exception.
991 self->ClearException();
992 self->ThrowNewExceptionF("Ljava/lang/IllegalMonitorStateException;",
993 "did not lock monitor on object of type '%s' before unlocking",
994 PrettyTypeOf(const_cast<mirror::Object*>(obj)).c_str());
995 }
996}
997
998// Helper to unlock a monitor. Must be NO_THREAD_SAFETY_ANALYSIS, as we can't statically show
999// that the object was locked.
1000void MonitorExitHelper(Thread* self, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS {
1001 DCHECK(self != nullptr);
1002 DCHECK(obj != nullptr);
1003 obj->MonitorExit(self);
1004}
1005
Andreas Gampe56fdd0e2016-04-28 14:56:54 -07001006bool LockCountData::CheckAllMonitorsReleasedOrThrow(Thread* self) {
Andreas Gampe03ec9302015-08-27 17:41:47 -07001007 DCHECK(self != nullptr);
1008 if (monitors_ != nullptr) {
1009 if (!monitors_->empty()) {
1010 // There may be an exception pending, if the method is terminating abruptly. Clear it.
1011 // TODO: Should we add this as a suppressed exception?
1012 self->ClearException();
1013
1014 // OK, there are monitors that are still locked. To enforce structured locking (and avoid
1015 // deadlocks) we unlock all of them before we raise the IllegalMonitorState exception.
1016 for (mirror::Object* obj : *monitors_) {
1017 MonitorExitHelper(self, obj);
1018 // If this raised an exception, ignore. TODO: Should we add this as suppressed
1019 // exceptions?
1020 if (self->IsExceptionPending()) {
1021 self->ClearException();
1022 }
1023 }
1024 // Raise an exception, just give the first object as the sample.
1025 mirror::Object* first = (*monitors_)[0];
1026 self->ThrowNewExceptionF("Ljava/lang/IllegalMonitorStateException;",
1027 "did not unlock monitor on object of type '%s'",
1028 PrettyTypeOf(first).c_str());
1029
1030 // To make sure this path is not triggered again, clean out the monitors.
1031 monitors_->clear();
1032
1033 return false;
1034 }
1035 }
1036 return true;
1037}
1038
Elliott Hughes68e76522011-10-05 13:22:16 -07001039} // namespace art