blob: a74bcdbf0c3dd6596191ad722021b74ad6629f6f [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 Rogers2dd0e2c2013-01-24 12:42:14 -080019#include "mirror/abstract_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070020#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/object.h"
22#include "mirror/object-inl.h"
23#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080024#include "object_utils.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070025#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080026#include "throw_location.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070027
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080028namespace art {
29
Ian Rogers62d6c772013-02-27 08:32:07 -080030mirror::Object* ShadowFrame::GetThisObject() const {
31 mirror::AbstractMethod* m = GetMethod();
32 if (m->IsStatic()) {
33 return NULL;
34 } else if (m->IsNative()) {
35 return GetVRegReference(0);
36 } else {
37 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
38 CHECK(code_item != NULL) << PrettyMethod(m);
39 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
40 return GetVRegReference(reg);
41 }
42}
43
Jeff Haoe701f482013-05-24 11:50:49 -070044mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const {
45 mirror::AbstractMethod* m = GetMethod();
46 if (m->IsStatic()) {
47 return NULL;
48 } else {
Jeff Hao8d448852013-06-03 17:26:19 -070049 return GetVRegReference(NumberOfVRegs() - num_ins);
Jeff Haoe701f482013-05-24 11:50:49 -070050 }
51}
52
Ian Rogers62d6c772013-02-27 08:32:07 -080053ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const {
54 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
55}
56
TDYa127ce4cc0d2012-11-18 16:59:53 -080057size_t ManagedStack::NumJniShadowFrameReferences() const {
Ian Rogers0399dde2012-06-06 17:09:28 -070058 size_t count = 0;
59 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
60 current_fragment = current_fragment->GetLink()) {
61 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
62 current_frame = current_frame->GetLink()) {
TDYa127ce4cc0d2012-11-18 16:59:53 -080063 if (current_frame->GetMethod()->IsNative()) {
64 // The JNI ShadowFrame only contains references. (For indirect reference.)
65 count += current_frame->NumberOfVRegs();
66 }
Ian Rogers0399dde2012-06-06 17:09:28 -070067 }
68 }
69 return count;
70}
71
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080072bool ManagedStack::ShadowFramesContain(mirror::Object** shadow_frame_entry) const {
Ian Rogers0399dde2012-06-06 17:09:28 -070073 for (const ManagedStack* current_fragment = this; current_fragment != NULL;
74 current_fragment = current_fragment->GetLink()) {
75 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
76 current_frame = current_frame->GetLink()) {
77 if (current_frame->Contains(shadow_frame_entry)) {
78 return true;
79 }
80 }
81 }
82 return false;
83}
84
Ian Rogers7a22fa62013-01-23 12:16:16 -080085StackVisitor::StackVisitor(Thread* thread, Context* context)
86 : thread_(thread), cur_shadow_frame_(NULL),
87 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0),
88 context_(context) {
Ian Rogers62d6c772013-02-27 08:32:07 -080089 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
Ian Rogers7a22fa62013-01-23 12:16:16 -080090}
91
Ian Rogers0399dde2012-06-06 17:09:28 -070092uint32_t StackVisitor::GetDexPc() const {
93 if (cur_shadow_frame_ != NULL) {
94 return cur_shadow_frame_->GetDexPC();
95 } else if (cur_quick_frame_ != NULL) {
Ian Rogers0c7abda2012-09-19 13:33:42 -070096 return GetMethod()->ToDexPc(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -070097 } else {
98 return 0;
99 }
100}
101
Ian Rogers62d6c772013-02-27 08:32:07 -0800102mirror::Object* StackVisitor::GetThisObject() const {
103 mirror::AbstractMethod* m = GetMethod();
104 if (m->IsStatic()) {
105 return NULL;
106 } else if (m->IsNative()) {
107 if (cur_quick_frame_ != NULL) {
108 StackIndirectReferenceTable* sirt =
109 reinterpret_cast<StackIndirectReferenceTable*>(
110 reinterpret_cast<char*>(cur_quick_frame_) +
111 m->GetSirtOffsetInBytes());
112 return sirt->GetReference(0);
113 } else {
114 return cur_shadow_frame_->GetVRegReference(0);
115 }
116 } else {
117 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
118 if (code_item == NULL) {
119 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method"
120 << PrettyMethod(m);
121 return NULL;
122 } else {
123 uint16_t reg = code_item->registers_size_ - code_item->ins_size_;
124 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
125 }
126 }
127}
128
Ian Rogers0c7abda2012-09-19 13:33:42 -0700129size_t StackVisitor::GetNativePcOffset() const {
130 DCHECK(!IsShadowFrame());
131 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
132}
133
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800134uint32_t StackVisitor::GetVReg(mirror::AbstractMethod* m, uint16_t vreg, VRegKind kind) const {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700135 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700136 DCHECK(context_ != NULL); // You can't reliably read registers without a context.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800137 DCHECK(m == GetMethod());
Ian Rogers0ec569a2012-07-01 16:43:46 -0700138 const VmapTable vmap_table(m->GetVmapTableRaw());
139 uint32_t vmap_offset;
140 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800141 if (vmap_table.IsInContext(vreg, vmap_offset, kind)) {
142 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
143 uint32_t spill_mask = is_float ? m->GetFpSpillMask()
144 : m->GetCoreSpillMask();
145 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
Ian Rogers0ec569a2012-07-01 16:43:46 -0700146 } else {
147 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700148 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Ian Rogers0ec569a2012-07-01 16:43:46 -0700149 size_t frame_size = m->GetFrameSizeInBytes();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800150 return GetVReg(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
151 frame_size, vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700152 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700153 } else {
TDYa1278e950c12012-11-02 09:58:19 -0700154 return cur_shadow_frame_->GetVReg(vreg);
Ian Rogers0399dde2012-06-06 17:09:28 -0700155 }
156}
157
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158void StackVisitor::SetVReg(mirror::AbstractMethod* m, uint16_t vreg, uint32_t new_value,
159 VRegKind kind) {
Ian Rogers0ec569a2012-07-01 16:43:46 -0700160 if (cur_quick_frame_ != NULL) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700161 DCHECK(context_ != NULL); // You can't reliably write registers without a context.
Ian Rogers0ec569a2012-07-01 16:43:46 -0700162 DCHECK(m == GetMethod());
163 const VmapTable vmap_table(m->GetVmapTableRaw());
164 uint32_t vmap_offset;
165 // TODO: IsInContext stops before spotting floating point registers.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800166 if (vmap_table.IsInContext(vreg, vmap_offset, kind)) {
Mathieu Chartier67022432012-11-29 18:04:50 -0800167 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg);
168 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
169 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
170 SetGPR(reg, new_value);
171 } else {
172 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700173 DCHECK(code_item != NULL) << PrettyMethod(m); // Can't be NULL or how would we compile its instructions?
Mathieu Chartier67022432012-11-29 18:04:50 -0800174 uint32_t core_spills = m->GetCoreSpillMask();
175 uint32_t fp_spills = m->GetFpSpillMask();
176 size_t frame_size = m->GetFrameSizeInBytes();
177 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);
178 byte* vreg_addr = reinterpret_cast<byte*>(GetCurrentQuickFrame()) + offset;
179 *reinterpret_cast<uint32_t*>(vreg_addr) = new_value;
Ian Rogers0ec569a2012-07-01 16:43:46 -0700180 }
Ian Rogers0ec569a2012-07-01 16:43:46 -0700181 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800182 return cur_shadow_frame_->SetVReg(vreg, new_value);
Ian Rogers0399dde2012-06-06 17:09:28 -0700183 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700184}
185
186uintptr_t StackVisitor::GetGPR(uint32_t reg) const {
Brian Carlstromdf629502013-07-17 22:39:56 -0700187 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Ian Rogers0399dde2012-06-06 17:09:28 -0700188 return context_->GetGPR(reg);
189}
190
Mathieu Chartier67022432012-11-29 18:04:50 -0800191void StackVisitor::SetGPR(uint32_t reg, uintptr_t value) {
Brian Carlstromdf629502013-07-17 22:39:56 -0700192 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine";
Mathieu Chartier67022432012-11-29 18:04:50 -0800193 context_->SetGPR(reg, value);
194}
195
Ian Rogers0399dde2012-06-06 17:09:28 -0700196uintptr_t StackVisitor::GetReturnPc() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 mirror::AbstractMethod** sp = GetCurrentQuickFrame();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800198 DCHECK(sp != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700199 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
200 return *reinterpret_cast<uintptr_t*>(pc_addr);
201}
202
203void StackVisitor::SetReturnPc(uintptr_t new_ret_pc) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204 mirror::AbstractMethod** sp = GetCurrentQuickFrame();
Ian Rogers0399dde2012-06-06 17:09:28 -0700205 CHECK(sp != NULL);
206 byte* pc_addr = reinterpret_cast<byte*>(sp) + GetMethod()->GetReturnPcOffsetInBytes();
207 *reinterpret_cast<uintptr_t*>(pc_addr) = new_ret_pc;
208}
209
Ian Rogers7a22fa62013-01-23 12:16:16 -0800210size_t StackVisitor::ComputeNumFrames(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700211 struct NumFramesVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800212 explicit NumFramesVisitor(Thread* thread)
213 : StackVisitor(thread, NULL), frames(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -0700214
215 virtual bool VisitFrame() {
216 frames++;
217 return true;
218 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700219
Ian Rogers0399dde2012-06-06 17:09:28 -0700220 size_t frames;
221 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800222 NumFramesVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -0700223 visitor.WalkStack(true);
224 return visitor.frames;
225}
226
Ian Rogers7a22fa62013-01-23 12:16:16 -0800227void StackVisitor::DescribeStack(Thread* thread) {
Ian Rogers306057f2012-11-26 12:45:53 -0800228 struct DescribeStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800229 explicit DescribeStackVisitor(Thread* thread)
230 : StackVisitor(thread, NULL) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800231
232 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
233 LOG(INFO) << "Frame Id=" << GetFrameId() << " " << DescribeLocation();
234 return true;
235 }
236 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800237 DescribeStackVisitor visitor(thread);
Ian Rogers306057f2012-11-26 12:45:53 -0800238 visitor.WalkStack(true);
239}
240
Ian Rogers40e3bac2012-11-20 00:09:14 -0800241std::string StackVisitor::DescribeLocation() const {
242 std::string result("Visiting method '");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800243 mirror::AbstractMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800244 if (m == NULL) {
245 return "upcall";
246 }
247 result += PrettyMethod(m);
Ian Rogers40e3bac2012-11-20 00:09:14 -0800248 result += StringPrintf("' at dex PC 0x%04zx", GetDexPc());
249 if (!IsShadowFrame()) {
250 result += StringPrintf(" (native PC %p)", reinterpret_cast<void*>(GetCurrentQuickFramePc()));
251 }
252 return result;
253}
254
Ian Rogers62d6c772013-02-27 08:32:07 -0800255instrumentation::InstrumentationStackFrame StackVisitor::GetInstrumentationStackFrame(uint32_t depth) const {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800256 return thread_->GetInstrumentationStack()->at(depth);
257}
258
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700259void StackVisitor::SanityCheckFrame() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700260#ifndef NDEBUG
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800261 mirror::AbstractMethod* method = GetMethod();
262 CHECK(method->GetClass() == mirror::AbstractMethod::GetMethodClass() ||
263 method->GetClass() == mirror::AbstractMethod::GetConstructorClass());
Ian Rogers0399dde2012-06-06 17:09:28 -0700264 if (cur_quick_frame_ != NULL) {
buzbee8320f382012-09-11 16:29:42 -0700265 method->AssertPcIsWithinCode(cur_quick_frame_pc_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700266 // Frame sanity.
267 size_t frame_size = method->GetFrameSizeInBytes();
268 CHECK_NE(frame_size, 0u);
Jeff Haob24b4a72013-07-31 13:47:31 -0700269 // A rough guess at an upper size we expect to see for a frame. The 256 is
270 // a dex register limit. The 16 incorporates callee save spills and
271 // outgoing argument set up.
272 const size_t kMaxExpectedFrameSize = 256 * sizeof(word) + 16;
273 CHECK_LE(frame_size, kMaxExpectedFrameSize);
Ian Rogers0399dde2012-06-06 17:09:28 -0700274 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
275 CHECK_LT(return_pc_offset, frame_size);
276 }
277#endif
278}
279
280void StackVisitor::WalkStack(bool include_transitions) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800281 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
Ian Rogers62d6c772013-02-27 08:32:07 -0800282 CHECK_EQ(cur_depth_, 0U);
283 bool exit_stubs_installed = Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled();
jeffhao725a9572012-11-13 18:20:12 -0800284 uint32_t instrumentation_stack_depth = 0;
Ian Rogers7a22fa62013-01-23 12:16:16 -0800285 for (const ManagedStack* current_fragment = thread_->GetManagedStack(); current_fragment != NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -0700286 current_fragment = current_fragment->GetLink()) {
287 cur_shadow_frame_ = current_fragment->GetTopShadowFrame();
288 cur_quick_frame_ = current_fragment->GetTopQuickFrame();
289 cur_quick_frame_pc_ = current_fragment->GetTopQuickFramePc();
290 if (cur_quick_frame_ != NULL) { // Handle quick stack frames.
291 // Can't be both a shadow and a quick fragment.
292 DCHECK(current_fragment->GetTopShadowFrame() == NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800293 mirror::AbstractMethod* method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800294 while (method != NULL) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700295 SanityCheckFrame();
296 bool should_continue = VisitFrame();
297 if (UNLIKELY(!should_continue)) {
298 return;
299 }
300 if (context_ != NULL) {
301 context_->FillCalleeSaves(*this);
302 }
303 size_t frame_size = method->GetFrameSizeInBytes();
304 // Compute PC for next stack frame from return PC.
305 size_t return_pc_offset = method->GetReturnPcOffsetInBytes();
306 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset;
307 uintptr_t return_pc = *reinterpret_cast<uintptr_t*>(return_pc_addr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 if (UNLIKELY(exit_stubs_installed)) {
Ian Rogers0399dde2012-06-06 17:09:28 -0700309 // While profiling, the return pc is restored from the side stack, except when walking
310 // the stack for an exception where the side stack will be unwound in VisitFrame.
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 if (GetInstrumentationExitPc() == return_pc) {
312 instrumentation::InstrumentationStackFrame instrumentation_frame =
313 GetInstrumentationStackFrame(instrumentation_stack_depth);
jeffhao725a9572012-11-13 18:20:12 -0800314 instrumentation_stack_depth++;
Jeff Haofb2802d2013-07-24 13:53:05 -0700315 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) {
316 // Skip runtime save all callee frames which are used to deliver exceptions.
317 } else if (instrumentation_frame.interpreter_entry_) {
Jeff Hao9a916d32013-06-27 18:45:37 -0700318 mirror::AbstractMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Jeff Haofb2802d2013-07-24 13:53:05 -0700319 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
320 << PrettyMethod(GetMethod());
Jeff Hao9a916d32013-06-27 18:45:37 -0700321 } else if (instrumentation_frame.method_ != GetMethod()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800322 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
Ian Rogers0399dde2012-06-06 17:09:28 -0700323 << " Found: " << PrettyMethod(GetMethod());
Ian Rogers62d6c772013-02-27 08:32:07 -0800324 }
325 if (num_frames_ != 0) {
326 // Check agreement of frame Ids only if num_frames_ is computed to avoid infinite
327 // recursion.
328 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
329 << "Expected: " << instrumentation_frame.frame_id_
330 << " Found: " << GetFrameId();
331 }
jeffhao725a9572012-11-13 18:20:12 -0800332 return_pc = instrumentation_frame.return_pc_;
Ian Rogers0399dde2012-06-06 17:09:28 -0700333 }
334 }
335 cur_quick_frame_pc_ = return_pc;
336 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800337 cur_quick_frame_ = reinterpret_cast<mirror::AbstractMethod**>(next_frame);
Ian Rogers0399dde2012-06-06 17:09:28 -0700338 cur_depth_++;
339 method = *cur_quick_frame_;
jeffhao6641ea12013-01-02 18:13:42 -0800340 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700341 } else if (cur_shadow_frame_ != NULL) {
342 do {
343 SanityCheckFrame();
344 bool should_continue = VisitFrame();
345 if (UNLIKELY(!should_continue)) {
346 return;
347 }
348 cur_depth_++;
349 cur_shadow_frame_ = cur_shadow_frame_->GetLink();
Brian Carlstromdf629502013-07-17 22:39:56 -0700350 } while (cur_shadow_frame_ != NULL);
Ian Rogers0399dde2012-06-06 17:09:28 -0700351 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700352 if (include_transitions) {
353 bool should_continue = VisitFrame();
354 if (!should_continue) {
355 return;
356 }
357 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800358 cur_depth_++;
359 }
360 if (num_frames_ != 0) {
361 CHECK_EQ(cur_depth_, num_frames_);
Ian Rogers0399dde2012-06-06 17:09:28 -0700362 }
363}
364
Elliott Hughes68e76522011-10-05 13:22:16 -0700365} // namespace art