blob: bb35ec73d930859b05960cfc0cf827fb23e6ad6d [file] [log] [blame]
Jesse Wilsonc4824e62011-11-01 14:39:04 -04001/*
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/*
18 * Preparation and completion of hprof data generation. The output is
19 * written into two files and then combined. This is necessary because
20 * we generate some of the data (strings and classes) while we dump the
21 * heap, and some analysis tools require that the class and string data
22 * appear first.
23 */
24
25#include "hprof.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080026
Elliott Hughes622a6982012-06-08 17:58:54 -070027#include <cutils/open_memstream.h>
28#include <errno.h>
29#include <fcntl.h>
30#include <stdio.h>
31#include <string.h>
32#include <sys/time.h>
33#include <sys/uio.h>
34#include <time.h>
35#include <time.h>
36#include <unistd.h>
37
38#include <set>
39
Mathieu Chartierc7853442015-03-27 14:35:38 -070040#include "art_field-inl.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080041#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080042#include "base/stringprintf.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010043#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080044#include "base/unix_file/fd_file.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080045#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080046#include "common_throws.h"
Jesse Wilsonc4824e62011-11-01 14:39:04 -040047#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070048#include "dex_file-inl.h"
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080049#include "gc_root.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070050#include "gc/accounting/heap_bitmap.h"
Man Cao8c2ff642015-05-27 17:25:30 -070051#include "gc/allocation_record.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070052#include "gc/heap.h"
53#include "gc/space/space.h"
Elliott Hughes622a6982012-06-08 17:58:54 -070054#include "globals.h"
Mathieu Chartierad466ad2015-01-08 16:28:08 -080055#include "jdwp/jdwp.h"
56#include "jdwp/jdwp_priv.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080057#include "mirror/class.h"
58#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059#include "mirror/object-inl.h"
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -070060#include "os.h"
Elliott Hughes622a6982012-06-08 17:58:54 -070061#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070062#include "scoped_thread_state_change.h"
Elliott Hughes622a6982012-06-08 17:58:54 -070063#include "thread_list.h"
Jesse Wilsonc4824e62011-11-01 14:39:04 -040064
65namespace art {
66
67namespace hprof {
68
Mathieu Chartierad466ad2015-01-08 16:28:08 -080069static constexpr bool kDirectStream = true;
Jesse Wilson0c54ac12011-11-09 15:14:05 -050070
Andreas Gampe3a913092015-01-10 00:26:17 -080071static constexpr uint32_t kHprofTime = 0;
Andreas Gampe3a913092015-01-10 00:26:17 -080072static constexpr uint32_t kHprofNullThread = 0;
Elliott Hughes622a6982012-06-08 17:58:54 -070073
Andreas Gampe3a913092015-01-10 00:26:17 -080074static constexpr size_t kMaxObjectsPerSegment = 128;
75static constexpr size_t kMaxBytesPerSegment = 4096;
Elliott Hughes622a6982012-06-08 17:58:54 -070076
Andreas Gampe3a913092015-01-10 00:26:17 -080077// The static field-name for the synthetic object generated to account for class static overhead.
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -070078static constexpr const char* kClassOverheadName = "$classOverhead";
Elliott Hughes622a6982012-06-08 17:58:54 -070079
80enum HprofTag {
81 HPROF_TAG_STRING = 0x01,
82 HPROF_TAG_LOAD_CLASS = 0x02,
83 HPROF_TAG_UNLOAD_CLASS = 0x03,
84 HPROF_TAG_STACK_FRAME = 0x04,
85 HPROF_TAG_STACK_TRACE = 0x05,
86 HPROF_TAG_ALLOC_SITES = 0x06,
87 HPROF_TAG_HEAP_SUMMARY = 0x07,
88 HPROF_TAG_START_THREAD = 0x0A,
89 HPROF_TAG_END_THREAD = 0x0B,
90 HPROF_TAG_HEAP_DUMP = 0x0C,
91 HPROF_TAG_HEAP_DUMP_SEGMENT = 0x1C,
92 HPROF_TAG_HEAP_DUMP_END = 0x2C,
93 HPROF_TAG_CPU_SAMPLES = 0x0D,
94 HPROF_TAG_CONTROL_SETTINGS = 0x0E,
95};
96
97// Values for the first byte of HEAP_DUMP and HEAP_DUMP_SEGMENT records:
98enum HprofHeapTag {
99 // Traditional.
100 HPROF_ROOT_UNKNOWN = 0xFF,
101 HPROF_ROOT_JNI_GLOBAL = 0x01,
102 HPROF_ROOT_JNI_LOCAL = 0x02,
103 HPROF_ROOT_JAVA_FRAME = 0x03,
104 HPROF_ROOT_NATIVE_STACK = 0x04,
105 HPROF_ROOT_STICKY_CLASS = 0x05,
106 HPROF_ROOT_THREAD_BLOCK = 0x06,
107 HPROF_ROOT_MONITOR_USED = 0x07,
108 HPROF_ROOT_THREAD_OBJECT = 0x08,
109 HPROF_CLASS_DUMP = 0x20,
110 HPROF_INSTANCE_DUMP = 0x21,
111 HPROF_OBJECT_ARRAY_DUMP = 0x22,
112 HPROF_PRIMITIVE_ARRAY_DUMP = 0x23,
113
114 // Android.
115 HPROF_HEAP_DUMP_INFO = 0xfe,
116 HPROF_ROOT_INTERNED_STRING = 0x89,
117 HPROF_ROOT_FINALIZING = 0x8a, // Obsolete.
118 HPROF_ROOT_DEBUGGER = 0x8b,
119 HPROF_ROOT_REFERENCE_CLEANUP = 0x8c, // Obsolete.
120 HPROF_ROOT_VM_INTERNAL = 0x8d,
121 HPROF_ROOT_JNI_MONITOR = 0x8e,
122 HPROF_UNREACHABLE = 0x90, // Obsolete.
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700123 HPROF_PRIMITIVE_ARRAY_NODATA_DUMP = 0xc3, // Obsolete.
Elliott Hughes622a6982012-06-08 17:58:54 -0700124};
125
126enum HprofHeapId {
127 HPROF_HEAP_DEFAULT = 0,
128 HPROF_HEAP_ZYGOTE = 'Z',
Mathieu Chartierae1ad002014-07-18 17:58:22 -0700129 HPROF_HEAP_APP = 'A',
130 HPROF_HEAP_IMAGE = 'I',
Elliott Hughes622a6982012-06-08 17:58:54 -0700131};
132
133enum HprofBasicType {
134 hprof_basic_object = 2,
135 hprof_basic_boolean = 4,
136 hprof_basic_char = 5,
137 hprof_basic_float = 6,
138 hprof_basic_double = 7,
139 hprof_basic_byte = 8,
140 hprof_basic_short = 9,
141 hprof_basic_int = 10,
142 hprof_basic_long = 11,
143};
144
Ian Rogersef7d42f2014-01-06 12:55:46 -0800145typedef uint32_t HprofStringId;
146typedef uint32_t HprofClassObjectId;
Man Cao8c2ff642015-05-27 17:25:30 -0700147typedef uint32_t HprofClassSerialNumber;
148typedef uint32_t HprofStackTraceSerialNumber;
149typedef uint32_t HprofStackFrameId;
150static constexpr HprofStackTraceSerialNumber kHprofNullStackTrace = 0;
Elliott Hughes622a6982012-06-08 17:58:54 -0700151
Andreas Gampe3a913092015-01-10 00:26:17 -0800152class EndianOutput {
Elliott Hughes622a6982012-06-08 17:58:54 -0700153 public:
Andreas Gampe3a913092015-01-10 00:26:17 -0800154 EndianOutput() : length_(0), sum_length_(0), max_length_(0), started_(false) {}
155 virtual ~EndianOutput() {}
156
157 void StartNewRecord(uint8_t tag, uint32_t time) {
158 if (length_ > 0) {
159 EndRecord();
160 }
161 DCHECK_EQ(length_, 0U);
162 AddU1(tag);
163 AddU4(time);
164 AddU4(0xdeaddead); // Length, replaced on flush.
165 started_ = true;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700166 }
167
Andreas Gampe3a913092015-01-10 00:26:17 -0800168 void EndRecord() {
169 // Replace length in header.
170 if (started_) {
171 UpdateU4(sizeof(uint8_t) + sizeof(uint32_t),
172 length_ - sizeof(uint8_t) - 2 * sizeof(uint32_t));
173 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700174
Andreas Gampe3a913092015-01-10 00:26:17 -0800175 HandleEndRecord();
176
177 sum_length_ += length_;
178 max_length_ = std::max(max_length_, length_);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700179 length_ = 0;
Andreas Gampe3a913092015-01-10 00:26:17 -0800180 started_ = false;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700181 }
182
Andreas Gampe3a913092015-01-10 00:26:17 -0800183 void AddU1(uint8_t value) {
184 AddU1List(&value, 1);
185 }
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800186 void AddU2(uint16_t value) {
187 AddU2List(&value, 1);
Elliott Hughes622a6982012-06-08 17:58:54 -0700188 }
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800189 void AddU4(uint32_t value) {
190 AddU4List(&value, 1);
Elliott Hughes622a6982012-06-08 17:58:54 -0700191 }
192
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800193 void AddU8(uint64_t value) {
194 AddU8List(&value, 1);
Elliott Hughes622a6982012-06-08 17:58:54 -0700195 }
196
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800197 void AddObjectId(const mirror::Object* value) {
198 AddU4(PointerToLowMemUInt32(value));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800199 }
200
Man Cao8c2ff642015-05-27 17:25:30 -0700201 void AddStackTraceSerialNumber(HprofStackTraceSerialNumber value) {
202 AddU4(value);
203 }
204
Ian Rogersef7d42f2014-01-06 12:55:46 -0800205 // The ID for the synthetic object generated to account for class static overhead.
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800206 void AddClassStaticsId(const mirror::Class* value) {
207 AddU4(1 | PointerToLowMemUInt32(value));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800208 }
209
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800210 void AddJniGlobalRefId(jobject value) {
211 AddU4(PointerToLowMemUInt32(value));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800212 }
213
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800214 void AddClassId(HprofClassObjectId value) {
215 AddU4(value);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800216 }
217
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800218 void AddStringId(HprofStringId value) {
219 AddU4(value);
Elliott Hughes622a6982012-06-08 17:58:54 -0700220 }
221
Andreas Gampe3a913092015-01-10 00:26:17 -0800222 void AddU1List(const uint8_t* values, size_t count) {
223 HandleU1List(values, count);
224 length_ += count;
225 }
226 void AddU2List(const uint16_t* values, size_t count) {
227 HandleU2List(values, count);
228 length_ += count * sizeof(uint16_t);
229 }
230 void AddU4List(const uint32_t* values, size_t count) {
231 HandleU4List(values, count);
232 length_ += count * sizeof(uint32_t);
233 }
Andreas Gampeca714582015-04-03 19:41:34 -0700234 virtual void UpdateU4(size_t offset, uint32_t new_value ATTRIBUTE_UNUSED) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800235 DCHECK_LE(offset, length_ - 4);
236 }
237 void AddU8List(const uint64_t* values, size_t count) {
238 HandleU8List(values, count);
239 length_ += count * sizeof(uint64_t);
240 }
Elliott Hughes622a6982012-06-08 17:58:54 -0700241
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800242 void AddIdList(mirror::ObjectArray<mirror::Object>* values)
Mathieu Chartier90443472015-07-16 20:32:27 -0700243 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800244 const int32_t length = values->GetLength();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800245 for (int32_t i = 0; i < length; ++i) {
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800246 AddObjectId(values->GetWithoutChecks(i));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800247 }
Elliott Hughes622a6982012-06-08 17:58:54 -0700248 }
249
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800250 void AddUtf8String(const char* str) {
Elliott Hughes622a6982012-06-08 17:58:54 -0700251 // The terminating NUL character is NOT written.
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800252 AddU1List((const uint8_t*)str, strlen(str));
Elliott Hughes622a6982012-06-08 17:58:54 -0700253 }
254
Andreas Gampe3a913092015-01-10 00:26:17 -0800255 size_t Length() const {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700256 return length_;
257 }
Elliott Hughes622a6982012-06-08 17:58:54 -0700258
Andreas Gampe3a913092015-01-10 00:26:17 -0800259 size_t SumLength() const {
260 return sum_length_;
Elliott Hughes622a6982012-06-08 17:58:54 -0700261 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700262
Andreas Gampe3a913092015-01-10 00:26:17 -0800263 size_t MaxLength() const {
264 return max_length_;
265 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700266
Andreas Gampe3a913092015-01-10 00:26:17 -0800267 protected:
268 virtual void HandleU1List(const uint8_t* values ATTRIBUTE_UNUSED,
269 size_t count ATTRIBUTE_UNUSED) {
270 }
271 virtual void HandleU2List(const uint16_t* values ATTRIBUTE_UNUSED,
272 size_t count ATTRIBUTE_UNUSED) {
273 }
274 virtual void HandleU4List(const uint32_t* values ATTRIBUTE_UNUSED,
275 size_t count ATTRIBUTE_UNUSED) {
276 }
277 virtual void HandleU8List(const uint64_t* values ATTRIBUTE_UNUSED,
278 size_t count ATTRIBUTE_UNUSED) {
279 }
280 virtual void HandleEndRecord() {
281 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700282
Andreas Gampe3a913092015-01-10 00:26:17 -0800283 size_t length_; // Current record size.
284 size_t sum_length_; // Size of all data.
285 size_t max_length_; // Maximum seen length.
286 bool started_; // Was StartRecord called?
Elliott Hughes622a6982012-06-08 17:58:54 -0700287};
288
Andreas Gampe3a913092015-01-10 00:26:17 -0800289// This keeps things buffered until flushed.
290class EndianOutputBuffered : public EndianOutput {
291 public:
292 explicit EndianOutputBuffered(size_t reserve_size) {
293 buffer_.reserve(reserve_size);
294 }
295 virtual ~EndianOutputBuffered() {}
296
297 void UpdateU4(size_t offset, uint32_t new_value) OVERRIDE {
298 DCHECK_LE(offset, length_ - 4);
299 buffer_[offset + 0] = static_cast<uint8_t>((new_value >> 24) & 0xFF);
300 buffer_[offset + 1] = static_cast<uint8_t>((new_value >> 16) & 0xFF);
301 buffer_[offset + 2] = static_cast<uint8_t>((new_value >> 8) & 0xFF);
302 buffer_[offset + 3] = static_cast<uint8_t>((new_value >> 0) & 0xFF);
303 }
304
305 protected:
306 void HandleU1List(const uint8_t* values, size_t count) OVERRIDE {
307 DCHECK_EQ(length_, buffer_.size());
308 buffer_.insert(buffer_.end(), values, values + count);
309 }
310
311 void HandleU2List(const uint16_t* values, size_t count) OVERRIDE {
312 DCHECK_EQ(length_, buffer_.size());
313 for (size_t i = 0; i < count; ++i) {
314 uint16_t value = *values;
315 buffer_.push_back(static_cast<uint8_t>((value >> 8) & 0xFF));
316 buffer_.push_back(static_cast<uint8_t>((value >> 0) & 0xFF));
317 values++;
318 }
319 }
320
321 void HandleU4List(const uint32_t* values, size_t count) OVERRIDE {
322 DCHECK_EQ(length_, buffer_.size());
323 for (size_t i = 0; i < count; ++i) {
324 uint32_t value = *values;
325 buffer_.push_back(static_cast<uint8_t>((value >> 24) & 0xFF));
326 buffer_.push_back(static_cast<uint8_t>((value >> 16) & 0xFF));
327 buffer_.push_back(static_cast<uint8_t>((value >> 8) & 0xFF));
328 buffer_.push_back(static_cast<uint8_t>((value >> 0) & 0xFF));
329 values++;
330 }
331 }
332
333 void HandleU8List(const uint64_t* values, size_t count) OVERRIDE {
334 DCHECK_EQ(length_, buffer_.size());
335 for (size_t i = 0; i < count; ++i) {
336 uint64_t value = *values;
337 buffer_.push_back(static_cast<uint8_t>((value >> 56) & 0xFF));
338 buffer_.push_back(static_cast<uint8_t>((value >> 48) & 0xFF));
339 buffer_.push_back(static_cast<uint8_t>((value >> 40) & 0xFF));
340 buffer_.push_back(static_cast<uint8_t>((value >> 32) & 0xFF));
341 buffer_.push_back(static_cast<uint8_t>((value >> 24) & 0xFF));
342 buffer_.push_back(static_cast<uint8_t>((value >> 16) & 0xFF));
343 buffer_.push_back(static_cast<uint8_t>((value >> 8) & 0xFF));
344 buffer_.push_back(static_cast<uint8_t>((value >> 0) & 0xFF));
345 values++;
346 }
347 }
348
349 void HandleEndRecord() OVERRIDE {
350 DCHECK_EQ(buffer_.size(), length_);
351 if (kIsDebugBuild && started_) {
352 uint32_t stored_length =
353 static_cast<uint32_t>(buffer_[5]) << 24 |
354 static_cast<uint32_t>(buffer_[6]) << 16 |
355 static_cast<uint32_t>(buffer_[7]) << 8 |
356 static_cast<uint32_t>(buffer_[8]);
357 DCHECK_EQ(stored_length, length_ - sizeof(uint8_t) - 2 * sizeof(uint32_t));
358 }
359 HandleFlush(buffer_.data(), length_);
360 buffer_.clear();
361 }
362
363 virtual void HandleFlush(const uint8_t* buffer ATTRIBUTE_UNUSED, size_t length ATTRIBUTE_UNUSED) {
364 }
365
366 std::vector<uint8_t> buffer_;
367};
368
369class FileEndianOutput FINAL : public EndianOutputBuffered {
370 public:
371 FileEndianOutput(File* fp, size_t reserved_size)
372 : EndianOutputBuffered(reserved_size), fp_(fp), errors_(false) {
373 DCHECK(fp != nullptr);
374 }
375 ~FileEndianOutput() {
376 }
377
378 bool Errors() {
379 return errors_;
380 }
381
382 protected:
383 void HandleFlush(const uint8_t* buffer, size_t length) OVERRIDE {
384 if (!errors_) {
385 errors_ = !fp_->WriteFully(buffer, length);
386 }
387 }
388
389 private:
390 File* fp_;
391 bool errors_;
392};
393
394class NetStateEndianOutput FINAL : public EndianOutputBuffered {
395 public:
396 NetStateEndianOutput(JDWP::JdwpNetStateBase* net_state, size_t reserved_size)
397 : EndianOutputBuffered(reserved_size), net_state_(net_state) {
398 DCHECK(net_state != nullptr);
399 }
400 ~NetStateEndianOutput() {}
401
402 protected:
403 void HandleFlush(const uint8_t* buffer, size_t length) OVERRIDE {
404 std::vector<iovec> iov;
405 iov.push_back(iovec());
406 iov[0].iov_base = const_cast<void*>(reinterpret_cast<const void*>(buffer));
407 iov[0].iov_len = length;
408 net_state_->WriteBufferedPacketLocked(iov);
409 }
410
411 private:
412 JDWP::JdwpNetStateBase* net_state_;
413};
414
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700415#define __ output_->
Andreas Gampe3a913092015-01-10 00:26:17 -0800416
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700417class Hprof : public SingleRootVisitor {
Elliott Hughes622a6982012-06-08 17:58:54 -0700418 public:
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700419 Hprof(const char* output_filename, int fd, bool direct_to_ddms)
420 : filename_(output_filename),
421 fd_(fd),
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800422 direct_to_ddms_(direct_to_ddms) {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700423 LOG(INFO) << "hprof: heap dump \"" << filename_ << "\" starting...";
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500424 }
425
Andreas Gampe3a913092015-01-10 00:26:17 -0800426 void Dump()
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800427 REQUIRES(Locks::mutator_lock_)
428 REQUIRES(!Locks::heap_bitmap_lock_, !Locks::alloc_tracker_lock_) {
Man Cao8c2ff642015-05-27 17:25:30 -0700429 {
430 MutexLock mu(Thread::Current(), *Locks::alloc_tracker_lock_);
431 if (Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) {
432 PopulateAllocationTrackingTraces();
433 }
434 }
435
Andreas Gampe3a913092015-01-10 00:26:17 -0800436 // First pass to measure the size of the dump.
437 size_t overall_size;
438 size_t max_length;
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800439 {
Andreas Gampe3a913092015-01-10 00:26:17 -0800440 EndianOutput count_output;
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700441 output_ = &count_output;
442 ProcessHeap(false);
Andreas Gampe3a913092015-01-10 00:26:17 -0800443 overall_size = count_output.SumLength();
444 max_length = count_output.MaxLength();
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700445 output_ = nullptr;
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800446 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700447
Andreas Gampe3a913092015-01-10 00:26:17 -0800448 bool okay;
449 if (direct_to_ddms_) {
450 if (kDirectStream) {
451 okay = DumpToDdmsDirect(overall_size, max_length, CHUNK_TYPE("HPDS"));
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700452 } else {
Andreas Gampe3a913092015-01-10 00:26:17 -0800453 okay = DumpToDdmsBuffered(overall_size, max_length);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700454 }
Andreas Gampe3a913092015-01-10 00:26:17 -0800455 } else {
456 okay = DumpToFile(overall_size, max_length);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700457 }
458
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700459 if (okay) {
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800460 const uint64_t duration = NanoTime() - start_ns_;
461 LOG(INFO) << "hprof: heap dump completed (" << PrettySize(RoundUp(overall_size, KB))
462 << ") in " << PrettyDuration(duration)
463 << " objects " << total_objects_
464 << " objects with stack traces " << total_objects_with_stack_trace_;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700465 }
466 }
467
468 private:
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800469 static void VisitObjectCallback(mirror::Object* obj, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -0700470 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800471 DCHECK(obj != nullptr);
472 DCHECK(arg != nullptr);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700473 reinterpret_cast<Hprof*>(arg)->DumpHeapObject(obj);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700474 }
475
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700476 void DumpHeapObject(mirror::Object* obj)
Mathieu Chartier90443472015-07-16 20:32:27 -0700477 SHARED_REQUIRES(Locks::mutator_lock_);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700478
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700479 void DumpHeapClass(mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -0700480 SHARED_REQUIRES(Locks::mutator_lock_);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700481
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700482 void DumpHeapArray(mirror::Array* obj, mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -0700483 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe3a913092015-01-10 00:26:17 -0800484
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700485 void DumpHeapInstanceObject(mirror::Object* obj, mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -0700486 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe3a913092015-01-10 00:26:17 -0800487
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700488 void ProcessHeap(bool header_first)
Mathieu Chartier90443472015-07-16 20:32:27 -0700489 REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800490 // Reset current heap and object count.
491 current_heap_ = HPROF_HEAP_DEFAULT;
492 objects_in_segment_ = 0;
493
494 if (header_first) {
Man Cao8c2ff642015-05-27 17:25:30 -0700495 ProcessHeader(true);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700496 ProcessBody();
Andreas Gampe3a913092015-01-10 00:26:17 -0800497 } else {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700498 ProcessBody();
Man Cao8c2ff642015-05-27 17:25:30 -0700499 ProcessHeader(false);
Andreas Gampe3a913092015-01-10 00:26:17 -0800500 }
501 }
502
Mathieu Chartier90443472015-07-16 20:32:27 -0700503 void ProcessBody() REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700504 Runtime* const runtime = Runtime::Current();
Andreas Gampe3a913092015-01-10 00:26:17 -0800505 // Walk the roots and the heap.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700506 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime);
Andreas Gampe3a913092015-01-10 00:26:17 -0800507
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700508 runtime->VisitRoots(this);
509 runtime->VisitImageRoots(this);
510 runtime->GetHeap()->VisitObjectsPaused(VisitObjectCallback, this);
Andreas Gampe3a913092015-01-10 00:26:17 -0800511
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700512 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_END, kHprofTime);
513 output_->EndRecord();
Andreas Gampe3a913092015-01-10 00:26:17 -0800514 }
515
Mathieu Chartier90443472015-07-16 20:32:27 -0700516 void ProcessHeader(bool string_first) REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800517 // Write the header.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700518 WriteFixedHeader();
Andreas Gampe3a913092015-01-10 00:26:17 -0800519 // Write the string and class tables, and any stack traces, to the header.
520 // (jhat requires that these appear before any of the data in the body that refers to them.)
Man Cao8c2ff642015-05-27 17:25:30 -0700521 // jhat also requires the string table appear before class table and stack traces.
522 // However, WriteStackTraces() can modify the string table, so it's necessary to call
523 // WriteStringTable() last in the first pass, to compute the correct length of the output.
524 if (string_first) {
525 WriteStringTable();
526 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700527 WriteClassTable();
528 WriteStackTraces();
Man Cao8c2ff642015-05-27 17:25:30 -0700529 if (!string_first) {
530 WriteStringTable();
531 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700532 output_->EndRecord();
Andreas Gampe3a913092015-01-10 00:26:17 -0800533 }
534
Mathieu Chartier90443472015-07-16 20:32:27 -0700535 void WriteClassTable() SHARED_REQUIRES(Locks::mutator_lock_) {
Man Cao8c2ff642015-05-27 17:25:30 -0700536 for (const auto& p : classes_) {
537 mirror::Class* c = p.first;
538 HprofClassSerialNumber sn = p.second;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800539 CHECK(c != nullptr);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700540 output_->StartNewRecord(HPROF_TAG_LOAD_CLASS, kHprofTime);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700541 // LOAD CLASS format:
542 // U4: class serial number (always > 0)
543 // ID: class object ID. We use the address of the class object structure as its ID.
544 // U4: stack trace serial number
545 // ID: class name string ID
Man Cao8c2ff642015-05-27 17:25:30 -0700546 __ AddU4(sn);
Andreas Gampe3a913092015-01-10 00:26:17 -0800547 __ AddObjectId(c);
Man Cao8c2ff642015-05-27 17:25:30 -0700548 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(c));
Andreas Gampe3a913092015-01-10 00:26:17 -0800549 __ AddStringId(LookupClassNameId(c));
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700550 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700551 }
552
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700553 void WriteStringTable() {
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800554 for (const std::pair<std::string, HprofStringId>& p : strings_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800555 const std::string& string = p.first;
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800556 const size_t id = p.second;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700557
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700558 output_->StartNewRecord(HPROF_TAG_STRING, kHprofTime);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700559
560 // STRING format:
561 // ID: ID for this string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700562 // U1*: UTF8 characters for string (NOT null terminated)
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700563 // (the record format encodes the length)
Andreas Gampe3a913092015-01-10 00:26:17 -0800564 __ AddU4(id);
565 __ AddUtf8String(string.c_str());
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700566 }
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700567 }
568
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700569 void StartNewHeapDumpSegment() {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700570 // This flushes the old segment and starts a new one.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700571 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700572 objects_in_segment_ = 0;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700573 // Starting a new HEAP_DUMP resets the heap to default.
574 current_heap_ = HPROF_HEAP_DEFAULT;
575 }
576
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700577 void CheckHeapSegmentConstraints() {
578 if (objects_in_segment_ >= kMaxObjectsPerSegment || output_->Length() >= kMaxBytesPerSegment) {
579 StartNewHeapDumpSegment();
Andreas Gampe3a913092015-01-10 00:26:17 -0800580 }
581 }
582
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700583 void VisitRoot(mirror::Object* obj, const RootInfo& root_info)
Mathieu Chartier90443472015-07-16 20:32:27 -0700584 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe3a913092015-01-10 00:26:17 -0800585 void MarkRootObject(const mirror::Object* obj, jobject jni_obj, HprofHeapTag heap_tag,
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700586 uint32_t thread_serial);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700587
Mathieu Chartier90443472015-07-16 20:32:27 -0700588 HprofClassObjectId LookupClassId(mirror::Class* c) SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800589 if (c != nullptr) {
Man Cao8c2ff642015-05-27 17:25:30 -0700590 auto it = classes_.find(c);
591 if (it == classes_.end()) {
592 // first time to see this class
593 HprofClassSerialNumber sn = next_class_serial_number_++;
594 classes_.Put(c, sn);
595 // Make sure that we've assigned a string ID for this class' name
596 LookupClassNameId(c);
597 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800598 }
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800599 return PointerToLowMemUInt32(c);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700600 }
601
Man Cao8c2ff642015-05-27 17:25:30 -0700602 HprofStackTraceSerialNumber LookupStackTraceSerialNumber(const mirror::Object* obj)
Mathieu Chartier90443472015-07-16 20:32:27 -0700603 SHARED_REQUIRES(Locks::mutator_lock_) {
Man Cao8c2ff642015-05-27 17:25:30 -0700604 auto r = allocation_records_.find(obj);
605 if (r == allocation_records_.end()) {
606 return kHprofNullStackTrace;
607 } else {
608 const gc::AllocRecordStackTrace* trace = r->second;
609 auto result = traces_.find(trace);
610 CHECK(result != traces_.end());
611 return result->second;
612 }
613 }
614
Mathieu Chartier90443472015-07-16 20:32:27 -0700615 HprofStringId LookupStringId(mirror::String* string) SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700616 return LookupStringId(string->ToModifiedUtf8());
617 }
618
619 HprofStringId LookupStringId(const char* string) {
620 return LookupStringId(std::string(string));
621 }
622
623 HprofStringId LookupStringId(const std::string& string) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800624 auto it = strings_.find(string);
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700625 if (it != strings_.end()) {
626 return it->second;
627 }
628 HprofStringId id = next_string_id_++;
629 strings_.Put(string, id);
630 return id;
631 }
632
Mathieu Chartier90443472015-07-16 20:32:27 -0700633 HprofStringId LookupClassNameId(mirror::Class* c) SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700634 return LookupStringId(PrettyDescriptor(c));
635 }
636
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700637 void WriteFixedHeader() {
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500638 // Write the file header.
639 // U1: NUL-terminated magic string.
Andreas Gampe3a913092015-01-10 00:26:17 -0800640 const char magic[] = "JAVA PROFILE 1.0.3";
641 __ AddU1List(reinterpret_cast<const uint8_t*>(magic), sizeof(magic));
642
Calin Juravle32805172014-07-04 16:24:03 +0100643 // U4: size of identifiers. We're using addresses as IDs and our heap references are stored
644 // as uint32_t.
645 // Note of warning: hprof-conv hard-codes the size of identifiers to 4.
Andreas Gampe575e78c2014-11-03 23:41:03 -0800646 static_assert(sizeof(mirror::HeapReference<mirror::Object>) == sizeof(uint32_t),
647 "Unexpected HeapReference size");
Andreas Gampe3a913092015-01-10 00:26:17 -0800648 __ AddU4(sizeof(uint32_t));
649
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500650 // The current time, in milliseconds since 0:00 GMT, 1/1/70.
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700651 timeval now;
Andreas Gampe3a913092015-01-10 00:26:17 -0800652 const uint64_t nowMs = (gettimeofday(&now, nullptr) < 0) ? 0 :
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800653 (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000;
Andreas Gampe3a913092015-01-10 00:26:17 -0800654 // TODO: It seems it would be correct to use U8.
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500655 // U4: high word of the 64-bit time.
Andreas Gampe3a913092015-01-10 00:26:17 -0800656 __ AddU4(static_cast<uint32_t>(nowMs >> 32));
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500657 // U4: low word of the 64-bit time.
Andreas Gampe3a913092015-01-10 00:26:17 -0800658 __ AddU4(static_cast<uint32_t>(nowMs & 0xFFFFFFFF));
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500659 }
660
Mathieu Chartier90443472015-07-16 20:32:27 -0700661 void WriteStackTraces() SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700662 // Write a dummy stack trace record so the analysis tools don't freak out.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700663 output_->StartNewRecord(HPROF_TAG_STACK_TRACE, kHprofTime);
Man Cao8c2ff642015-05-27 17:25:30 -0700664 __ AddStackTraceSerialNumber(kHprofNullStackTrace);
Andreas Gampe3a913092015-01-10 00:26:17 -0800665 __ AddU4(kHprofNullThread);
666 __ AddU4(0); // no frames
Man Cao8c2ff642015-05-27 17:25:30 -0700667
668 // TODO: jhat complains "WARNING: Stack trace not found for serial # -1", but no trace should
669 // have -1 as its serial number (as long as HprofStackTraceSerialNumber doesn't overflow).
670 for (const auto& it : traces_) {
671 const gc::AllocRecordStackTrace* trace = it.first;
672 HprofStackTraceSerialNumber trace_sn = it.second;
673 size_t depth = trace->GetDepth();
674
675 // First write stack frames of the trace
676 for (size_t i = 0; i < depth; ++i) {
677 const gc::AllocRecordStackTraceElement* frame = &trace->GetStackElement(i);
678 ArtMethod* method = frame->GetMethod();
679 CHECK(method != nullptr);
680 output_->StartNewRecord(HPROF_TAG_STACK_FRAME, kHprofTime);
681 // STACK FRAME format:
682 // ID: stack frame ID. We use the address of the AllocRecordStackTraceElement object as its ID.
683 // ID: method name string ID
684 // ID: method signature string ID
685 // ID: source file name string ID
686 // U4: class serial number
687 // U4: >0, line number; 0, no line information available; -1, unknown location
688 auto frame_result = frames_.find(frame);
689 CHECK(frame_result != frames_.end());
690 __ AddU4(frame_result->second);
691 __ AddStringId(LookupStringId(method->GetName()));
692 __ AddStringId(LookupStringId(method->GetSignature().ToString()));
693 const char* source_file = method->GetDeclaringClassSourceFile();
694 if (source_file == nullptr) {
695 source_file = "";
696 }
697 __ AddStringId(LookupStringId(source_file));
698 auto class_result = classes_.find(method->GetDeclaringClass());
699 CHECK(class_result != classes_.end());
700 __ AddU4(class_result->second);
701 __ AddU4(frame->ComputeLineNumber());
702 }
703
704 // Then write the trace itself
705 output_->StartNewRecord(HPROF_TAG_STACK_TRACE, kHprofTime);
706 // STACK TRACE format:
707 // U4: stack trace serial number. We use the address of the AllocRecordStackTrace object as its serial number.
708 // U4: thread serial number. We use Thread::GetTid().
709 // U4: number of frames
710 // [ID]*: series of stack frame ID's
711 __ AddStackTraceSerialNumber(trace_sn);
712 __ AddU4(trace->GetTid());
713 __ AddU4(depth);
714 for (size_t i = 0; i < depth; ++i) {
715 const gc::AllocRecordStackTraceElement* frame = &trace->GetStackElement(i);
716 auto frame_result = frames_.find(frame);
717 CHECK(frame_result != frames_.end());
718 __ AddU4(frame_result->second);
719 }
720 }
Andreas Gampe3a913092015-01-10 00:26:17 -0800721 }
722
723 bool DumpToDdmsBuffered(size_t overall_size ATTRIBUTE_UNUSED, size_t max_length ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700724 REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800725 LOG(FATAL) << "Unimplemented";
726 UNREACHABLE();
727 // // Send the data off to DDMS.
728 // iovec iov[2];
729 // iov[0].iov_base = header_data_ptr_;
730 // iov[0].iov_len = header_data_size_;
731 // iov[1].iov_base = body_data_ptr_;
732 // iov[1].iov_len = body_data_size_;
733 // Dbg::DdmSendChunkV(CHUNK_TYPE("HPDS"), iov, 2);
734 }
735
736 bool DumpToFile(size_t overall_size, size_t max_length)
Mathieu Chartier90443472015-07-16 20:32:27 -0700737 REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800738 // Where exactly are we writing to?
739 int out_fd;
740 if (fd_ >= 0) {
741 out_fd = dup(fd_);
742 if (out_fd < 0) {
743 ThrowRuntimeException("Couldn't dump heap; dup(%d) failed: %s", fd_, strerror(errno));
744 return false;
745 }
746 } else {
747 out_fd = open(filename_.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0644);
748 if (out_fd < 0) {
749 ThrowRuntimeException("Couldn't dump heap; open(\"%s\") failed: %s", filename_.c_str(),
750 strerror(errno));
751 return false;
752 }
753 }
754
755 std::unique_ptr<File> file(new File(out_fd, filename_, true));
756 bool okay;
757 {
758 FileEndianOutput file_output(file.get(), max_length);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700759 output_ = &file_output;
760 ProcessHeap(true);
Andreas Gampe3a913092015-01-10 00:26:17 -0800761 okay = !file_output.Errors();
762
763 if (okay) {
Andreas Gampec515f212015-08-28 18:15:27 -0700764 // Check for expected size. Output is expected to be less-or-equal than first phase, see
765 // b/23521263.
766 DCHECK_LE(file_output.SumLength(), overall_size);
Andreas Gampe3a913092015-01-10 00:26:17 -0800767 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700768 output_ = nullptr;
Andreas Gampe3a913092015-01-10 00:26:17 -0800769 }
770
771 if (okay) {
772 okay = file->FlushCloseOrErase() == 0;
773 } else {
774 file->Erase();
775 }
776 if (!okay) {
777 std::string msg(StringPrintf("Couldn't dump heap; writing \"%s\" failed: %s",
778 filename_.c_str(), strerror(errno)));
779 ThrowRuntimeException("%s", msg.c_str());
780 LOG(ERROR) << msg;
781 }
782
783 return okay;
784 }
785
786 bool DumpToDdmsDirect(size_t overall_size, size_t max_length, uint32_t chunk_type)
Mathieu Chartier90443472015-07-16 20:32:27 -0700787 REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800788 CHECK(direct_to_ddms_);
789 JDWP::JdwpState* state = Dbg::GetJdwpState();
790 CHECK(state != nullptr);
791 JDWP::JdwpNetStateBase* net_state = state->netState;
792 CHECK(net_state != nullptr);
793
794 // Hold the socket lock for the whole time since we want this to be atomic.
795 MutexLock mu(Thread::Current(), *net_state->GetSocketLock());
796
797 // Prepare the Ddms chunk.
798 constexpr size_t kChunkHeaderSize = kJDWPHeaderLen + 8;
799 uint8_t chunk_header[kChunkHeaderSize] = { 0 };
800 state->SetupChunkHeader(chunk_type, overall_size, kChunkHeaderSize, chunk_header);
801
802 // Prepare the output and send the chunk header.
803 NetStateEndianOutput net_output(net_state, max_length);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700804 output_ = &net_output;
Andreas Gampe3a913092015-01-10 00:26:17 -0800805 net_output.AddU1List(chunk_header, kChunkHeaderSize);
806
807 // Write the dump.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700808 ProcessHeap(true);
Andreas Gampe3a913092015-01-10 00:26:17 -0800809
Andreas Gampec515f212015-08-28 18:15:27 -0700810 // Check for expected size. See DumpToFile for comment.
811 DCHECK_LE(net_output.SumLength(), overall_size + kChunkHeaderSize);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700812 output_ = nullptr;
Andreas Gampe3a913092015-01-10 00:26:17 -0800813
814 return true;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700815 }
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500816
Man Cao8c2ff642015-05-27 17:25:30 -0700817 void PopulateAllocationTrackingTraces()
Mathieu Chartier90443472015-07-16 20:32:27 -0700818 REQUIRES(Locks::mutator_lock_, Locks::alloc_tracker_lock_) {
Man Cao8c2ff642015-05-27 17:25:30 -0700819 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
820 CHECK(records != nullptr);
821 HprofStackTraceSerialNumber next_trace_sn = kHprofNullStackTrace + 1;
822 HprofStackFrameId next_frame_id = 0;
Man Cao42c3c332015-06-23 16:38:25 -0700823 size_t count = 0;
Man Cao8c2ff642015-05-27 17:25:30 -0700824
825 for (auto it = records->Begin(), end = records->End(); it != end; ++it) {
826 const mirror::Object* obj = it->first.Read();
Man Cao42c3c332015-06-23 16:38:25 -0700827 if (obj == nullptr) {
828 continue;
829 }
830 ++count;
Man Cao8c2ff642015-05-27 17:25:30 -0700831 const gc::AllocRecordStackTrace* trace = it->second->GetStackTrace();
832
833 // Copy the pair into a real hash map to speed up look up.
834 auto records_result = allocation_records_.emplace(obj, trace);
835 // The insertion should always succeed, i.e. no duplicate object pointers in "records"
836 CHECK(records_result.second);
837
838 // Generate serial numbers for traces, and IDs for frames.
839 auto traces_result = traces_.find(trace);
840 if (traces_result == traces_.end()) {
841 traces_.emplace(trace, next_trace_sn++);
842 // only check frames if the trace is newly discovered
843 for (size_t i = 0, depth = trace->GetDepth(); i < depth; ++i) {
844 const gc::AllocRecordStackTraceElement* frame = &trace->GetStackElement(i);
845 auto frames_result = frames_.find(frame);
846 if (frames_result == frames_.end()) {
847 frames_.emplace(frame, next_frame_id++);
848 }
849 }
850 }
851 }
852 CHECK_EQ(traces_.size(), next_trace_sn - kHprofNullStackTrace - 1);
853 CHECK_EQ(frames_.size(), next_frame_id);
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800854 total_objects_with_stack_trace_ = count;
Man Cao8c2ff642015-05-27 17:25:30 -0700855 }
856
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700857 // If direct_to_ddms_ is set, "filename_" and "fd" will be ignored.
858 // Otherwise, "filename_" must be valid, though if "fd" >= 0 it will
859 // only be used for debug messages.
860 std::string filename_;
861 int fd_;
862 bool direct_to_ddms_;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500863
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800864 uint64_t start_ns_ = NanoTime();
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700865
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800866 EndianOutput* output_ = nullptr;
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700867
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800868 HprofHeapId current_heap_ = HPROF_HEAP_DEFAULT; // Which heap we're currently dumping.
869 size_t objects_in_segment_ = 0;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700870
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800871 size_t total_objects_ = 0u;
872 size_t total_objects_with_stack_trace_ = 0u;
873
874 HprofStringId next_string_id_ = 0x400000;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800875 SafeMap<std::string, HprofStringId> strings_;
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -0800876 HprofClassSerialNumber next_class_serial_number_ = 1;
Man Cao8c2ff642015-05-27 17:25:30 -0700877 SafeMap<mirror::Class*, HprofClassSerialNumber> classes_;
878
879 std::unordered_map<const gc::AllocRecordStackTrace*, HprofStackTraceSerialNumber,
880 gc::HashAllocRecordTypesPtr<gc::AllocRecordStackTrace>,
881 gc::EqAllocRecordTypesPtr<gc::AllocRecordStackTrace>> traces_;
882 std::unordered_map<const gc::AllocRecordStackTraceElement*, HprofStackFrameId,
883 gc::HashAllocRecordTypesPtr<gc::AllocRecordStackTraceElement>,
884 gc::EqAllocRecordTypesPtr<gc::AllocRecordStackTraceElement>> frames_;
885 std::unordered_map<const mirror::Object*, const gc::AllocRecordStackTrace*> allocation_records_;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700886
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700887 friend class GcRootVisitor;
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -0700888 DISALLOW_COPY_AND_ASSIGN(Hprof);
889};
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500890
Andreas Gampe3a913092015-01-10 00:26:17 -0800891static HprofBasicType SignatureToBasicTypeAndSize(const char* sig, size_t* size_out) {
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500892 char c = sig[0];
893 HprofBasicType ret;
894 size_t size;
895
896 switch (c) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800897 case '[':
898 case 'L':
899 ret = hprof_basic_object;
900 size = 4;
901 break;
902 case 'Z':
903 ret = hprof_basic_boolean;
904 size = 1;
905 break;
906 case 'C':
907 ret = hprof_basic_char;
908 size = 2;
909 break;
910 case 'F':
911 ret = hprof_basic_float;
912 size = 4;
913 break;
914 case 'D':
915 ret = hprof_basic_double;
916 size = 8;
917 break;
918 case 'B':
919 ret = hprof_basic_byte;
920 size = 1;
921 break;
922 case 'S':
923 ret = hprof_basic_short;
924 size = 2;
925 break;
926 case 'I':
927 ret = hprof_basic_int;
928 size = 4;
929 break;
930 case 'J':
931 ret = hprof_basic_long;
932 size = 8;
933 break;
934 default:
935 LOG(FATAL) << "UNREACHABLE";
936 UNREACHABLE();
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500937 }
938
Andreas Gampe3a913092015-01-10 00:26:17 -0800939 if (size_out != nullptr) {
940 *size_out = size;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500941 }
942
943 return ret;
944}
945
946// Always called when marking objects, but only does
947// something when ctx->gc_scan_state_ is non-zero, which is usually
948// only true when marking the root set or unreachable
949// objects. Used to add rootset references to obj.
Andreas Gampe3a913092015-01-10 00:26:17 -0800950void Hprof::MarkRootObject(const mirror::Object* obj, jobject jni_obj, HprofHeapTag heap_tag,
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700951 uint32_t thread_serial) {
Andreas Gampe3a913092015-01-10 00:26:17 -0800952 if (heap_tag == 0) {
953 return;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500954 }
955
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700956 CheckHeapSegmentConstraints();
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500957
Andreas Gampe3a913092015-01-10 00:26:17 -0800958 switch (heap_tag) {
959 // ID: object ID
960 case HPROF_ROOT_UNKNOWN:
961 case HPROF_ROOT_STICKY_CLASS:
962 case HPROF_ROOT_MONITOR_USED:
963 case HPROF_ROOT_INTERNED_STRING:
964 case HPROF_ROOT_DEBUGGER:
965 case HPROF_ROOT_VM_INTERNAL:
966 __ AddU1(heap_tag);
967 __ AddObjectId(obj);
968 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500969
Andreas Gampe3a913092015-01-10 00:26:17 -0800970 // ID: object ID
971 // ID: JNI global ref ID
972 case HPROF_ROOT_JNI_GLOBAL:
973 __ AddU1(heap_tag);
974 __ AddObjectId(obj);
975 __ AddJniGlobalRefId(jni_obj);
976 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500977
Andreas Gampe3a913092015-01-10 00:26:17 -0800978 // ID: object ID
979 // U4: thread serial number
980 // U4: frame number in stack trace (-1 for empty)
981 case HPROF_ROOT_JNI_LOCAL:
982 case HPROF_ROOT_JNI_MONITOR:
983 case HPROF_ROOT_JAVA_FRAME:
984 __ AddU1(heap_tag);
985 __ AddObjectId(obj);
986 __ AddU4(thread_serial);
987 __ AddU4((uint32_t)-1);
988 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500989
Andreas Gampe3a913092015-01-10 00:26:17 -0800990 // ID: object ID
991 // U4: thread serial number
992 case HPROF_ROOT_NATIVE_STACK:
993 case HPROF_ROOT_THREAD_BLOCK:
994 __ AddU1(heap_tag);
995 __ AddObjectId(obj);
996 __ AddU4(thread_serial);
997 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -0500998
Andreas Gampe3a913092015-01-10 00:26:17 -0800999 // ID: thread object ID
1000 // U4: thread serial number
1001 // U4: stack trace serial number
1002 case HPROF_ROOT_THREAD_OBJECT:
1003 __ AddU1(heap_tag);
1004 __ AddObjectId(obj);
1005 __ AddU4(thread_serial);
1006 __ AddU4((uint32_t)-1); // xxx
1007 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001008
Andreas Gampe3a913092015-01-10 00:26:17 -08001009 case HPROF_CLASS_DUMP:
1010 case HPROF_INSTANCE_DUMP:
1011 case HPROF_OBJECT_ARRAY_DUMP:
1012 case HPROF_PRIMITIVE_ARRAY_DUMP:
1013 case HPROF_HEAP_DUMP_INFO:
1014 case HPROF_PRIMITIVE_ARRAY_NODATA_DUMP:
1015 // Ignored.
1016 break;
Elliott Hughes73e66f72012-05-09 09:34:45 -07001017
Andreas Gampe3a913092015-01-10 00:26:17 -08001018 case HPROF_ROOT_FINALIZING:
1019 case HPROF_ROOT_REFERENCE_CLEANUP:
1020 case HPROF_UNREACHABLE:
1021 LOG(FATAL) << "obsolete tag " << static_cast<int>(heap_tag);
1022 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001023 }
1024
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -07001025 ++objects_in_segment_;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001026}
1027
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001028// Use for visiting the GcRoots held live by ArtFields, ArtMethods, and ClassLoaders.
1029class GcRootVisitor {
1030 public:
1031 explicit GcRootVisitor(Hprof* hprof) : hprof_(hprof) {}
1032
1033 void operator()(mirror::Object* obj ATTRIBUTE_UNUSED,
1034 MemberOffset offset ATTRIBUTE_UNUSED,
1035 bool is_static ATTRIBUTE_UNUSED) const {}
1036
1037 // Note that these don't have read barriers. Its OK however since the GC is guaranteed to not be
1038 // running during the hprof dumping process.
1039 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root) const
1040 SHARED_REQUIRES(Locks::mutator_lock_) {
1041 if (!root->IsNull()) {
1042 VisitRoot(root);
1043 }
1044 }
1045
1046 void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
1047 SHARED_REQUIRES(Locks::mutator_lock_) {
1048 mirror::Object* obj = root->AsMirrorPtr();
1049 // The two cases are either classes or dex cache arrays. If it is a dex cache array, then use
1050 // VM internal. Otherwise the object is a declaring class of an ArtField or ArtMethod or a
1051 // class from a ClassLoader.
1052 hprof_->VisitRoot(obj, RootInfo(obj->IsClass() ? kRootStickyClass : kRootVMInternal));
1053 }
1054
1055
1056 private:
1057 Hprof* const hprof_;
1058};
1059
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001060void Hprof::DumpHeapObject(mirror::Object* obj) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001061 // Ignore classes that are retired.
1062 if (obj->IsClass() && obj->AsClass()->IsRetired()) {
1063 return;
1064 }
1065
Mathieu Chartierc9cd7ac2016-01-20 14:48:36 -08001066 ++total_objects_;
1067
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001068 GcRootVisitor visitor(this);
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001069 obj->VisitReferences(visitor, VoidFunctor());
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001070
Mathieu Chartiere7158112015-06-03 13:32:15 -07001071 gc::Heap* const heap = Runtime::Current()->GetHeap();
1072 const gc::space::ContinuousSpace* const space = heap->FindContinuousSpaceFromObject(obj, true);
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001073 HprofHeapId heap_type = HPROF_HEAP_APP;
1074 if (space != nullptr) {
1075 if (space->IsZygoteSpace()) {
1076 heap_type = HPROF_HEAP_ZYGOTE;
1077 } else if (space->IsImageSpace()) {
1078 heap_type = HPROF_HEAP_IMAGE;
1079 }
Mathieu Chartiere7158112015-06-03 13:32:15 -07001080 } else {
1081 const auto* los = heap->GetLargeObjectsSpace();
1082 if (los->Contains(obj) && los->IsZygoteLargeObject(Thread::Current(), obj)) {
1083 heap_type = HPROF_HEAP_ZYGOTE;
1084 }
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001085 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001086 CheckHeapSegmentConstraints();
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001087
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001088 if (heap_type != current_heap_) {
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001089 HprofStringId nameId;
1090
1091 // This object is in a different heap than the current one.
1092 // Emit a HEAP_DUMP_INFO tag to change heaps.
Andreas Gampe3a913092015-01-10 00:26:17 -08001093 __ AddU1(HPROF_HEAP_DUMP_INFO);
1094 __ AddU4(static_cast<uint32_t>(heap_type)); // uint32_t: heap type
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001095 switch (heap_type) {
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001096 case HPROF_HEAP_APP:
1097 nameId = LookupStringId("app");
1098 break;
1099 case HPROF_HEAP_ZYGOTE:
1100 nameId = LookupStringId("zygote");
1101 break;
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001102 case HPROF_HEAP_IMAGE:
1103 nameId = LookupStringId("image");
1104 break;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001105 default:
1106 // Internal error
1107 LOG(ERROR) << "Unexpected desiredHeap";
1108 nameId = LookupStringId("<ILLEGAL>");
1109 break;
1110 }
Andreas Gampe3a913092015-01-10 00:26:17 -08001111 __ AddStringId(nameId);
Mathieu Chartierae1ad002014-07-18 17:58:22 -07001112 current_heap_ = heap_type;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001113 }
1114
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001115 mirror::Class* c = obj->GetClass();
Andreas Gampe3a913092015-01-10 00:26:17 -08001116 if (c == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001117 // This object will bother HprofReader, because it has a null
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001118 // class, so just don't dump it. It could be
1119 // gDvm.unlinkedJavaLangClass or it could be an object just
1120 // allocated which hasn't been initialized yet.
1121 } else {
1122 if (obj->IsClass()) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001123 DumpHeapClass(obj->AsClass());
Elliott Hughese84278b2012-03-22 10:06:53 -07001124 } else if (c->IsArrayClass()) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001125 DumpHeapArray(obj->AsArray(), c);
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001126 } else {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001127 DumpHeapInstanceObject(obj, c);
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001128 }
1129 }
1130
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -07001131 ++objects_in_segment_;
Jesse Wilson0c54ac12011-11-09 15:14:05 -05001132}
1133
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001134void Hprof::DumpHeapClass(mirror::Class* klass) {
Sebastien Hertzca068b22015-04-07 10:28:53 +02001135 if (!klass->IsLoaded() && !klass->IsErroneous()) {
1136 // Class is allocated but not yet loaded: we cannot access its fields or super class.
1137 return;
1138 }
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001139 const size_t num_static_fields = klass->NumStaticFields();
1140 // Total class size including embedded IMT, embedded vtable, and static fields.
1141 const size_t class_size = klass->GetClassSize();
1142 // Class size excluding static fields (relies on reference fields being the first static fields).
1143 const size_t class_size_without_overhead = sizeof(mirror::Class);
1144 CHECK_LE(class_size_without_overhead, class_size);
1145 const size_t overhead_size = class_size - class_size_without_overhead;
1146
1147 if (overhead_size != 0) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001148 // Create a byte array to reflect the allocation of the
1149 // StaticField array at the end of this class.
1150 __ AddU1(HPROF_PRIMITIVE_ARRAY_DUMP);
1151 __ AddClassStaticsId(klass);
Man Cao8c2ff642015-05-27 17:25:30 -07001152 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(klass));
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001153 __ AddU4(overhead_size);
Andreas Gampe3a913092015-01-10 00:26:17 -08001154 __ AddU1(hprof_basic_byte);
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001155 for (size_t i = 0; i < overhead_size; ++i) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001156 __ AddU1(0);
1157 }
1158 }
1159
1160 __ AddU1(HPROF_CLASS_DUMP);
1161 __ AddClassId(LookupClassId(klass));
Man Cao8c2ff642015-05-27 17:25:30 -07001162 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(klass));
Andreas Gampe3a913092015-01-10 00:26:17 -08001163 __ AddClassId(LookupClassId(klass->GetSuperClass()));
1164 __ AddObjectId(klass->GetClassLoader());
1165 __ AddObjectId(nullptr); // no signer
1166 __ AddObjectId(nullptr); // no prot domain
1167 __ AddObjectId(nullptr); // reserved
1168 __ AddObjectId(nullptr); // reserved
1169 if (klass->IsClassClass()) {
1170 // ClassObjects have their static fields appended, so aren't all the same size.
1171 // But they're at least this size.
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001172 __ AddU4(class_size_without_overhead); // instance size
Jeff Hao0ce43532015-05-12 18:58:32 -07001173 } else if (klass->IsStringClass()) {
1174 // Strings are variable length with character data at the end like arrays.
1175 // This outputs the size of an empty string.
1176 __ AddU4(sizeof(mirror::String));
1177 } else if (klass->IsArrayClass() || klass->IsPrimitive()) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001178 __ AddU4(0);
1179 } else {
1180 __ AddU4(klass->GetObjectSize()); // instance size
1181 }
1182
1183 __ AddU2(0); // empty const pool
1184
1185 // Static fields
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001186 if (overhead_size == 0) {
1187 __ AddU2(static_cast<uint16_t>(0));
Andreas Gampe3a913092015-01-10 00:26:17 -08001188 } else {
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001189 __ AddU2(static_cast<uint16_t>(num_static_fields + 1));
1190 __ AddStringId(LookupStringId(kClassOverheadName));
Andreas Gampe3a913092015-01-10 00:26:17 -08001191 __ AddU1(hprof_basic_object);
1192 __ AddClassStaticsId(klass);
1193
Mathieu Chartiera6d3a7e2015-06-03 16:51:09 -07001194 for (size_t i = 0; i < num_static_fields; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001195 ArtField* f = klass->GetStaticField(i);
Andreas Gampe3a913092015-01-10 00:26:17 -08001196
1197 size_t size;
1198 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size);
1199 __ AddStringId(LookupStringId(f->GetName()));
1200 __ AddU1(t);
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001201 switch (t) {
1202 case hprof_basic_byte:
Mathieu Chartierff38c042015-03-06 11:33:36 -08001203 __ AddU1(f->GetByte(klass));
Andreas Gampe3a913092015-01-10 00:26:17 -08001204 break;
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001205 case hprof_basic_boolean:
1206 __ AddU1(f->GetBoolean(klass));
1207 break;
1208 case hprof_basic_char:
Mathieu Chartierff38c042015-03-06 11:33:36 -08001209 __ AddU2(f->GetChar(klass));
Andreas Gampe3a913092015-01-10 00:26:17 -08001210 break;
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001211 case hprof_basic_short:
1212 __ AddU2(f->GetShort(klass));
1213 break;
1214 case hprof_basic_float:
1215 case hprof_basic_int:
1216 case hprof_basic_object:
Andreas Gampe3a913092015-01-10 00:26:17 -08001217 __ AddU4(f->Get32(klass));
1218 break;
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001219 case hprof_basic_double:
1220 case hprof_basic_long:
Andreas Gampe3a913092015-01-10 00:26:17 -08001221 __ AddU8(f->Get64(klass));
1222 break;
1223 default:
1224 LOG(FATAL) << "Unexpected size " << size;
1225 UNREACHABLE();
1226 }
1227 }
1228 }
1229
1230 // Instance fields for this class (no superclass fields)
Mathieu Chartier7c1f53e2015-06-03 10:51:13 -07001231 int iFieldCount = klass->NumInstanceFields();
Jeff Hao848f70a2014-01-15 13:49:50 -08001232 if (klass->IsStringClass()) {
1233 __ AddU2((uint16_t)iFieldCount + 1);
1234 } else {
1235 __ AddU2((uint16_t)iFieldCount);
1236 }
Andreas Gampe3a913092015-01-10 00:26:17 -08001237 for (int i = 0; i < iFieldCount; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001238 ArtField* f = klass->GetInstanceField(i);
Andreas Gampe3a913092015-01-10 00:26:17 -08001239 __ AddStringId(LookupStringId(f->GetName()));
1240 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), nullptr);
1241 __ AddU1(t);
1242 }
Jeff Hao848f70a2014-01-15 13:49:50 -08001243 // Add native value character array for strings.
1244 if (klass->IsStringClass()) {
1245 __ AddStringId(LookupStringId("value"));
1246 __ AddU1(hprof_basic_object);
1247 }
Andreas Gampe3a913092015-01-10 00:26:17 -08001248}
1249
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001250void Hprof::DumpHeapArray(mirror::Array* obj, mirror::Class* klass) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001251 uint32_t length = obj->GetLength();
1252
1253 if (obj->IsObjectArray()) {
1254 // obj is an object array.
1255 __ AddU1(HPROF_OBJECT_ARRAY_DUMP);
1256
1257 __ AddObjectId(obj);
Man Cao8c2ff642015-05-27 17:25:30 -07001258 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(obj));
Andreas Gampe3a913092015-01-10 00:26:17 -08001259 __ AddU4(length);
1260 __ AddClassId(LookupClassId(klass));
1261
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001262 // Dump the elements, which are always objects or null.
Andreas Gampe3a913092015-01-10 00:26:17 -08001263 __ AddIdList(obj->AsObjectArray<mirror::Object>());
1264 } else {
1265 size_t size;
1266 HprofBasicType t = SignatureToBasicTypeAndSize(
1267 Primitive::Descriptor(klass->GetComponentType()->GetPrimitiveType()), &size);
1268
1269 // obj is a primitive array.
1270 __ AddU1(HPROF_PRIMITIVE_ARRAY_DUMP);
1271
1272 __ AddObjectId(obj);
Man Cao8c2ff642015-05-27 17:25:30 -07001273 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(obj));
Andreas Gampe3a913092015-01-10 00:26:17 -08001274 __ AddU4(length);
1275 __ AddU1(t);
1276
1277 // Dump the raw, packed element values.
1278 if (size == 1) {
1279 __ AddU1List(reinterpret_cast<const uint8_t*>(obj->GetRawData(sizeof(uint8_t), 0)), length);
1280 } else if (size == 2) {
1281 __ AddU2List(reinterpret_cast<const uint16_t*>(obj->GetRawData(sizeof(uint16_t), 0)), length);
1282 } else if (size == 4) {
1283 __ AddU4List(reinterpret_cast<const uint32_t*>(obj->GetRawData(sizeof(uint32_t), 0)), length);
1284 } else if (size == 8) {
1285 __ AddU8List(reinterpret_cast<const uint64_t*>(obj->GetRawData(sizeof(uint64_t), 0)), length);
1286 }
1287 }
1288}
1289
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001290void Hprof::DumpHeapInstanceObject(mirror::Object* obj, mirror::Class* klass) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001291 // obj is an instance object.
1292 __ AddU1(HPROF_INSTANCE_DUMP);
1293 __ AddObjectId(obj);
Man Cao8c2ff642015-05-27 17:25:30 -07001294 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(obj));
Andreas Gampe3a913092015-01-10 00:26:17 -08001295 __ AddClassId(LookupClassId(klass));
1296
1297 // Reserve some space for the length of the instance data, which we won't
1298 // know until we're done writing it.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001299 size_t size_patch_offset = output_->Length();
Andreas Gampe3a913092015-01-10 00:26:17 -08001300 __ AddU4(0x77777777);
1301
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001302 // What we will use for the string value if the object is a string.
1303 mirror::Object* string_value = nullptr;
1304
1305 // Write the instance data; fields for this class, followed by super class fields, and so on.
Mathieu Chartier7c1f53e2015-06-03 10:51:13 -07001306 do {
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001307 const size_t instance_fields = klass->NumInstanceFields();
1308 for (size_t i = 0; i < instance_fields; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001309 ArtField* f = klass->GetInstanceField(i);
Andreas Gampe3a913092015-01-10 00:26:17 -08001310 size_t size;
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001311 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size);
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001312 switch (t) {
1313 case hprof_basic_byte:
Mathieu Chartierff38c042015-03-06 11:33:36 -08001314 __ AddU1(f->GetByte(obj));
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001315 break;
1316 case hprof_basic_boolean:
1317 __ AddU1(f->GetBoolean(obj));
1318 break;
1319 case hprof_basic_char:
Mathieu Chartierff38c042015-03-06 11:33:36 -08001320 __ AddU2(f->GetChar(obj));
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001321 break;
1322 case hprof_basic_short:
1323 __ AddU2(f->GetShort(obj));
1324 break;
1325 case hprof_basic_float:
1326 case hprof_basic_int:
1327 case hprof_basic_object:
Andreas Gampe3a913092015-01-10 00:26:17 -08001328 __ AddU4(f->Get32(obj));
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001329 break;
1330 case hprof_basic_double:
1331 case hprof_basic_long:
Andreas Gampe3a913092015-01-10 00:26:17 -08001332 __ AddU8(f->Get64(obj));
Mathieu Chartier15f345c2015-03-06 12:45:44 -08001333 break;
Andreas Gampe3a913092015-01-10 00:26:17 -08001334 }
1335 }
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001336 // Add value field for String if necessary.
1337 if (klass->IsStringClass()) {
1338 mirror::String* s = obj->AsString();
1339 if (s->GetLength() == 0) {
1340 // If string is empty, use an object-aligned address within the string for the value.
1341 string_value = reinterpret_cast<mirror::Object*>(
1342 reinterpret_cast<uintptr_t>(s) + kObjectAlignment);
1343 } else {
1344 string_value = reinterpret_cast<mirror::Object*>(s->GetValue());
1345 }
1346 __ AddObjectId(string_value);
1347 }
Andreas Gampe3a913092015-01-10 00:26:17 -08001348
1349 klass = klass->GetSuperClass();
Mathieu Chartier7c1f53e2015-06-03 10:51:13 -07001350 } while (klass != nullptr);
Andreas Gampe3a913092015-01-10 00:26:17 -08001351
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001352 // Patch the instance field length.
1353 __ UpdateU4(size_patch_offset, output_->Length() - (size_patch_offset + 4));
1354
Jeff Hao848f70a2014-01-15 13:49:50 -08001355 // Output native value character array for strings.
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001356 CHECK_EQ(obj->IsString(), string_value != nullptr);
1357 if (string_value != nullptr) {
Jeff Hao848f70a2014-01-15 13:49:50 -08001358 mirror::String* s = obj->AsString();
Jeff Hao848f70a2014-01-15 13:49:50 -08001359 __ AddU1(HPROF_PRIMITIVE_ARRAY_DUMP);
Mathieu Chartier07d7eab2015-06-23 15:45:15 -07001360 __ AddObjectId(string_value);
Man Cao8c2ff642015-05-27 17:25:30 -07001361 __ AddStackTraceSerialNumber(LookupStackTraceSerialNumber(obj));
Jeff Hao848f70a2014-01-15 13:49:50 -08001362 __ AddU4(s->GetLength());
1363 __ AddU1(hprof_basic_char);
1364 __ AddU2List(s->GetValue(), s->GetLength());
Jeff Hao848f70a2014-01-15 13:49:50 -08001365 }
Andreas Gampe3a913092015-01-10 00:26:17 -08001366}
1367
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001368void Hprof::VisitRoot(mirror::Object* obj, const RootInfo& info) {
Jesse Wilson0b075f12011-11-09 10:57:41 -05001369 static const HprofHeapTag xlate[] = {
1370 HPROF_ROOT_UNKNOWN,
1371 HPROF_ROOT_JNI_GLOBAL,
1372 HPROF_ROOT_JNI_LOCAL,
1373 HPROF_ROOT_JAVA_FRAME,
1374 HPROF_ROOT_NATIVE_STACK,
1375 HPROF_ROOT_STICKY_CLASS,
1376 HPROF_ROOT_THREAD_BLOCK,
1377 HPROF_ROOT_MONITOR_USED,
1378 HPROF_ROOT_THREAD_OBJECT,
1379 HPROF_ROOT_INTERNED_STRING,
1380 HPROF_ROOT_FINALIZING,
1381 HPROF_ROOT_DEBUGGER,
1382 HPROF_ROOT_REFERENCE_CLEANUP,
1383 HPROF_ROOT_VM_INTERNAL,
1384 HPROF_ROOT_JNI_MONITOR,
1385 };
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -08001386 CHECK_LT(info.GetType(), sizeof(xlate) / sizeof(HprofHeapTag));
Andreas Gampe3a913092015-01-10 00:26:17 -08001387 if (obj == nullptr) {
Jesse Wilson0b075f12011-11-09 10:57:41 -05001388 return;
1389 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001390 MarkRootObject(obj, 0, xlate[info.GetType()], info.GetThreadId());
Jesse Wilsonc4824e62011-11-01 14:39:04 -04001391}
1392
Elliott Hughesdcfdd2b2012-07-09 18:27:46 -07001393// If "direct_to_ddms" is true, the other arguments are ignored, and data is
1394// sent directly to DDMS.
1395// If "fd" is >= 0, the output will be written to that file descriptor.
1396// Otherwise, "filename" is used to create an output file.
1397void DumpHeap(const char* filename, int fd, bool direct_to_ddms) {
Andreas Gampe3a913092015-01-10 00:26:17 -08001398 CHECK(filename != nullptr);
Jesse Wilsonc4824e62011-11-01 14:39:04 -04001399
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08001400 Thread* self = Thread::Current();
1401 gc::Heap* heap = Runtime::Current()->GetHeap();
1402 if (heap->IsGcConcurrentAndMoving()) {
1403 // Need to take a heap dump while GC isn't running. See the
1404 // comment in Heap::VisitObjects().
1405 heap->IncrementDisableMovingGC(self);
1406 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001407 {
1408 ScopedSuspendAll ssa(__FUNCTION__, true /* long suspend */);
1409 Hprof hprof(filename, fd, direct_to_ddms);
1410 hprof.Dump();
1411 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08001412 if (heap->IsGcConcurrentAndMoving()) {
1413 heap->DecrementDisableMovingGC(self);
1414 }
Jesse Wilsonc4824e62011-11-01 14:39:04 -04001415}
1416
Mathieu Chartierad466ad2015-01-08 16:28:08 -08001417} // namespace hprof
Jesse Wilsonc4824e62011-11-01 14:39:04 -04001418} // namespace art