diff options
-rw-r--r-- | runtime/reference_table.cc | 96 | ||||
-rw-r--r-- | runtime/reference_table_test.cc | 73 |
2 files changed, 148 insertions, 21 deletions
diff --git a/runtime/reference_table.cc b/runtime/reference_table.cc index 16ed7fb7ee..1c975a453a 100644 --- a/runtime/reference_table.cc +++ b/runtime/reference_table.cc @@ -215,33 +215,87 @@ void ReferenceTable::Dump(std::ostream& os, Table& entries) { } std::sort(sorted_entries.begin(), sorted_entries.end(), GcRootComparator()); - // Dump a summary of the whole table. - os << " Summary:\n"; - size_t equiv = 0; - size_t identical = 0; - ObjPtr<mirror::Object> prev = nullptr; - for (GcRoot<mirror::Object>& root : sorted_entries) { - ObjPtr<mirror::Object> current = root.Read<kWithoutReadBarrier>(); - if (prev != nullptr) { - const size_t element_count = GetElementCount(prev); - if (current == prev) { + class SummaryElement { + public: + GcRoot<mirror::Object> root; + size_t equiv; + size_t identical; + + SummaryElement() : equiv(0), identical(0) {} + SummaryElement(SummaryElement&& ref) { + root = ref.root; + equiv = ref.equiv; + identical = ref.identical; + } + SummaryElement(const SummaryElement&) = default; + SummaryElement& operator=(SummaryElement&&) = default; + + void Reset(GcRoot<mirror::Object>& _root) { + root = _root; + equiv = 0; + identical = 0; + } + }; + std::vector<SummaryElement> sorted_summaries; + { + SummaryElement prev; + + for (GcRoot<mirror::Object>& root : sorted_entries) { + ObjPtr<mirror::Object> current = root.Read<kWithoutReadBarrier>(); + + if (UNLIKELY(prev.root.IsNull())) { + prev.Reset(root); + continue; + } + + ObjPtr<mirror::Object> prevObj = prev.root.Read<kWithoutReadBarrier>(); + if (current == prevObj) { // Same reference, added more than once. - ++identical; - } else if (current->GetClass() == prev->GetClass() && - GetElementCount(current) == element_count) { + ++prev.identical; + } else if (current->GetClass() == prevObj->GetClass() && + GetElementCount(current) == GetElementCount(prevObj)) { // Same class / element count, different object. - ++equiv; + ++prev.equiv; } else { - // Different class. - DumpSummaryLine(os, prev, element_count, identical, equiv); - equiv = 0; - identical = 0; + sorted_summaries.push_back(prev); + prev.Reset(root); } + prev.root = root; } - prev = current; + sorted_summaries.push_back(prev); + + // Compare summary elements, first by combined count, then by identical (indicating leaks), + // then by class (and size and address). + struct SummaryElementComparator { + GcRootComparator gc_root_cmp; + + bool operator()(SummaryElement& elem1, SummaryElement& elem2) const + NO_THREAD_SAFETY_ANALYSIS { + Locks::mutator_lock_->AssertSharedHeld(Thread::Current()); + + size_t count1 = elem1.equiv + elem1.identical; + size_t count2 = elem2.equiv + elem2.identical; + if (count1 != count2) { + return count1 > count2; + } + + if (elem1.identical != elem2.identical) { + return elem1.identical > elem2.identical; + } + + // Otherwise, compare the GC roots as before. + return gc_root_cmp(elem1.root, elem2.root); + } + }; + std::sort(sorted_summaries.begin(), sorted_summaries.end(), SummaryElementComparator()); + } + + // Dump a summary of the whole table. + os << " Summary:\n"; + for (SummaryElement& elem : sorted_summaries) { + ObjPtr<mirror::Object> elemObj = elem.root.Read<kWithoutReadBarrier>(); + DumpSummaryLine(os, elemObj, GetElementCount(elemObj), elem.identical, elem.equiv); } - // Handle the last entry. - DumpSummaryLine(os, prev, GetElementCount(prev), identical, equiv); } void ReferenceTable::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { diff --git a/runtime/reference_table_test.cc b/runtime/reference_table_test.cc index 489db9aa6c..d80a9b3dd1 100644 --- a/runtime/reference_table_test.cc +++ b/runtime/reference_table_test.cc @@ -166,4 +166,77 @@ TEST_F(ReferenceTableTest, Basics) { } } +static std::vector<size_t> FindAll(const std::string& haystack, const char* needle) { + std::vector<size_t> res; + size_t start = 0; + do { + size_t pos = haystack.find(needle, start); + if (pos == std::string::npos) { + break; + } + res.push_back(pos); + start = pos + 1; + } while (start < haystack.size()); + return res; +} + +TEST_F(ReferenceTableTest, SummaryOrder) { + // Check that the summary statistics are sorted. + ScopedObjectAccess soa(Thread::Current()); + + ReferenceTable rt("test", 0, 20); + + { + mirror::Object* s1 = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello"); + mirror::Object* s2 = mirror::String::AllocFromModifiedUtf8(soa.Self(), "world"); + + // 3 copies of s1, 2 copies of s2, interleaved. + for (size_t i = 0; i != 2; ++i) { + rt.Add(s1); + rt.Add(s2); + } + rt.Add(s1); + } + + { + // Differently sized byte arrays. Should be sorted by identical (non-unique cound). + mirror::Object* b1_1 = mirror::ByteArray::Alloc(soa.Self(), 1); + rt.Add(b1_1); + rt.Add(mirror::ByteArray::Alloc(soa.Self(), 2)); + rt.Add(b1_1); + rt.Add(mirror::ByteArray::Alloc(soa.Self(), 2)); + rt.Add(mirror::ByteArray::Alloc(soa.Self(), 1)); + rt.Add(mirror::ByteArray::Alloc(soa.Self(), 2)); + } + + rt.Add(mirror::CharArray::Alloc(soa.Self(), 0)); + + // Now dump, and ensure order. + std::ostringstream oss; + rt.Dump(oss); + + // Only do this on the part after Summary. + std::string base = oss.str(); + size_t summary_pos = base.find("Summary:"); + ASSERT_NE(summary_pos, std::string::npos); + + std::string haystack = base.substr(summary_pos); + + std::vector<size_t> strCounts = FindAll(haystack, "java.lang.String"); + std::vector<size_t> b1Counts = FindAll(haystack, "byte[] (1 elements)"); + std::vector<size_t> b2Counts = FindAll(haystack, "byte[] (2 elements)"); + std::vector<size_t> cCounts = FindAll(haystack, "char[]"); + + // Only one each. + EXPECT_EQ(1u, strCounts.size()); + EXPECT_EQ(1u, b1Counts.size()); + EXPECT_EQ(1u, b2Counts.size()); + EXPECT_EQ(1u, cCounts.size()); + + // Expect them to be in order. + EXPECT_LT(strCounts[0], b1Counts[0]); + EXPECT_LT(b1Counts[0], b2Counts[0]); + EXPECT_LT(b2Counts[0], cCounts[0]); +} + } // namespace art |