Home
last modified time | relevance | path

Searched refs:disassembly (Results 1 – 6 of 6) sorted by relevance

/system/extras/simpleperf/doc/
Dscripts_reference.md107 report_html.py to generate annotated source code and disassembly.
150 each function, annotated disassembly for each function.
159 # Add disassembly.
162 # Adding disassembly for all binaries can cost a lot of time. So we can choose to only add
163 # disassembly for selected binaries.
195 4. Annotated disassembly of that function. It only appears when there are binaries containing that
221 # Show report in html format. To show disassembly, add --tools option like:
223 # To show annotated source or disassembly, select `top` in the view menu, click a function and
DREADME.md27 - [Show annotated source code and disassembly](#show-annotated-source-code-and-disassembly)
208 ### Show annotated source code and disassembly
211 disassembly with event count annotation. Simpleperf supports showing annotated source code and
212 disassembly for C++ code and fully compiled Java code. Simpleperf supports two ways to do it:
220 c. Use report_html.py to generate report.html with annotated source code and disassembly,
Dandroid_platform_profiling.md32 source code and disassembly (with line numbers) in the report. Below is an example.
41 # Report source code and disassembly. Disassembling all binaries is slow, so it's better to add
Dandroid_application_profiling.md180 # Add source code and disassembly. Change the path of source_dirs if it not correct.
220 and disassembly annotation. It is the recommended way to show reports.
/system/extras/simpleperf/scripts/
Dreport_html.js940 let disassembly = collectDisassemblyForFunction(this.func);
941 if (disassembly) {
944 this.views.push(new DisassemblyView(this.div, disassembly, totalCount));
1647 constructor(divContainer, disassembly, totalCount) { argument
1650 this.disassembly = disassembly;
1662 for (let line of this.disassembly) {
Dreport_html.py413 self.disassembly = None
756 function.disassembly = code
813 if function.disassembly:
815 for code, addr in function.disassembly: