52a736ee38
Review URL: https://codereview.chromium.org//23903034 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27346 260f80e4-7a28-3924-810f-c04153c831b5
209 lines
6.0 KiB
C++
209 lines
6.0 KiB
C++
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/heap_histogram.h"
|
|
|
|
#include "platform/assert.h"
|
|
#include "vm/flags.h"
|
|
#include "vm/object.h"
|
|
#include "vm/json_stream.h"
|
|
|
|
namespace dart {
|
|
|
|
DEFINE_FLAG(bool, print_object_histogram, false,
|
|
"Print average object histogram at isolate shutdown");
|
|
|
|
class ObjectHistogramVisitor : public ObjectVisitor {
|
|
public:
|
|
explicit ObjectHistogramVisitor(Isolate* isolate) : ObjectVisitor(isolate) { }
|
|
|
|
virtual void VisitObject(RawObject* obj) {
|
|
isolate()->object_histogram()->Add(obj);
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(ObjectHistogramVisitor);
|
|
};
|
|
|
|
|
|
void ObjectHistogram::Collect() {
|
|
major_gc_count_++;
|
|
ObjectHistogramVisitor object_visitor(isolate_);
|
|
isolate_->heap()->IterateObjects(&object_visitor);
|
|
}
|
|
|
|
|
|
ObjectHistogram::ObjectHistogram(Isolate* isolate) {
|
|
isolate_ = isolate;
|
|
major_gc_count_ = 0;
|
|
table_length_ = 512;
|
|
table_ = reinterpret_cast<Element*>(
|
|
calloc(table_length_, sizeof(Element))); // NOLINT
|
|
for (intptr_t index = 0; index < table_length_; index++) {
|
|
table_[index].class_id_ = index;
|
|
}
|
|
}
|
|
|
|
|
|
ObjectHistogram::~ObjectHistogram() {
|
|
free(table_);
|
|
}
|
|
|
|
|
|
void ObjectHistogram::RegisterClass(const Class& cls) {
|
|
intptr_t class_id = cls.id();
|
|
if (class_id < table_length_) return;
|
|
// Resize the table.
|
|
intptr_t new_table_length = table_length_ * 2;
|
|
Element* new_table = reinterpret_cast<Element*>(
|
|
realloc(table_, new_table_length * sizeof(Element))); // NOLINT
|
|
for (intptr_t i = table_length_; i < new_table_length; i++) {
|
|
new_table[i].class_id_ = i;
|
|
new_table[i].count_ = 0;
|
|
new_table[i].size_ = 0;
|
|
}
|
|
table_ = new_table;
|
|
table_length_ = new_table_length;
|
|
ASSERT(class_id < table_length_);
|
|
}
|
|
|
|
|
|
void ObjectHistogram::Add(RawObject* obj) {
|
|
intptr_t class_id = obj->GetClassId();
|
|
if (class_id == kFreeListElement) return;
|
|
ASSERT(class_id < table_length_);
|
|
table_[class_id].Add(obj->Size());
|
|
}
|
|
|
|
|
|
int ObjectHistogram::compare(const Element** a, const Element** b) {
|
|
return (*b)->size_ - (*a)->size_;
|
|
}
|
|
|
|
|
|
ObjectHistogram::Element** ObjectHistogram::GetSortedArray(
|
|
intptr_t* array_length) {
|
|
intptr_t length = 0;
|
|
for (intptr_t index = 0; index < table_length_; index++) {
|
|
if (table_[index].count_ > 0) length++;
|
|
}
|
|
// Then add them to a new array and sort.
|
|
Element** array = reinterpret_cast<Element**>(
|
|
calloc(length, sizeof(Element*))); // NOLINT
|
|
intptr_t pos = 0;
|
|
for (intptr_t index = 0; index < table_length_; index++) {
|
|
if (table_[index].count_ > 0) array[pos++] = &table_[index];
|
|
}
|
|
typedef int (*CmpFunc)(const void*, const void*);
|
|
qsort(array, length, sizeof(Element*), // NOLINT
|
|
reinterpret_cast<CmpFunc>(compare));
|
|
|
|
*array_length = length;
|
|
return array;
|
|
}
|
|
|
|
void ObjectHistogram::Print() {
|
|
OS::Print("Printing Object Histogram\n");
|
|
OS::Print("____bytes___count_description____________\n");
|
|
// First count the number of non empty entries.
|
|
|
|
intptr_t length = 0;
|
|
Element** array = NULL;
|
|
|
|
array = GetSortedArray(&length);
|
|
ASSERT(array != NULL);
|
|
|
|
// Finally print the sorted array.
|
|
Class& cls = Class::Handle();
|
|
String& str = String::Handle();
|
|
Library& lib = Library::Handle();
|
|
for (intptr_t pos = 0; pos < length; pos++) {
|
|
Element* e = array[pos];
|
|
if (e->count_ > 0) {
|
|
cls = isolate_->class_table()->At(e->class_id_);
|
|
str = cls.Name();
|
|
lib = cls.library();
|
|
OS::Print("%9" Pd " %7" Pd " ",
|
|
e->size_ / major_gc_count_,
|
|
e->count_ / major_gc_count_);
|
|
if (e->class_id_ < kInstanceCid) {
|
|
OS::Print("`%s`", str.ToCString()); // VM names.
|
|
} else {
|
|
OS::Print("%s", str.ToCString());
|
|
}
|
|
if (lib.IsNull()) {
|
|
OS::Print("\n");
|
|
} else {
|
|
str = lib.url();
|
|
OS::Print(", library \'%s\'\n", str.ToCString());
|
|
}
|
|
}
|
|
}
|
|
// Deallocate the array for sorting.
|
|
free(array);
|
|
}
|
|
|
|
void ObjectHistogram::PrintToJSONStream(JSONStream* stream) {
|
|
intptr_t length = 0;
|
|
Element** array = NULL;
|
|
|
|
array = GetSortedArray(&length);
|
|
ASSERT(array != NULL);
|
|
|
|
// Finally print the sorted array.
|
|
Class& cls = Class::Handle();
|
|
String& str = String::Handle();
|
|
Library& lib = Library::Handle();
|
|
|
|
intptr_t size_sum = 0;
|
|
intptr_t count_sum = 0;
|
|
JSONObject jsobj(stream);
|
|
jsobj.AddProperty("type", "ObjectHistogram");
|
|
{ // TODO(johnmccutchan): Why is this empty array needed here?
|
|
JSONArray jsarr(&jsobj, "properties");
|
|
jsarr.AddValue("size");
|
|
jsarr.AddValue("count");
|
|
}
|
|
{
|
|
JSONArray jsarr(&jsobj, "members");
|
|
for (intptr_t pos = 0; pos < length; pos++) {
|
|
Element* e = array[pos];
|
|
if (e->count_ > 0) {
|
|
cls = isolate_->class_table()->At(e->class_id_);
|
|
str = cls.Name();
|
|
lib = cls.library();
|
|
JSONObject jsobj(&jsarr);
|
|
jsobj.AddProperty("type", "ObjectHistogramEntry");
|
|
// It should not be possible to overflow here because the total
|
|
// size of the heap is bounded and we are dividing the value
|
|
// by the number of major gcs that have occurred.
|
|
size_sum += (e->size_ / major_gc_count_);
|
|
count_sum += (e->count_ / major_gc_count_);
|
|
jsobj.AddProperty("size", e->size_ / major_gc_count_);
|
|
jsobj.AddProperty("count", e->count_ / major_gc_count_);
|
|
jsobj.AddProperty("class", cls, true);
|
|
jsobj.AddProperty("lib", lib, true);
|
|
// TODO(johnmccutchan): Update the UI to use the class and lib object
|
|
// properties above instead of name and category strings.
|
|
jsobj.AddProperty("name", str.ToCString());
|
|
if (lib.IsNull()) {
|
|
jsobj.AddProperty("category", "");
|
|
} else {
|
|
str = lib.url();
|
|
jsobj.AddProperty("category", str.ToCString());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
JSONObject sums(&jsobj, "sums");
|
|
sums.AddProperty("size", size_sum);
|
|
sums.AddProperty("count", count_sum);
|
|
|
|
// Deallocate the array for sorting.
|
|
free(array);
|
|
}
|
|
|
|
|
|
} // namespace dart
|