Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 "reference_table.h" |
| 18 | |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 19 | #include "base/mutex.h" |
Elliott Hughes | 6c1a394 | 2011-08-17 15:00:06 -0700 | [diff] [blame] | 20 | #include "indirect_reference_table.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 21 | #include "mirror/array.h" |
| 22 | #include "mirror/array-inl.h" |
| 23 | #include "mirror/class.h" |
| 24 | #include "mirror/class-inl.h" |
| 25 | #include "mirror/object-inl.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 26 | #include "mirror/string-inl.h" |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 27 | #include "runtime-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 28 | #include "thread.h" |
| 29 | #include "utils.h" |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 30 | |
| 31 | namespace art { |
| 32 | |
Elliott Hughes | bb1e8f0 | 2011-10-18 14:14:25 -0700 | [diff] [blame] | 33 | ReferenceTable::ReferenceTable(const char* name, size_t initial_size, size_t max_size) |
| 34 | : name_(name), max_size_(max_size) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 35 | CHECK_LE(initial_size, max_size); |
| 36 | entries_.reserve(initial_size); |
| 37 | } |
| 38 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 39 | ReferenceTable::~ReferenceTable() { |
| 40 | } |
| 41 | |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 42 | void ReferenceTable::Add(ObjPtr<mirror::Object> obj) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 43 | DCHECK(obj != nullptr); |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 44 | VerifyObject(obj); |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 45 | if (entries_.size() >= max_size_) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 46 | LOG(FATAL) << "ReferenceTable '" << name_ << "' " |
| 47 | << "overflowed (" << max_size_ << " entries)"; |
| 48 | } |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 49 | entries_.push_back(GcRoot<mirror::Object>(obj)); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 52 | void ReferenceTable::Remove(ObjPtr<mirror::Object> obj) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 53 | // We iterate backwards on the assumption that references are LIFO. |
| 54 | for (int i = entries_.size() - 1; i >= 0; --i) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 55 | ObjPtr<mirror::Object> entry = entries_[i].Read(); |
Hiroshi Yamauchi | ea2e1bd | 2014-06-18 13:47:35 -0700 | [diff] [blame] | 56 | if (entry == obj) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 57 | entries_.erase(entries_.begin() + i); |
| 58 | return; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
Carl Shapiro | 5b1982d | 2011-08-16 18:35:19 -0700 | [diff] [blame] | 63 | // If "obj" is an array, return the number of elements in the array. |
| 64 | // Otherwise, return zero. |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 65 | static size_t GetElementCount(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 66 | // We assume the special cleared value isn't an array in the if statement below. |
| 67 | DCHECK(!Runtime::Current()->GetClearedJniWeakGlobal()->IsArrayInstance()); |
| 68 | if (obj == nullptr || !obj->IsArrayInstance()) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | return obj->AsArray()->GetLength(); |
| 72 | } |
| 73 | |
Carl Shapiro | 5b1982d | 2011-08-16 18:35:19 -0700 | [diff] [blame] | 74 | // Log an object with some additional info. |
| 75 | // |
| 76 | // Pass in the number of elements in the array (or 0 if this is not an |
| 77 | // array object), and the number of additional objects that are identical |
| 78 | // or equivalent to the original. |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 79 | static void DumpSummaryLine(std::ostream& os, ObjPtr<mirror::Object> obj, size_t element_count, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 80 | int identical, int equiv) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 81 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 82 | if (obj == nullptr) { |
| 83 | os << " null reference (count=" << equiv << ")\n"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 84 | return; |
| 85 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 86 | if (Runtime::Current()->IsClearedJniWeakGlobal(obj)) { |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 87 | os << " cleared jweak (count=" << equiv << ")\n"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 88 | return; |
| 89 | } |
| 90 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 91 | std::string className(obj->PrettyTypeOf()); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 92 | if (obj->IsClass()) { |
| 93 | // We're summarizing multiple instances, so using the exemplar |
| 94 | // Class' type parameter here would be misleading. |
| 95 | className = "java.lang.Class"; |
| 96 | } |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 97 | if (element_count != 0) { |
| 98 | StringAppendF(&className, " (%zd elements)", element_count); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | size_t total = identical + equiv + 1; |
Elliott Hughes | 215f314 | 2012-01-19 00:22:47 -0800 | [diff] [blame] | 102 | std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 103 | if (identical + equiv != 0) { |
| 104 | StringAppendF(&msg, " (%d unique instances)", equiv + 1); |
| 105 | } |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 106 | os << " " << msg << "\n"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | size_t ReferenceTable::Size() const { |
| 110 | return entries_.size(); |
| 111 | } |
| 112 | |
Hiroshi Yamauchi | ea2e1bd | 2014-06-18 13:47:35 -0700 | [diff] [blame] | 113 | void ReferenceTable::Dump(std::ostream& os) { |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 114 | os << name_ << " reference table dump:\n"; |
| 115 | Dump(os, entries_); |
Elliott Hughes | 6c1a394 | 2011-08-17 15:00:06 -0700 | [diff] [blame] | 116 | } |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 117 | |
Hiroshi Yamauchi | ea2e1bd | 2014-06-18 13:47:35 -0700 | [diff] [blame] | 118 | void ReferenceTable::Dump(std::ostream& os, Table& entries) { |
Mathieu Chartier | 4c4d609 | 2015-01-22 17:02:27 -0800 | [diff] [blame] | 119 | // Compare GC roots, first by class, then size, then address. |
| 120 | struct GcRootComparator { |
| 121 | bool operator()(GcRoot<mirror::Object> root1, GcRoot<mirror::Object> root2) const |
| 122 | // TODO: enable analysis when analysis can work with the STL. |
| 123 | NO_THREAD_SAFETY_ANALYSIS { |
| 124 | Locks::mutator_lock_->AssertSharedHeld(Thread::Current()); |
| 125 | // These GC roots are already forwarded in ReferenceTable::Dump. We sort by class since there |
| 126 | // are no suspend points which can happen during the sorting process. This works since |
| 127 | // we are guaranteed that the addresses of obj1, obj2, obj1->GetClass, obj2->GetClass wont |
| 128 | // change during the sorting process. The classes are forwarded by ref->GetClass(). |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 129 | ObjPtr<mirror::Object> obj1 = root1.Read<kWithoutReadBarrier>(); |
| 130 | ObjPtr<mirror::Object> obj2 = root2.Read<kWithoutReadBarrier>(); |
Mathieu Chartier | 4c4d609 | 2015-01-22 17:02:27 -0800 | [diff] [blame] | 131 | DCHECK(obj1 != nullptr); |
| 132 | DCHECK(obj2 != nullptr); |
| 133 | Runtime* runtime = Runtime::Current(); |
| 134 | DCHECK(!runtime->IsClearedJniWeakGlobal(obj1)); |
| 135 | DCHECK(!runtime->IsClearedJniWeakGlobal(obj2)); |
| 136 | // Sort by class... |
| 137 | if (obj1->GetClass() != obj2->GetClass()) { |
| 138 | return obj1->GetClass() < obj2->GetClass(); |
| 139 | } |
| 140 | // ...then by size... |
| 141 | const size_t size1 = obj1->SizeOf(); |
| 142 | const size_t size2 = obj2->SizeOf(); |
| 143 | if (size1 != size2) { |
| 144 | return size1 < size2; |
| 145 | } |
| 146 | // ...and finally by address. |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 147 | return obj1.Ptr() < obj2.Ptr(); |
Mathieu Chartier | 4c4d609 | 2015-01-22 17:02:27 -0800 | [diff] [blame] | 148 | } |
| 149 | }; |
| 150 | |
Elliott Hughes | 6c1a394 | 2011-08-17 15:00:06 -0700 | [diff] [blame] | 151 | if (entries.empty()) { |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 152 | os << " (empty)\n"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 153 | return; |
| 154 | } |
| 155 | |
| 156 | // Dump the most recent N entries. |
| 157 | const size_t kLast = 10; |
Elliott Hughes | 6c1a394 | 2011-08-17 15:00:06 -0700 | [diff] [blame] | 158 | size_t count = entries.size(); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 159 | int first = count - kLast; |
| 160 | if (first < 0) { |
| 161 | first = 0; |
| 162 | } |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 163 | os << " Last " << (count - first) << " entries (of " << count << "):\n"; |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 164 | Runtime* runtime = Runtime::Current(); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 165 | for (int idx = count - 1; idx >= first; --idx) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 166 | ObjPtr<mirror::Object> ref = entries[idx].Read(); |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 167 | if (ref == nullptr) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 168 | continue; |
| 169 | } |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 170 | if (runtime->IsClearedJniWeakGlobal(ref)) { |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 171 | os << StringPrintf(" %5d: cleared jweak\n", idx); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 172 | continue; |
| 173 | } |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 174 | if (ref->GetClass() == nullptr) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 175 | // should only be possible right after a plain dvmMalloc(). |
| 176 | size_t size = ref->SizeOf(); |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 177 | os << StringPrintf(" %5d: %p (raw) (%zd bytes)\n", idx, ref.Ptr(), size); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 178 | continue; |
| 179 | } |
| 180 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 181 | std::string className(ref->PrettyTypeOf()); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 182 | |
| 183 | std::string extras; |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 184 | size_t element_count = GetElementCount(ref); |
| 185 | if (element_count != 0) { |
| 186 | StringAppendF(&extras, " (%zd elements)", element_count); |
| 187 | } else if (ref->GetClass()->IsStringClass()) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 188 | ObjPtr<mirror::String> s = ref->AsString(); |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 189 | std::string utf8(s->ToModifiedUtf8()); |
| 190 | if (s->GetLength() <= 16) { |
| 191 | StringAppendF(&extras, " \"%s\"", utf8.c_str()); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 192 | } else { |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 193 | StringAppendF(&extras, " \"%.16s... (%d chars)", utf8.c_str(), s->GetLength()); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 194 | } |
Andreas Gampe | a3bbf8b | 2016-09-27 18:45:02 -0700 | [diff] [blame] | 195 | } else if (ref->IsReferenceInstance()) { |
Mathieu Chartier | c4f3925 | 2016-10-05 18:32:08 -0700 | [diff] [blame] | 196 | ObjPtr<mirror::Object> referent = ref->AsReference()->GetReferent(); |
Andreas Gampe | a3bbf8b | 2016-09-27 18:45:02 -0700 | [diff] [blame] | 197 | if (referent == nullptr) { |
| 198 | extras = " (referent is null)"; |
| 199 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 200 | extras = StringPrintf(" (referent is a %s)", referent->PrettyTypeOf().c_str()); |
Andreas Gampe | a3bbf8b | 2016-09-27 18:45:02 -0700 | [diff] [blame] | 201 | } |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 202 | } |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 203 | os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 206 | // Make a copy of the table and sort it, only adding non null and not cleared elements. |
Hiroshi Yamauchi | ea2e1bd | 2014-06-18 13:47:35 -0700 | [diff] [blame] | 207 | Table sorted_entries; |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 208 | for (GcRoot<mirror::Object>& root : entries) { |
Mathieu Chartier | 4099b78 | 2014-12-08 12:59:27 -0800 | [diff] [blame] | 209 | if (!root.IsNull() && !runtime->IsClearedJniWeakGlobal(root.Read())) { |
Mathieu Chartier | 38ebea4 | 2014-12-08 11:50:36 -0800 | [diff] [blame] | 210 | sorted_entries.push_back(root); |
| 211 | } |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 212 | } |
| 213 | if (sorted_entries.empty()) { |
| 214 | return; |
| 215 | } |
Mathieu Chartier | 4c4d609 | 2015-01-22 17:02:27 -0800 | [diff] [blame] | 216 | std::sort(sorted_entries.begin(), sorted_entries.end(), GcRootComparator()); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 217 | |
Andreas Gampe | 6e970e7 | 2016-11-14 17:00:28 -0800 | [diff] [blame] | 218 | class SummaryElement { |
| 219 | public: |
| 220 | GcRoot<mirror::Object> root; |
| 221 | size_t equiv; |
| 222 | size_t identical; |
| 223 | |
| 224 | SummaryElement() : equiv(0), identical(0) {} |
| 225 | SummaryElement(SummaryElement&& ref) { |
| 226 | root = ref.root; |
| 227 | equiv = ref.equiv; |
| 228 | identical = ref.identical; |
| 229 | } |
| 230 | SummaryElement(const SummaryElement&) = default; |
| 231 | SummaryElement& operator=(SummaryElement&&) = default; |
| 232 | |
| 233 | void Reset(GcRoot<mirror::Object>& _root) { |
| 234 | root = _root; |
| 235 | equiv = 0; |
| 236 | identical = 0; |
| 237 | } |
| 238 | }; |
| 239 | std::vector<SummaryElement> sorted_summaries; |
| 240 | { |
| 241 | SummaryElement prev; |
| 242 | |
| 243 | for (GcRoot<mirror::Object>& root : sorted_entries) { |
| 244 | ObjPtr<mirror::Object> current = root.Read<kWithoutReadBarrier>(); |
| 245 | |
| 246 | if (UNLIKELY(prev.root.IsNull())) { |
| 247 | prev.Reset(root); |
| 248 | continue; |
| 249 | } |
| 250 | |
| 251 | ObjPtr<mirror::Object> prevObj = prev.root.Read<kWithoutReadBarrier>(); |
| 252 | if (current == prevObj) { |
| 253 | // Same reference, added more than once. |
| 254 | ++prev.identical; |
| 255 | } else if (current->GetClass() == prevObj->GetClass() && |
| 256 | GetElementCount(current) == GetElementCount(prevObj)) { |
| 257 | // Same class / element count, different object. |
| 258 | ++prev.equiv; |
| 259 | } else { |
| 260 | sorted_summaries.push_back(prev); |
| 261 | prev.Reset(root); |
| 262 | } |
| 263 | prev.root = root; |
| 264 | } |
| 265 | sorted_summaries.push_back(prev); |
| 266 | |
| 267 | // Compare summary elements, first by combined count, then by identical (indicating leaks), |
| 268 | // then by class (and size and address). |
| 269 | struct SummaryElementComparator { |
| 270 | GcRootComparator gc_root_cmp; |
| 271 | |
| 272 | bool operator()(SummaryElement& elem1, SummaryElement& elem2) const |
| 273 | NO_THREAD_SAFETY_ANALYSIS { |
| 274 | Locks::mutator_lock_->AssertSharedHeld(Thread::Current()); |
| 275 | |
| 276 | size_t count1 = elem1.equiv + elem1.identical; |
| 277 | size_t count2 = elem2.equiv + elem2.identical; |
| 278 | if (count1 != count2) { |
| 279 | return count1 > count2; |
| 280 | } |
| 281 | |
| 282 | if (elem1.identical != elem2.identical) { |
| 283 | return elem1.identical > elem2.identical; |
| 284 | } |
| 285 | |
| 286 | // Otherwise, compare the GC roots as before. |
| 287 | return gc_root_cmp(elem1.root, elem2.root); |
| 288 | } |
| 289 | }; |
| 290 | std::sort(sorted_summaries.begin(), sorted_summaries.end(), SummaryElementComparator()); |
| 291 | } |
| 292 | |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 293 | // Dump a summary of the whole table. |
Elliott Hughes | 73e66f7 | 2012-05-09 09:34:45 -0700 | [diff] [blame] | 294 | os << " Summary:\n"; |
Andreas Gampe | 6e970e7 | 2016-11-14 17:00:28 -0800 | [diff] [blame] | 295 | for (SummaryElement& elem : sorted_summaries) { |
| 296 | ObjPtr<mirror::Object> elemObj = elem.root.Read<kWithoutReadBarrier>(); |
| 297 | DumpSummaryLine(os, elemObj, GetElementCount(elemObj), elem.identical, elem.equiv); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 298 | } |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 299 | } |
| 300 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 301 | void ReferenceTable::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
Mathieu Chartier | 4809d0a | 2015-04-07 10:39:04 -0700 | [diff] [blame] | 302 | BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor(visitor, root_info); |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 303 | for (GcRoot<mirror::Object>& root : entries_) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 304 | buffered_visitor.VisitRoot(root); |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 308 | } // namespace art |