diff options
Diffstat (limited to 'runtime/stack.cc')
-rw-r--r-- | runtime/stack.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/stack.cc b/runtime/stack.cc index aaa5b898b3..3165898e8c 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -614,4 +614,11 @@ void StackVisitor::WalkStack(bool include_transitions) { } } +void JavaFrameRootInfo::Describe(std::ostream& os) const { + const StackVisitor* visitor = stack_visitor_; + CHECK(visitor != nullptr); + os << "Type=" << GetType() << " thread_id=" << GetThreadId() << " location=" << + visitor->DescribeLocation() << " vreg=" << vreg_; +} + } // namespace art |