From: Mathieu Chartier Date: Wed, 14 Jan 2015 22:55:47 +0000 (-0800) Subject: Print more info in MarkSweep::VerifyRoot X-Git-Tag: android-x86-7.1-r1~889^2~2200^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e34fa1df67fbe0173b4ea9abddcc3ae3d0537037;p=android-x86%2Fart.git Print more info in MarkSweep::VerifyRoot Refactored old root callback to use a new class called RootInfo. RootInfo contains all the relevant info related to the root associated with the callback. The MarkSweep::VerifyRoot function now uses this info to print the StackVisitor's described location if the GC root is of the type kRootJavaFrame. Some other cleanup. Example output: E/art (12167): Tried to mark 0x123 not contained by any spaces E/art (12167): Attempting see if it's a bad root E/art (12167): Found invalid root: 0x123 with type RootJavaFrame E/art (12167): Location=Visiting method 'void java.lang.Runtime.gc()' at dex PC 0xffffffff (native PC 0x0) vreg=0 (cherry picked from commit 12f7423a2bb4bfab76700d84eb6d4338d211983a) Bug: 18588862 Change-Id: Ic5a2781f704e931265ffb3621c2eab4b2e25f60f --- diff --git a/runtime/Android.mk b/runtime/Android.mk index 3330b2dcb..b989e4e47 100644 --- a/runtime/Android.mk +++ b/runtime/Android.mk @@ -288,6 +288,7 @@ LIBART_ENUM_OPERATOR_OUT_HEADER_FILES := \ base/unix_file/fd_file.h \ dex_file.h \ dex_instruction.h \ + gc_root.h \ gc/allocator/rosalloc.h \ gc/collector/gc_type.h \ gc/allocator_type.h \ diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 377a3c37d..05b6b1dba 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -1748,23 +1748,23 @@ void ClassLinker::VisitClassRoots(RootCallback* callback, void* arg, VisitRootFl WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_); if ((flags & kVisitRootFlagAllRoots) != 0) { for (GcRoot& root : class_table_) { - root.VisitRoot(callback, arg, 0, kRootStickyClass); + root.VisitRoot(callback, arg, RootInfo(kRootStickyClass)); } for (GcRoot& root : pre_zygote_class_table_) { - root.VisitRoot(callback, arg, 0, kRootStickyClass); + root.VisitRoot(callback, arg, RootInfo(kRootStickyClass)); } } else if ((flags & kVisitRootFlagNewRoots) != 0) { for (auto& root : new_class_roots_) { mirror::Class* old_ref = root.Read(); - root.VisitRoot(callback, arg, 0, kRootStickyClass); + root.VisitRoot(callback, arg, RootInfo(kRootStickyClass)); mirror::Class* new_ref = root.Read(); if (UNLIKELY(new_ref != old_ref)) { // Uh ohes, GC moved a root in the log. Need to search the class_table and update the // corresponding object. This is slow, but luckily for us, this may only happen with a // concurrent moving GC. auto it = class_table_.Find(GcRoot(old_ref)); - class_table_.Erase(it); - class_table_.Insert(GcRoot(new_ref)); + DCHECK(it != class_table_.end()); + *it = GcRoot(new_ref); } } } @@ -1784,17 +1784,17 @@ void ClassLinker::VisitClassRoots(RootCallback* callback, void* arg, VisitRootFl // reinit references to when reinitializing a ClassLinker from a // mapped image. void ClassLinker::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags) { - class_roots_.VisitRoot(callback, arg, 0, kRootVMInternal); + class_roots_.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); Thread* self = Thread::Current(); { ReaderMutexLock mu(self, dex_lock_); if ((flags & kVisitRootFlagAllRoots) != 0) { for (GcRoot& dex_cache : dex_caches_) { - dex_cache.VisitRoot(callback, arg, 0, kRootVMInternal); + dex_cache.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); } } else if ((flags & kVisitRootFlagNewRoots) != 0) { for (size_t index : new_dex_cache_roots_) { - dex_caches_[index].VisitRoot(callback, arg, 0, kRootVMInternal); + dex_caches_[index].VisitRoot(callback, arg, RootInfo(kRootVMInternal)); } } if ((flags & kVisitRootFlagClearRootLog) != 0) { @@ -1807,12 +1807,10 @@ void ClassLinker::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags f } } VisitClassRoots(callback, arg, flags); - array_iftable_.VisitRoot(callback, arg, 0, kRootVMInternal); + array_iftable_.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); DCHECK(!array_iftable_.IsNull()); for (size_t i = 0; i < kFindArrayCacheSize; ++i) { - if (!find_array_class_cache_[i].IsNull()) { - find_array_class_cache_[i].VisitRoot(callback, arg, 0, kRootVMInternal); - } + find_array_class_cache_[i].VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); } } diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index 6c7c1e2b5..64e129c38 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -365,7 +365,7 @@ class ClassLinkerTest : public CommonRuntimeTest { } } - static void TestRootVisitor(mirror::Object** root, void*, uint32_t, RootType) { + static void TestRootVisitor(mirror::Object** root, void*, const RootInfo&) { EXPECT_TRUE(*root != nullptr); } }; diff --git a/runtime/debugger.cc b/runtime/debugger.cc index 229a1af6b..c595de738 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -342,19 +342,18 @@ uint32_t Dbg::instrumentation_events_ = 0; // Breakpoints. static std::vector gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); -void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, - RootType root_type) { +void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) { if (receiver != nullptr) { - callback(&receiver, arg, tid, root_type); + callback(&receiver, arg, root_info); } if (thread != nullptr) { - callback(&thread, arg, tid, root_type); + callback(&thread, arg, root_info); } if (klass != nullptr) { - callback(reinterpret_cast(&klass), arg, tid, root_type); + callback(reinterpret_cast(&klass), arg, root_info); } if (method != nullptr) { - callback(reinterpret_cast(&method), arg, tid, root_type); + callback(reinterpret_cast(&method), arg, root_info); } } @@ -366,10 +365,9 @@ void DebugInvokeReq::Clear() { method = nullptr; } -void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, - RootType root_type) { +void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) { if (method != nullptr) { - callback(reinterpret_cast(&method), arg, tid, root_type); + callback(reinterpret_cast(&method), arg, root_info); } } diff --git a/runtime/debugger.h b/runtime/debugger.h index 8f0db76c2..e79e8e408 100644 --- a/runtime/debugger.h +++ b/runtime/debugger.h @@ -28,6 +28,7 @@ #include #include +#include "gc_root.h" #include "jdwp/jdwp.h" #include "jni.h" #include "jvalue.h" @@ -87,7 +88,7 @@ struct DebugInvokeReq { Mutex lock DEFAULT_MUTEX_ACQUIRED_AFTER; ConditionVariable cond GUARDED_BY(lock); - void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type) + void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); void Clear(); @@ -122,7 +123,7 @@ struct SingleStepControl { // single-step depth. int stack_depth; - void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type) + void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); bool ContainsDexPc(uint32_t dex_pc) const; diff --git a/runtime/gc/collector/mark_compact.cc b/runtime/gc/collector/mark_compact.cc index b2482acaf..18af0054d 100644 --- a/runtime/gc/collector/mark_compact.cc +++ b/runtime/gc/collector/mark_compact.cc @@ -300,22 +300,20 @@ mirror::Object* MarkCompact::MarkObjectCallback(mirror::Object* root, void* arg) } void MarkCompact::MarkHeapReferenceCallback(mirror::HeapReference* obj_ptr, - void* arg) { + void* arg) { reinterpret_cast(arg)->MarkObject(obj_ptr->AsMirrorPtr()); } void MarkCompact::DelayReferenceReferentCallback(mirror::Class* klass, mirror::Reference* ref, - void* arg) { + void* arg) { reinterpret_cast(arg)->DelayReferenceReferent(klass, ref); } -void MarkCompact::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void MarkCompact::MarkRootCallback(Object** root, void* arg, const RootInfo& /*root_info*/) { reinterpret_cast(arg)->MarkObject(*root); } -void MarkCompact::UpdateRootCallback(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void MarkCompact::UpdateRootCallback(Object** root, void* arg, const RootInfo& /*root_info*/) { mirror::Object* obj = *root; mirror::Object* new_obj = reinterpret_cast(arg)->GetMarkedForwardAddress(obj); if (obj != new_obj) { diff --git a/runtime/gc/collector/mark_compact.h b/runtime/gc/collector/mark_compact.h index f40e8702d..f6d473d3d 100644 --- a/runtime/gc/collector/mark_compact.h +++ b/runtime/gc/collector/mark_compact.h @@ -24,6 +24,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "garbage_collector.h" +#include "gc_root.h" #include "gc/accounting/heap_bitmap.h" #include "immune_region.h" #include "lock_word.h" @@ -113,8 +114,7 @@ class MarkCompact : public GarbageCollector { void SweepSystemWeaks() SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_); - static void MarkRootCallback(mirror::Object** root, void* arg, uint32_t /*tid*/, - RootType /*root_type*/) + static void MarkRootCallback(mirror::Object** root, void* arg, const RootInfo& root_info) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_); static mirror::Object* MarkObjectCallback(mirror::Object* root, void* arg) @@ -180,8 +180,7 @@ class MarkCompact : public GarbageCollector { EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_); // Update the references of objects by using the forwarding addresses. void UpdateReferences() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_); - static void UpdateRootCallback(mirror::Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) + static void UpdateRootCallback(mirror::Object** root, void* arg, const RootInfo& /*root_info*/) EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_); // Move objects and restore lock words. diff --git a/runtime/gc/collector/mark_sweep.cc b/runtime/gc/collector/mark_sweep.cc index 6ad44e6a7..80f7968ef 100644 --- a/runtime/gc/collector/mark_sweep.cc +++ b/runtime/gc/collector/mark_sweep.cc @@ -460,42 +460,35 @@ inline void MarkSweep::MarkObject(Object* obj) { } } -void MarkSweep::MarkRootParallelCallback(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void MarkSweep::MarkRootParallelCallback(Object** root, void* arg, const RootInfo& /*root_info*/) { reinterpret_cast(arg)->MarkObjectNonNullParallel(*root); } -void MarkSweep::VerifyRootMarked(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void MarkSweep::VerifyRootMarked(Object** root, void* arg, const RootInfo& /*root_info*/) { CHECK(reinterpret_cast(arg)->IsMarked(*root)); } -void MarkSweep::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void MarkSweep::MarkRootCallback(Object** root, void* arg, const RootInfo& /*root_info*/) { reinterpret_cast(arg)->MarkObjectNonNull(*root); } -void MarkSweep::VerifyRootCallback(const Object* root, void* arg, size_t vreg, - const StackVisitor* visitor, RootType root_type) { - reinterpret_cast(arg)->VerifyRoot(root, vreg, visitor, root_type); +void MarkSweep::VerifyRootCallback(Object** root, void* arg, const RootInfo& root_info) { + reinterpret_cast(arg)->VerifyRoot(*root, root_info); } -void MarkSweep::VerifyRoot(const Object* root, size_t vreg, const StackVisitor* visitor, - RootType root_type) { +void MarkSweep::VerifyRoot(const Object* root, const RootInfo& root_info) { // See if the root is on any space bitmap. if (heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(root) == nullptr) { space::LargeObjectSpace* large_object_space = GetHeap()->GetLargeObjectsSpace(); if (large_object_space != nullptr && !large_object_space->Contains(root)) { - LOG(ERROR) << "Found invalid root: " << root << " with type " << root_type; - if (visitor != NULL) { - LOG(ERROR) << visitor->DescribeLocation() << " in VReg: " << vreg; - } + LOG(ERROR) << "Found invalid root: " << root << " "; + root_info.Describe(LOG(ERROR)); } } } void MarkSweep::VerifyRoots() { - Runtime::Current()->GetThreadList()->VerifyRoots(VerifyRootCallback, this); + Runtime::Current()->GetThreadList()->VisitRoots(VerifyRootCallback, this); } void MarkSweep::MarkRoots(Thread* self) { diff --git a/runtime/gc/collector/mark_sweep.h b/runtime/gc/collector/mark_sweep.h index 9ac110d68..b787327c8 100644 --- a/runtime/gc/collector/mark_sweep.h +++ b/runtime/gc/collector/mark_sweep.h @@ -24,6 +24,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "garbage_collector.h" +#include "gc_root.h" #include "gc/accounting/heap_bitmap.h" #include "immune_region.h" #include "object_callbacks.h" @@ -182,13 +183,11 @@ class MarkSweep : public GarbageCollector { SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_); - static void MarkRootCallback(mirror::Object** root, void* arg, uint32_t thread_id, - RootType root_type) + static void MarkRootCallback(mirror::Object** root, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_); - static void VerifyRootMarked(mirror::Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) + static void VerifyRootMarked(mirror::Object** root, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_); @@ -196,8 +195,7 @@ class MarkSweep : public GarbageCollector { EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - static void MarkRootParallelCallback(mirror::Object** root, void* arg, uint32_t thread_id, - RootType root_type) + static void MarkRootParallelCallback(mirror::Object** root, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); // Marks an object. @@ -247,11 +245,9 @@ class MarkSweep : public GarbageCollector { // whether or not we care about pauses. size_t GetThreadCount(bool paused) const; - static void VerifyRootCallback(const mirror::Object* root, void* arg, size_t vreg, - const StackVisitor *visitor, RootType root_type); + static void VerifyRootCallback(mirror::Object** root, void* arg, const RootInfo& root_info); - void VerifyRoot(const mirror::Object* root, size_t vreg, const StackVisitor* visitor, - RootType root_type) NO_THREAD_SAFETY_ANALYSIS; + void VerifyRoot(const mirror::Object* root, const RootInfo& root_info) NO_THREAD_SAFETY_ANALYSIS; // Push a single reference on a mark stack. void PushOnMarkStack(mirror::Object* obj); diff --git a/runtime/gc/collector/semi_space.cc b/runtime/gc/collector/semi_space.cc index 82d699292..fcc601f73 100644 --- a/runtime/gc/collector/semi_space.cc +++ b/runtime/gc/collector/semi_space.cc @@ -600,8 +600,7 @@ void SemiSpace::DelayReferenceReferentCallback(mirror::Class* klass, mirror::Ref reinterpret_cast(arg)->DelayReferenceReferent(klass, ref); } -void SemiSpace::MarkRootCallback(Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +void SemiSpace::MarkRootCallback(Object** root, void* arg, const RootInfo& /*root_info*/) { auto ref = StackReference::FromMirrorPtr(*root); reinterpret_cast(arg)->MarkObject(&ref); if (*root != ref.AsMirrorPtr()) { diff --git a/runtime/gc/collector/semi_space.h b/runtime/gc/collector/semi_space.h index 1c4f1e418..f8fced8cc 100644 --- a/runtime/gc/collector/semi_space.h +++ b/runtime/gc/collector/semi_space.h @@ -23,6 +23,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "garbage_collector.h" +#include "gc_root.h" #include "gc/accounting/heap_bitmap.h" #include "immune_region.h" #include "mirror/object_reference.h" @@ -132,8 +133,7 @@ class SemiSpace : public GarbageCollector { void SweepSystemWeaks() SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_); - static void MarkRootCallback(mirror::Object** root, void* arg, uint32_t /*tid*/, - RootType /*root_type*/) + static void MarkRootCallback(mirror::Object** root, void* arg, const RootInfo& root_info) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_); static mirror::Object* MarkObjectCallback(mirror::Object* root, void* arg) diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc index 618f1cc22..553a5d3bf 100644 --- a/runtime/gc/heap.cc +++ b/runtime/gc/heap.cc @@ -2236,8 +2236,8 @@ void Heap::FinishGC(Thread* self, collector::GcType gc_type) { gc_complete_cond_->Broadcast(self); } -static void RootMatchesObjectVisitor(mirror::Object** root, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) { +static void RootMatchesObjectVisitor(mirror::Object** root, void* arg, + const RootInfo& /*root_info*/) { mirror::Object* obj = reinterpret_cast(arg); if (*root == obj) { LOG(INFO) << "Object " << obj << " is a root"; @@ -2279,12 +2279,12 @@ class VerifyReferenceVisitor { return heap_->IsLiveObjectLocked(obj, true, false, true); } - static void VerifyRootCallback(mirror::Object** root, void* arg, uint32_t thread_id, - RootType root_type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { + static void VerifyRootCallback(mirror::Object** root, void* arg, const RootInfo& root_info) + SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { VerifyReferenceVisitor* visitor = reinterpret_cast(arg); if (!visitor->VerifyReference(nullptr, *root, MemberOffset(0))) { LOG(ERROR) << "Root " << *root << " is dead with type " << PrettyTypeOf(*root) - << " thread_id= " << thread_id << " root_type= " << root_type; + << " thread_id= " << root_info.GetThreadId() << " root_type= " << root_info.GetType(); } } diff --git a/runtime/gc_root.h b/runtime/gc_root.h index aee5586f3..7e0be6444 100644 --- a/runtime/gc_root.h +++ b/runtime/gc_root.h @@ -19,22 +19,75 @@ #include "base/macros.h" #include "base/mutex.h" // For Locks::mutator_lock_. -#include "object_callbacks.h" namespace art { +namespace mirror { +class Object; +} // namespace mirror + +enum RootType { + kRootUnknown = 0, + kRootJNIGlobal, + kRootJNILocal, + kRootJavaFrame, + kRootNativeStack, + kRootStickyClass, + kRootThreadBlock, + kRootMonitorUsed, + kRootThreadObject, + kRootInternedString, + kRootDebugger, + kRootVMInternal, + kRootJNIMonitor, +}; +std::ostream& operator<<(std::ostream& os, const RootType& root_type); + +class RootInfo { + public: + // Thread id 0 is for non thread roots. + explicit RootInfo(RootType type, uint32_t thread_id = 0) + : type_(type), thread_id_(thread_id) { + } + virtual ~RootInfo() { + } + RootType GetType() const { + return type_; + } + uint32_t GetThreadId() const { + return thread_id_; + } + virtual void Describe(std::ostream& os) const { + os << "Type=" << type_ << " thread_id=" << thread_id_; + } + + private: + const RootType type_; + const uint32_t thread_id_; +}; + +// Returns the new address of the object, returns root if it has not moved. tid and root_type are +// only used by hprof. +typedef void (RootCallback)(mirror::Object** root, void* arg, const RootInfo& root_info); + template class PACKED(4) GcRoot { public: template ALWAYS_INLINE MirrorType* Read() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - void VisitRoot(RootCallback* callback, void* arg, uint32_t thread_id, RootType root_type) const { + void VisitRoot(RootCallback* callback, void* arg, const RootInfo& info) const { DCHECK(!IsNull()); - callback(reinterpret_cast(&root_), arg, thread_id, root_type); + callback(reinterpret_cast(&root_), arg, info); DCHECK(!IsNull()); } + void VisitRootIfNonNull(RootCallback* callback, void* arg, const RootInfo& info) const { + if (!IsNull()) { + VisitRoot(callback, arg, info); + } + } + // This is only used by IrtIterator. ALWAYS_INLINE MirrorType** AddressWithoutBarrier() { return &root_; diff --git a/runtime/hprof/hprof.cc b/runtime/hprof/hprof.cc index 1716d5e0e..040757bdb 100644 --- a/runtime/hprof/hprof.cc +++ b/runtime/hprof/hprof.cc @@ -44,6 +44,7 @@ #include "common_throws.h" #include "debugger.h" #include "dex_file-inl.h" +#include "gc_root.h" #include "gc/accounting/heap_bitmap.h" #include "gc/heap.h" #include "gc/space/space.h" @@ -456,13 +457,13 @@ class Hprof { EndianOutput* output; }; - static void RootVisitor(mirror::Object** obj, void* arg, uint32_t thread_id, RootType root_type) + static void RootVisitor(mirror::Object** obj, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { DCHECK(arg != nullptr); DCHECK(obj != nullptr); DCHECK(*obj != nullptr); Env* env = reinterpret_cast(arg); - env->hprof->VisitRoot(*obj, thread_id, root_type, env->output); + env->hprof->VisitRoot(*obj, root_info, env->output); } static void VisitObjectCallback(mirror::Object* obj, void* arg) @@ -574,7 +575,7 @@ class Hprof { } } - void VisitRoot(const mirror::Object* obj, uint32_t thread_id, RootType type, EndianOutput* output) + void VisitRoot(const mirror::Object* obj, const RootInfo& root_info, EndianOutput* output) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); void MarkRootObject(const mirror::Object* obj, jobject jni_obj, HprofHeapTag heap_tag, uint32_t thread_serial, EndianOutput* output); @@ -1124,8 +1125,7 @@ void Hprof::DumpHeapInstanceObject(mirror::Object* obj, mirror::Class* klass, __ UpdateU4(size_patch_offset, output->Length() - (size_patch_offset + 4)); } -void Hprof::VisitRoot(const mirror::Object* obj, uint32_t thread_id, RootType type, - EndianOutput* output) { +void Hprof::VisitRoot(const mirror::Object* obj, const RootInfo& info, EndianOutput* output) { static const HprofHeapTag xlate[] = { HPROF_ROOT_UNKNOWN, HPROF_ROOT_JNI_GLOBAL, @@ -1143,11 +1143,11 @@ void Hprof::VisitRoot(const mirror::Object* obj, uint32_t thread_id, RootType ty HPROF_ROOT_VM_INTERNAL, HPROF_ROOT_JNI_MONITOR, }; - CHECK_LT(type, sizeof(xlate) / sizeof(HprofHeapTag)); + CHECK_LT(info.GetType(), sizeof(xlate) / sizeof(HprofHeapTag)); if (obj == nullptr) { return; } - MarkRootObject(obj, 0, xlate[type], thread_id, output); + MarkRootObject(obj, 0, xlate[info.GetType()], info.GetThreadId(), output); } // If "direct_to_ddms" is true, the other arguments are ignored, and data is diff --git a/runtime/indirect_reference_table.cc b/runtime/indirect_reference_table.cc index 0d84a1ef9..aa2a6b58f 100644 --- a/runtime/indirect_reference_table.cc +++ b/runtime/indirect_reference_table.cc @@ -242,15 +242,15 @@ void IndirectReferenceTable::Trim() { madvise(release_start, release_end - release_start, MADV_DONTNEED); } -void IndirectReferenceTable::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, - RootType root_type) { +void IndirectReferenceTable::VisitRoots(RootCallback* callback, void* arg, + const RootInfo& root_info) { for (auto ref : *this) { if (*ref == nullptr) { // Need to skip null entries to make it possible to do the // non-null check after the call back. continue; } - callback(ref, arg, tid, root_type); + callback(ref, arg, root_info); DCHECK(*ref != nullptr); } } diff --git a/runtime/indirect_reference_table.h b/runtime/indirect_reference_table.h index fbd571468..7f7870a41 100644 --- a/runtime/indirect_reference_table.h +++ b/runtime/indirect_reference_table.h @@ -31,6 +31,8 @@ namespace art { +class RootInfo; + namespace mirror { class Object; } // namespace mirror @@ -316,7 +318,7 @@ class IndirectReferenceTable { return IrtIterator(table_, Capacity(), Capacity()); } - void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type) + void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); uint32_t GetSegmentState() const { diff --git a/runtime/instrumentation.cc b/runtime/instrumentation.cc index 6bc813faf..1548cfd2a 100644 --- a/runtime/instrumentation.cc +++ b/runtime/instrumentation.cc @@ -1053,7 +1053,7 @@ void Instrumentation::VisitRoots(RootCallback* callback, void* arg) { return; } for (auto pair : deoptimized_methods_) { - pair.second.VisitRoot(callback, arg, 0, kRootVMInternal); + pair.second.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); } } diff --git a/runtime/intern_table.cc b/runtime/intern_table.cc index 7ecb58e7e..f92f20930 100644 --- a/runtime/intern_table.cc +++ b/runtime/intern_table.cc @@ -60,7 +60,7 @@ void InternTable::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags f } else if ((flags & kVisitRootFlagNewRoots) != 0) { for (auto& root : new_strong_intern_roots_) { mirror::String* old_ref = root.Read(); - root.VisitRoot(callback, arg, 0, kRootInternedString); + root.VisitRoot(callback, arg, RootInfo(kRootInternedString)); mirror::String* new_ref = root.Read(); if (new_ref != old_ref) { // The GC moved a root in the log. Need to search the strong interns and update the @@ -329,10 +329,10 @@ void InternTable::Table::Insert(mirror::String* s) { void InternTable::Table::VisitRoots(RootCallback* callback, void* arg) { for (auto& intern : pre_zygote_table_) { - intern.VisitRoot(callback, arg, 0, kRootInternedString); + intern.VisitRoot(callback, arg, RootInfo(kRootInternedString)); } for (auto& intern : post_zygote_table_) { - intern.VisitRoot(callback, arg, 0, kRootInternedString); + intern.VisitRoot(callback, arg, RootInfo(kRootInternedString)); } } diff --git a/runtime/java_vm_ext.cc b/runtime/java_vm_ext.cc index 7f677ab5d..4643d145c 100644 --- a/runtime/java_vm_ext.cc +++ b/runtime/java_vm_ext.cc @@ -764,10 +764,8 @@ void JavaVMExt::TrimGlobals() { void JavaVMExt::VisitRoots(RootCallback* callback, void* arg) { Thread* self = Thread::Current(); - { - ReaderMutexLock mu(self, globals_lock_); - globals_.VisitRoots(callback, arg, 0, kRootJNIGlobal); - } + ReaderMutexLock mu(self, globals_lock_); + globals_.VisitRoots(callback, arg, RootInfo(kRootJNIGlobal)); // The weak_globals table is visited by the GC itself (because it mutates the table). } diff --git a/runtime/mirror/array-inl.h b/runtime/mirror/array-inl.h index 4dddd38b8..048d8ba08 100644 --- a/runtime/mirror/array-inl.h +++ b/runtime/mirror/array-inl.h @@ -200,9 +200,7 @@ inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_c template inline void PrimitiveArray::VisitRoots(RootCallback* callback, void* arg) { - if (!array_class_.IsNull()) { - array_class_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + array_class_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } template diff --git a/runtime/mirror/art_field.cc b/runtime/mirror/art_field.cc index 7e2007611..5a4ebd1f6 100644 --- a/runtime/mirror/art_field.cc +++ b/runtime/mirror/art_field.cc @@ -56,9 +56,7 @@ void ArtField::SetOffset(MemberOffset num_bytes) { } void ArtField::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_reflect_ArtField_.IsNull()) { - java_lang_reflect_ArtField_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_reflect_ArtField_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } // TODO: we could speed up the search if fields are ordered by offsets. diff --git a/runtime/mirror/art_method.cc b/runtime/mirror/art_method.cc index ff3822a17..288f6a60b 100644 --- a/runtime/mirror/art_method.cc +++ b/runtime/mirror/art_method.cc @@ -60,9 +60,7 @@ ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnabl void ArtMethod::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_reflect_ArtMethod_.IsNull()) { - java_lang_reflect_ArtMethod_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_reflect_ArtMethod_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } mirror::String* ArtMethod::GetNameAsString(Thread* self) { diff --git a/runtime/mirror/class.cc b/runtime/mirror/class.cc index bd3bfbf9f..ae684b162 100644 --- a/runtime/mirror/class.cc +++ b/runtime/mirror/class.cc @@ -52,9 +52,7 @@ void Class::ResetClass() { } void Class::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_Class_.IsNull()) { - java_lang_Class_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_Class_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } void Class::SetStatus(Status new_status, Thread* self) { diff --git a/runtime/mirror/reference.cc b/runtime/mirror/reference.cc index c36bd980f..35130e8b8 100644 --- a/runtime/mirror/reference.cc +++ b/runtime/mirror/reference.cc @@ -33,9 +33,7 @@ void Reference::ResetClass() { } void Reference::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_ref_Reference_.IsNull()) { - java_lang_ref_Reference_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_ref_Reference_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } } // namespace mirror diff --git a/runtime/mirror/stack_trace_element.cc b/runtime/mirror/stack_trace_element.cc index 1eb20f71a..c2a67e809 100644 --- a/runtime/mirror/stack_trace_element.cc +++ b/runtime/mirror/stack_trace_element.cc @@ -68,9 +68,7 @@ void StackTraceElement::Init(Handle declaring_class, Handle meth } void StackTraceElement::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_StackTraceElement_.IsNull()) { - java_lang_StackTraceElement_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_StackTraceElement_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } diff --git a/runtime/mirror/string.cc b/runtime/mirror/string.cc index 01599ae90..e199d0e2e 100644 --- a/runtime/mirror/string.cc +++ b/runtime/mirror/string.cc @@ -224,9 +224,7 @@ int32_t String::CompareTo(String* rhs) { } void String::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_String_.IsNull()) { - java_lang_String_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_String_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } } // namespace mirror diff --git a/runtime/mirror/throwable.cc b/runtime/mirror/throwable.cc index 93ed4d4da..61d85e2fe 100644 --- a/runtime/mirror/throwable.cc +++ b/runtime/mirror/throwable.cc @@ -138,9 +138,7 @@ void Throwable::ResetClass() { } void Throwable::VisitRoots(RootCallback* callback, void* arg) { - if (!java_lang_Throwable_.IsNull()) { - java_lang_Throwable_.VisitRoot(callback, arg, 0, kRootStickyClass); - } + java_lang_Throwable_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass)); } } // namespace mirror diff --git a/runtime/native/dalvik_system_VMRuntime.cc b/runtime/native/dalvik_system_VMRuntime.cc index 471aa9c03..599d97fb5 100644 --- a/runtime/native/dalvik_system_VMRuntime.cc +++ b/runtime/native/dalvik_system_VMRuntime.cc @@ -249,7 +249,7 @@ static void VMRuntime_runHeapTasks(JNIEnv* env, jobject) { typedef std::map StringTable; static void PreloadDexCachesStringsCallback(mirror::Object** root, void* arg, - uint32_t /*thread_id*/, RootType /*root_type*/) + const RootInfo& /*root_info*/) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { StringTable& table = *reinterpret_cast(arg); mirror::String* string = const_cast(*root)->AsString(); diff --git a/runtime/object_callbacks.h b/runtime/object_callbacks.h index 592deed1a..cf81cc509 100644 --- a/runtime/object_callbacks.h +++ b/runtime/object_callbacks.h @@ -35,34 +35,10 @@ namespace mirror { } // namespace mirror class StackVisitor; -enum RootType { - kRootUnknown = 0, - kRootJNIGlobal, - kRootJNILocal, - kRootJavaFrame, - kRootNativeStack, - kRootStickyClass, - kRootThreadBlock, - kRootMonitorUsed, - kRootThreadObject, - kRootInternedString, - kRootDebugger, - kRootVMInternal, - kRootJNIMonitor, -}; -std::ostream& operator<<(std::ostream& os, const RootType& root_type); - -// Returns the new address of the object, returns root if it has not moved. tid and root_type are -// only used by hprof. -typedef void (RootCallback)(mirror::Object** root, void* arg, uint32_t thread_id, - RootType root_type); // A callback for visiting an object in the heap. typedef void (ObjectCallback)(mirror::Object* obj, void* arg); // A callback used for marking an object, returns the new address of the object if the object moved. typedef mirror::Object* (MarkObjectCallback)(mirror::Object* obj, void* arg) WARN_UNUSED; -// A callback for verifying roots. -typedef void (VerifyRootCallback)(const mirror::Object* root, void* arg, size_t vreg, - const StackVisitor* visitor, RootType root_type); typedef void (MarkHeapReferenceCallback)(mirror::HeapReference* ref, void* arg); typedef void (DelayReferenceReferentCallback)(mirror::Class* klass, mirror::Reference* ref, void* arg); diff --git a/runtime/reference_table.cc b/runtime/reference_table.cc index c917d844a..e454b20d7 100644 --- a/runtime/reference_table.cc +++ b/runtime/reference_table.cc @@ -232,10 +232,9 @@ void ReferenceTable::Dump(std::ostream& os, Table& entries) { DumpSummaryLine(os, prev, GetElementCount(prev), identical, equiv); } -void ReferenceTable::VisitRoots(RootCallback* visitor, void* arg, uint32_t tid, - RootType root_type) { +void ReferenceTable::VisitRoots(RootCallback* visitor, void* arg, const RootInfo& root_info) { for (GcRoot& root : entries_) { - root.VisitRoot(visitor, arg, tid, root_type); + root.VisitRoot(visitor, arg, root_info); } } diff --git a/runtime/reference_table.h b/runtime/reference_table.h index 6cffa85d7..22cf1cd80 100644 --- a/runtime/reference_table.h +++ b/runtime/reference_table.h @@ -49,7 +49,7 @@ class ReferenceTable { void Dump(std::ostream& os) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - void VisitRoots(RootCallback* visitor, void* arg, uint32_t tid, RootType root_type); + void VisitRoots(RootCallback* visitor, void* arg, const RootInfo& root_info); private: typedef std::vector, diff --git a/runtime/runtime.cc b/runtime/runtime.cc index e531091fe..9dddf2f18 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -1221,33 +1221,15 @@ void Runtime::VisitConcurrentRoots(RootCallback* callback, void* arg, VisitRootF void Runtime::VisitNonThreadRoots(RootCallback* callback, void* arg) { java_vm_->VisitRoots(callback, arg); - if (!sentinel_.IsNull()) { - sentinel_.VisitRoot(callback, arg, 0, kRootVMInternal); - DCHECK(!sentinel_.IsNull()); - } - if (!pre_allocated_OutOfMemoryError_.IsNull()) { - pre_allocated_OutOfMemoryError_.VisitRoot(callback, arg, 0, kRootVMInternal); - DCHECK(!pre_allocated_OutOfMemoryError_.IsNull()); - } - resolution_method_.VisitRoot(callback, arg, 0, kRootVMInternal); - DCHECK(!resolution_method_.IsNull()); - if (!pre_allocated_NoClassDefFoundError_.IsNull()) { - pre_allocated_NoClassDefFoundError_.VisitRoot(callback, arg, 0, kRootVMInternal); - DCHECK(!pre_allocated_NoClassDefFoundError_.IsNull()); - } - if (HasImtConflictMethod()) { - imt_conflict_method_.VisitRoot(callback, arg, 0, kRootVMInternal); - } - if (!imt_unimplemented_method_.IsNull()) { - imt_unimplemented_method_.VisitRoot(callback, arg, 0, kRootVMInternal); - } - if (HasDefaultImt()) { - default_imt_.VisitRoot(callback, arg, 0, kRootVMInternal); - } + sentinel_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); + pre_allocated_OutOfMemoryError_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); + resolution_method_.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); + pre_allocated_NoClassDefFoundError_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); + imt_conflict_method_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); + imt_unimplemented_method_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); + default_imt_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { - if (!callee_save_methods_[i].IsNull()) { - callee_save_methods_[i].VisitRoot(callback, arg, 0, kRootVMInternal); - } + callee_save_methods_[i].VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); } verifier::MethodVerifier::VisitStaticRoots(callback, arg); { diff --git a/runtime/stack.cc b/runtime/stack.cc index aaa5b898b..3165898e8 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 diff --git a/runtime/stack.h b/runtime/stack.h index 15007af85..233e1c36a 100644 --- a/runtime/stack.h +++ b/runtime/stack.h @@ -22,6 +22,7 @@ #include "arch/instruction_set.h" #include "dex_file.h" +#include "gc_root.h" #include "mirror/object_reference.h" #include "throw_location.h" #include "utils.h" @@ -314,6 +315,19 @@ class ShadowFrame { DISALLOW_IMPLICIT_CONSTRUCTORS(ShadowFrame); }; +class JavaFrameRootInfo : public RootInfo { + public: + JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg) + : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) { + } + virtual void Describe(std::ostream& os) const OVERRIDE + SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); + + private: + const StackVisitor* const stack_visitor_; + const size_t vreg_; +}; + // The managed stack is used to record fragments of managed code stacks. Managed code stacks // may either be shadow frames or lists of frames using fixed frame sizes. Transition records are // necessary for transitions between code using different frame layouts and transitions into native diff --git a/runtime/thread.cc b/runtime/thread.cc index 6a1aeb56b..78a8bf81d 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -1151,8 +1151,7 @@ void Thread::AssertNoPendingExceptionForNewException(const char* msg) const { } } -static void MonitorExitVisitor(mirror::Object** object, void* arg, uint32_t /*thread_id*/, - RootType /*root_type*/) +static void MonitorExitVisitor(mirror::Object** object, void* arg, const RootInfo& /*root_info*/) NO_THREAD_SAFETY_ANALYSIS { Thread* self = reinterpret_cast(arg); mirror::Object* entered_monitor = *object; @@ -1171,7 +1170,7 @@ void Thread::Destroy() { if (tlsPtr_.jni_env != nullptr) { // On thread detach, all monitors entered with JNI MonitorEnter are automatically exited. - tlsPtr_.jni_env->monitors.VisitRoots(MonitorExitVisitor, self, 0, kRootVMInternal); + tlsPtr_.jni_env->monitors.VisitRoots(MonitorExitVisitor, self, RootInfo(kRootVMInternal)); // Release locally held global references which releasing may require the mutator lock. if (tlsPtr_.jpeer != nullptr) { // If pthread_create fails we don't have a jni env here. @@ -1333,7 +1332,7 @@ void Thread::HandleScopeVisitRoots(RootCallback* visitor, void* arg, uint32_t th mirror::Object* object = cur->GetReference(j); if (object != nullptr) { mirror::Object* old_obj = object; - visitor(&object, arg, thread_id, kRootNativeStack); + visitor(&object, arg, RootInfo(kRootNativeStack, thread_id)); if (old_obj != object) { cur->SetReference(j, object); } @@ -2219,8 +2218,8 @@ class RootCallbackVisitor { RootCallbackVisitor(RootCallback* callback, void* arg, uint32_t tid) : callback_(callback), arg_(arg), tid_(tid) {} - void operator()(mirror::Object** obj, size_t, const StackVisitor*) const { - callback_(obj, arg_, tid_, kRootJavaFrame); + void operator()(mirror::Object** obj, size_t vreg, const StackVisitor* stack_visitor) const { + callback_(obj, arg_, JavaFrameRootInfo(tid_, stack_visitor, vreg)); } private: @@ -2232,23 +2231,24 @@ class RootCallbackVisitor { void Thread::VisitRoots(RootCallback* visitor, void* arg) { uint32_t thread_id = GetThreadId(); if (tlsPtr_.opeer != nullptr) { - visitor(&tlsPtr_.opeer, arg, thread_id, kRootThreadObject); + visitor(&tlsPtr_.opeer, arg, RootInfo(kRootThreadObject, thread_id)); } if (tlsPtr_.exception != nullptr && tlsPtr_.exception != GetDeoptimizationException()) { - visitor(reinterpret_cast(&tlsPtr_.exception), arg, thread_id, kRootNativeStack); + visitor(reinterpret_cast(&tlsPtr_.exception), arg, + RootInfo(kRootNativeStack, thread_id)); } tlsPtr_.throw_location.VisitRoots(visitor, arg); if (tlsPtr_.monitor_enter_object != nullptr) { - visitor(&tlsPtr_.monitor_enter_object, arg, thread_id, kRootNativeStack); + visitor(&tlsPtr_.monitor_enter_object, arg, RootInfo(kRootNativeStack, thread_id)); } - tlsPtr_.jni_env->locals.VisitRoots(visitor, arg, thread_id, kRootJNILocal); - tlsPtr_.jni_env->monitors.VisitRoots(visitor, arg, thread_id, kRootJNIMonitor); + tlsPtr_.jni_env->locals.VisitRoots(visitor, arg, RootInfo(kRootJNILocal, thread_id)); + tlsPtr_.jni_env->monitors.VisitRoots(visitor, arg, RootInfo(kRootJNIMonitor, thread_id)); HandleScopeVisitRoots(visitor, arg, thread_id); if (tlsPtr_.debug_invoke_req != nullptr) { - tlsPtr_.debug_invoke_req->VisitRoots(visitor, arg, thread_id, kRootDebugger); + tlsPtr_.debug_invoke_req->VisitRoots(visitor, arg, RootInfo(kRootDebugger, thread_id)); } if (tlsPtr_.single_step_control != nullptr) { - tlsPtr_.single_step_control->VisitRoots(visitor, arg, thread_id, kRootDebugger); + tlsPtr_.single_step_control->VisitRoots(visitor, arg, RootInfo(kRootDebugger, thread_id)); } if (tlsPtr_.deoptimization_shadow_frame != nullptr) { RootCallbackVisitor visitorToCallback(visitor, arg, thread_id); @@ -2259,8 +2259,8 @@ void Thread::VisitRoots(RootCallback* visitor, void* arg) { } } if (tlsPtr_.shadow_frame_under_construction != nullptr) { - RootCallbackVisitor visitorToCallback(visitor, arg, thread_id); - ReferenceMapVisitor mapper(this, nullptr, visitorToCallback); + RootCallbackVisitor visitor_to_callback(visitor, arg, thread_id); + ReferenceMapVisitor mapper(this, nullptr, visitor_to_callback); for (ShadowFrame* shadow_frame = tlsPtr_.shadow_frame_under_construction; shadow_frame != nullptr; shadow_frame = shadow_frame->GetLink()) { @@ -2269,21 +2269,22 @@ void Thread::VisitRoots(RootCallback* visitor, void* arg) { } // Visit roots on this thread's stack Context* context = GetLongJumpContext(); - RootCallbackVisitor visitorToCallback(visitor, arg, thread_id); - ReferenceMapVisitor mapper(this, context, visitorToCallback); + RootCallbackVisitor visitor_to_callback(visitor, arg, thread_id); + ReferenceMapVisitor mapper(this, context, visitor_to_callback); mapper.WalkStack(); ReleaseLongJumpContext(context); for (instrumentation::InstrumentationStackFrame& frame : *GetInstrumentationStack()) { if (frame.this_object_ != nullptr) { - visitor(&frame.this_object_, arg, thread_id, kRootJavaFrame); + visitor(&frame.this_object_, arg, RootInfo(kRootVMInternal, thread_id)); } DCHECK(frame.method_ != nullptr); - visitor(reinterpret_cast(&frame.method_), arg, thread_id, kRootJavaFrame); + visitor(reinterpret_cast(&frame.method_), arg, + RootInfo(kRootVMInternal, thread_id)); } } -static void VerifyRoot(mirror::Object** root, void* /*arg*/, uint32_t /*thread_id*/, - RootType /*root_type*/) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { +static void VerifyRoot(mirror::Object** root, void* /*arg*/, const RootInfo& /*root_info*/) + SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { VerifyObject(*root); } diff --git a/runtime/thread_list.cc b/runtime/thread_list.cc index 0f6488342..6ec40d46d 100644 --- a/runtime/thread_list.cc +++ b/runtime/thread_list.cc @@ -1045,28 +1045,6 @@ void ThreadList::VisitRoots(RootCallback* callback, void* arg) const { } } -class VerifyRootWrapperArg { - public: - VerifyRootWrapperArg(VerifyRootCallback* callback, void* arg) : callback_(callback), arg_(arg) { - } - VerifyRootCallback* const callback_; - void* const arg_; -}; - -static void VerifyRootWrapperCallback(mirror::Object** root, void* arg, uint32_t /*thread_id*/, - RootType root_type) { - VerifyRootWrapperArg* wrapperArg = reinterpret_cast(arg); - wrapperArg->callback_(*root, wrapperArg->arg_, 0, NULL, root_type); -} - -void ThreadList::VerifyRoots(VerifyRootCallback* callback, void* arg) const { - VerifyRootWrapperArg wrapper(callback, arg); - MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); - for (const auto& thread : list_) { - thread->VisitRoots(VerifyRootWrapperCallback, &wrapper); - } -} - uint32_t ThreadList::AllocThreadId(Thread* self) { MutexLock mu(self, *Locks::allocated_thread_ids_lock_); for (size_t i = 0; i < allocated_ids_.size(); ++i) { diff --git a/runtime/thread_list.h b/runtime/thread_list.h index 43c065ae0..6751bf5a8 100644 --- a/runtime/thread_list.h +++ b/runtime/thread_list.h @@ -19,6 +19,7 @@ #include "base/histogram.h" #include "base/mutex.h" +#include "gc_root.h" #include "jni.h" #include "object_callbacks.h" @@ -125,9 +126,6 @@ class ThreadList { void VisitRoots(RootCallback* callback, void* arg) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - void VerifyRoots(VerifyRootCallback* callback, void* arg) const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - // Return a copy of the thread list. std::list GetList() EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) { return list_; diff --git a/runtime/throw_location.cc b/runtime/throw_location.cc index 04abe6445..4d2aec088 100644 --- a/runtime/throw_location.cc +++ b/runtime/throw_location.cc @@ -34,11 +34,11 @@ std::string ThrowLocation::Dump() const { void ThrowLocation::VisitRoots(RootCallback* visitor, void* arg) { if (this_object_ != nullptr) { - visitor(&this_object_, arg, 0, kRootVMInternal); + visitor(&this_object_, arg, RootInfo(kRootVMInternal)); DCHECK(this_object_ != nullptr); } if (method_ != nullptr) { - visitor(reinterpret_cast(&method_), arg, 0, kRootVMInternal); + visitor(reinterpret_cast(&method_), arg, RootInfo(kRootVMInternal)); DCHECK(method_ != nullptr); } } diff --git a/runtime/throw_location.h b/runtime/throw_location.h index b36eb67f9..bec0da490 100644 --- a/runtime/throw_location.h +++ b/runtime/throw_location.h @@ -20,6 +20,7 @@ #include "object_callbacks.h" #include "base/macros.h" #include "base/mutex.h" +#include "gc_root.h" #include #include diff --git a/runtime/transaction.cc b/runtime/transaction.cc index 478066f01..118c1a293 100644 --- a/runtime/transaction.cc +++ b/runtime/transaction.cc @@ -206,7 +206,7 @@ void Transaction::VisitObjectLogs(RootCallback* callback, void* arg) { it.second.VisitRoots(callback, arg); mirror::Object* old_root = it.first; mirror::Object* new_root = old_root; - callback(&new_root, arg, 0, kRootUnknown); + callback(&new_root, arg, RootInfo(kRootUnknown)); if (new_root != old_root) { moving_roots.push_back(std::make_pair(old_root, new_root)); } @@ -233,7 +233,7 @@ void Transaction::VisitArrayLogs(RootCallback* callback, void* arg) { mirror::Array* old_root = it.first; CHECK(!old_root->IsObjectArray()); mirror::Array* new_root = old_root; - callback(reinterpret_cast(&new_root), arg, 0, kRootUnknown); + callback(reinterpret_cast(&new_root), arg, RootInfo(kRootUnknown)); if (new_root != old_root) { moving_roots.push_back(std::make_pair(old_root, new_root)); } @@ -396,7 +396,7 @@ void Transaction::ObjectLog::VisitRoots(RootCallback* callback, void* arg) { mirror::Object* obj = reinterpret_cast(static_cast(field_value.value)); if (obj != nullptr) { - callback(&obj, arg, 0, kRootUnknown); + callback(&obj, arg, RootInfo(kRootUnknown)); field_value.value = reinterpret_cast(obj); } } @@ -441,7 +441,7 @@ void Transaction::InternStringLog::Undo(InternTable* intern_table) { } void Transaction::InternStringLog::VisitRoots(RootCallback* callback, void* arg) { - callback(reinterpret_cast(&str_), arg, 0, kRootInternedString); + callback(reinterpret_cast(&str_), arg, RootInfo(kRootInternedString)); } void Transaction::ArrayLog::LogValue(size_t index, uint64_t value) { diff --git a/runtime/transaction.h b/runtime/transaction.h index 566f231de..8c8284768 100644 --- a/runtime/transaction.h +++ b/runtime/transaction.h @@ -20,6 +20,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "base/value_object.h" +#include "gc_root.h" #include "object_callbacks.h" #include "offsets.h" #include "primitive.h" diff --git a/runtime/verifier/reg_type.cc b/runtime/verifier/reg_type.cc index 41541b5c8..351066519 100644 --- a/runtime/verifier/reg_type.cc +++ b/runtime/verifier/reg_type.cc @@ -779,9 +779,7 @@ void RegType::CheckInvariants() const { } void RegType::VisitRoots(RootCallback* callback, void* arg) const { - if (!klass_.IsNull()) { - callback(reinterpret_cast(&klass_), arg, 0, kRootUnknown); - } + klass_.VisitRootIfNonNull(callback, arg, RootInfo(kRootUnknown)); } void UninitializedThisReferenceType::CheckInvariants() const {