|
|
Implement a heap profiler for the Dart managed heap.
This profiler will write binary HPROF data to a user provided stream that
can later be viewed by tools such as the Eclipse Memory Analyzer.
While all user defined types are accurately described in the profile data,
internal types that are not self-describing appear as empty objects. This
will be addressed by a future change.
Committed: https://code.google.com/p/dart/source/detail?r=8636
Total comments: 18
Total comments: 6
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1322 lines, -14 lines) |
Patch |
 |
M |
runtime/include/dart_api.h
|
View
|
1
2
3
|
2 chunks |
+24 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/dart_api_impl.cc
|
View
|
1
2
3
|
1 chunk |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/heap.h
|
View
|
1
2
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/heap.cc
|
View
|
1
2
3
|
2 chunks |
+24 lines, -0 lines |
0 comments
|
Download
|
 |
A |
runtime/vm/heap_profiler.h
|
View
|
1
2
3
|
1 chunk |
+313 lines, -0 lines |
0 comments
|
Download
|
 |
A |
runtime/vm/heap_profiler.cc
|
View
|
1
2
3
|
1 chunk |
+733 lines, -0 lines |
0 comments
|
Download
|
 |
A |
runtime/vm/heap_profiler_test.cc
|
View
|
1
2
|
1 chunk |
+121 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object.h
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/pages.h
|
View
|
1
2
3
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/pages.cc
|
View
|
1
2
3
|
2 chunks |
+27 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object.h
|
View
|
1
2
3
|
4 chunks |
+10 lines, -2 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object.cc
|
View
|
1
2
3
|
1 chunk |
+13 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/scavenger.h
|
View
|
1
2
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/scavenger.cc
|
View
|
1
2
3
|
1 chunk |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/unicode.h
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/unicode.cc
|
View
|
|
1 chunk |
+14 lines, -9 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/visitor.h
|
View
|
1
2
3
|
1 chunk |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/vm_sources.gypi
|
View
|
1
2
3
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
Total messages: 6 (0 generated)
|