|
|
Add runtime and native entry tags
- Split runtime and native entry tags.
- Set runtime / native entry address as vm tag in stubs.
- Add reverse native entry resolver (pc to name) to public API (breaking change).
- Hookup reverse resolver for standalone VM (io + bootstrap + builtin natives).
- Runtime entries are registered with tags.
- Profiler queries for tag names via the reverse native entry resolver.
- Profiler outputs named entry tags as children under parent tag (runtime or native).
R=asiva@google.com
Committed: https://code.google.com/p/dart/source/detail?r=34941
Total comments: 22
Total comments: 6
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+343 lines, -64 lines) |
Patch |
 |
M |
runtime/bin/builtin.h
|
View
|
1
2
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/bin/builtin.cc
|
View
|
1
2
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/bin/builtin_gen_snapshot.cc
|
View
|
1
2
|
1 chunk |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/bin/builtin_natives.cc
|
View
|
1
2
|
1 chunk |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/bin/builtin_nolib.cc
|
View
|
1
2
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/bin/io_natives.h
|
View
|
1
2
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/bin/io_natives.cc
|
View
|
1
2
|
1 chunk |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/bin/test_extension.c
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
runtime/include/dart_api.h
|
View
|
1
2
|
2 chunks |
+20 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/bootstrap_natives.h
|
View
|
1
2
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/bootstrap_natives.cc
|
View
|
1
2
|
1 chunk |
+23 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/dart.cc
|
View
|
1
2
3
4
|
2 chunks |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/dart_api_impl.cc
|
View
|
1
2
|
2 chunks |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/dart_api_impl_test.cc
|
View
|
|
9 chunks |
+15 lines, -12 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/debugger_api_impl_test.cc
|
View
|
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/isolate.cc
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -3 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/native_entry.h
|
View
|
1
2
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/native_entry.cc
|
View
|
1
2
|
2 chunks |
+32 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object.h
|
View
|
1
2
|
1 chunk |
+7 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object.cc
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/profiler.cc
|
View
|
1
2
3
4
|
8 chunks |
+87 lines, -16 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object.h
|
View
|
1
2
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/runtime_entry.h
|
View
|
1
2
3
4
5
|
3 chunks |
+10 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/stack_frame.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/stub_code_arm.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+3 lines, -6 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/stub_code_ia32.cc
|
View
|
1
2
3
4
|
3 chunks |
+3 lines, -5 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/stub_code_mips.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+3 lines, -6 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/stub_code_x64.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+3 lines, -5 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/tags.h
|
View
|
1
2
3
4
5
|
3 chunks |
+9 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/tags.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+60 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/unit_test.cc
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
samples/sample_extension/sample_extension.cc
|
View
|
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
Total messages: 8 (0 generated)
|