Home
last modified time | relevance | path

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

/system/extras/simpleperf/doc/
Dscripts_reference.md108 report_html.py to generate annotated source code and disassembly.
151 each function, annotated disassembly for each function.
160 # Add disassembly.
163 # Adding disassembly for all binaries can cost a lot of time. So we can choose to only add
164 # disassembly for selected binaries.
196 4. Annotated disassembly of that function. It only appears when there are binaries containing that
226 # Show report in html format. To show disassembly, add --tools option like:
228 # To show annotated source or disassembly, select `top` in the view menu, click a function and
DREADME.md28 - [Show annotated source code and disassembly](#show-annotated-source-code-and-disassembly)
221 ### Show annotated source code and disassembly
224 disassembly with event count annotation. Simpleperf supports showing annotated source code and
225 disassembly for C++ code and fully compiled Java code. Simpleperf supports two ways to do it:
233 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/perf2cfg/doc/
DFSM.dot35 [ label = "'name \"disassembly (after)\"'" ];
37 [ label = "NOT('name \"disassembly (after)\"')" ];
/system/extras/simpleperf/scripts/test/
Dreport_html_test.py178 for disassembly in disassembly_list:
179 if item in disassembly:
/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.py447 self.disassembly = None
807 function.disassembly = objdump.disassemble_code(
867 if function.disassembly:
869 for code, addr in function.disassembly: