page.title=Profiling with Traceview and dmtracedump parent.title=Debugging parent.link=index.html @jd:body
Traceview is a graphical viewer for execution logs that you create by using the {@link android.os.Debug} class to log tracing information in your code. Traceview can help you debug your application and profile its performance.
When you have a trace log file (generated by adding tracing code to your application or by DDMS), you can have Traceview load the log files and display their data in a window visualizes your application in two panels:
The sections below provide addition information about the traceview output panes.
The image below shows a close up of the timeline panel. Each thread’s execution is shown
in its own row, with time increasing to the right. Each method is shown in another color (colors
are reused in a round-robin fashion starting with the methods that have the most inclusive time).
The thin lines underneath the first row show the extent (entry to exit) of all the calls to the
selected method. The method in this case is LoadListener.nativeFinished()
and it was selected in
the profile view.
Figure 2 shows the profile pane, a summary of all the time spent
in a method. The table shows both the inclusive and exclusive times (as well as the percentage of
the total time). Exclusive time is the time spent in the method. Inclusive time is the time spent
in the method plus the time spent in any called functions. We refer to calling methods as
"parents" and called methods as "children." When a method is selected (by clicking on it), it
expands to show the parents and children. Parents are shown with a purple background and children
with a yellow background. The last column in the table shows the number of calls to this method
plus the number of recursive calls. The last column shows the number of calls out of the total
number of calls made to that method. In this view, we can see that there were 14 calls to
LoadListener.nativeFinished();
looking at the timeline panel shows that one of those calls took
an unusually long time.
To use Traceview, you need to generate log files containing the trace information you want to analyze.
There are two ways to generate trace logs:
Before you start generating trace logs, be aware of the following restrictions:
This document focuses on using the {@link android.os.Debug} class to generate trace data. For more information on using DDMS to generate trace data, see Using the Dalvik Debug Monitor Server.
To create the trace files, include the {@link android.os.Debug} class and call one of the {@link android.os.Debug#startMethodTracing() startMethodTracing()} methods. In the call, you specify a base name for the trace files that the system generates. To stop tracing, call {@link android.os.Debug#stopMethodTracing() stopMethodTracing()}. These methods start and stop method tracing across the entire virtual machine. For example, you could call {@link android.os.Debug#startMethodTracing() startMethodTracing()} in your activity's {@link android.app.Activity#onCreate onCreate()} method, and call {@link android.os.Debug#stopMethodTracing() stopMethodTracing()} in that activity's {@link android.app.Activity#onDestroy()} method.
// start tracing to "/sdcard/calc.trace" Debug.startMethodTracing("calc"); // ... // stop tracing Debug.stopMethodTracing();
When your application calls startMethodTracing(), the system creates a file called
<trace-base-name>.trace
. This contains the binary method trace data and a
mapping table with thread and method names.
The system then begins buffering the generated trace data, until your application calls stopMethodTracing(), at which time it writes the buffered data to the output file. If the system reaches the maximum buffer size before stopMethodTracing() is called, the system stops tracing and sends a notification to the console.
Interpreted code will run more slowly when profiling is enabled. Don't try to generate absolute timings from the profiler results (i.e. "function X takes 2.5 seconds to run"). The times are only useful in relation to other profile output, so you can see if changes have made the code faster or slower.
When using the Android emulator, you must specify an SD card when you create your AVD because the trace files are written to the SD card. Your application must have permission to write to the SD card as well.
After your application has run and the system has created your trace files
<trace-base-name>.trace
on a device or emulator, you must copy those files to
your development computer. You can use adb pull
to copy the files. Here's an example
that shows how to copy an example file, calc.trace, from the default location on the emulator to
the /tmp directory on the emulator host machine:
adb pull /sdcard/calc.trace /tmp
To run Traceview and view the trace files, enter traceview
<trace-base-name>
. For example, to run Traceview on the example files copied in the
previous section, use:
traceview /tmp/calc
Note: If you are trying to view the trace logs of an application
that is built with ProGuard enabled (release mode build), some method and member names might be obfuscated.
You can use the Proguard mapping.txt
file to figure out the original unobfuscated names. For more information
on this file, see the Proguard documentation.
dmtracedump
is a tool that gives you an alternate way of generating
graphical call-stack diagrams from trace log files. The tool uses the Graphviz Dot utility to
create the graphical output, so you need to install Graphviz before running dmtracedump.
The dmtracedump tool generates the call stack data as a tree diagram, with each call represented as a node. It shows call flow (from parent node to child nodes) using arrows. The diagram below shows an example of dmtracedump output.
For each node, dmtracedump shows <ref>
callname (<inc-ms>, <exc-ms>,<numcalls>)
, where
<ref>
-- Call reference number, as used in trace logs<inc-ms>
-- Inclusive elapsed time (milliseconds spent in method,
including all child methods)<exc-ms>
-- Exclusive elapsed time (milliseconds spent in method,
not including any child methods)<numcalls>
-- Number of callsThe usage for dmtracedump is:
dmtracedump [-ho] [-s sortable] [-d trace-base-name] [-g outfile] <trace-base-name>
The tool then loads trace log data from <trace-base-name>.data
and
<trace-base-name>.key
. The table below lists the options for dmtracedump.
Option | Description |
---|---|
-d <trace-base-name> |
Diff with this trace name |
-g <outfile> |
Generate output to <outfile> |
-h |
Turn on HTML output |
-o |
Dump the trace file instead of profiling |
-d <trace-base-name> |
URL base to the location of the sortable javascript file |
-t <percent> |
Minimum threshold for including child nodes in the graph (child's inclusive time as a percentage of parent inclusive time). If this option is not used, the default threshold is 20%. |