summaryrefslogtreecommitdiff
path: root/tools/perf/util
AgeCommit message (Expand)AuthorFilesLines
2024-04-12perf report: Do not collect sample histogram unnecessarilyNamhyung Kim1-0/+7
2024-04-12perf annotate-data: Add hist_entry__annotate_data_tui()Namhyung Kim2-1/+15
2024-04-12perf annotate-data: Add hist_entry__annotate_data_tty()Namhyung Kim2-0/+121
2024-04-12perf annotate-data: Skip sample histogram for stack canaryNamhyung Kim1-2/+3
2024-04-12perf map: Remove kernel map before updating start and end addressesJames Clark1-1/+1
2024-04-12perf metrics: Remove the "No_group" metric groupIan Rogers1-2/+2
2024-04-12perf annotate: Get rid of symbol__ensure_annotate()Namhyung Kim1-12/+2
2024-04-12perf annotate-data: Do not delete non-asm linesNamhyung Kim2-25/+74
2024-04-12perf annotate-data: Fix global variable lookupNamhyung Kim1-1/+3
2024-04-11perf lock contention: Add a missing NULL checkNamhyung Kim1-1/+4
2024-04-11perf annotate: Make sure to call symbol__annotate2() in TUINamhyung Kim1-0/+3
2024-04-08perf annotate: Move 'start' field struct to 'struct annotated_source'Namhyung Kim2-6/+6
2024-04-08perf annotate: Move nr_events struct to 'struct annotated_source'Namhyung Kim2-5/+6
2024-04-08perf annotate: Move 'max_jump_sources' struct to 'struct annotated_source'Namhyung Kim2-4/+6
2024-04-08perf annotate: Move 'widths' struct to 'struct annotated_source'Namhyung Kim2-29/+32
2024-04-08perf annotate: Get rid of offsets arrayNamhyung Kim2-25/+6
2024-04-08perf annotate: Check annotation lines more efficientlyNamhyung Kim1-21/+35
2024-04-08perf annotate: Introduce annotated_source__get_line()Namhyung Kim2-5/+24
2024-04-08perf annotate: Staticize some local functionsNamhyung Kim2-6/+5
2024-04-08perf annotate: Fix annotation_calc_lines() to pass correct address to get_src...Namhyung Kim1-4/+6
2024-04-08perf script: Consolidate capstone print functionsAdrian Hunter2-71/+40
2024-04-05perf script: Add capstone support for '-F +brstackdisasm'Andi Kleen3-0/+56
2024-04-05perf script: Support 32bit code under 64bit OS with capstoneAndi Kleen2-6/+23
2024-04-04perf annotate: Initialize 'arch' variable not to trip some -Werror=maybe-unin...Arnaldo Carvalho de Melo1-1/+3
2024-04-03perf annotate: Add symbol name when using capstoneNamhyung Kim1-3/+71
2024-04-03perf annotate: Use libcapstone to disassembleNamhyung Kim1-0/+160
2024-04-03perf annotate: Split out util/disasm.cNamhyung Kim5-1657/+1709
2024-04-03perf annotate: Add and use ins__is_nop()Namhyung Kim2-1/+7
2024-04-03perf annotate: Use ins__is_xxx() if possibleNamhyung Kim1-4/+4
2024-03-22perf dso: Reorder members to save space in 'struct dso'Ian Rogers1-42/+42
2024-03-22perf lock contention: Trim backtrace by skipping traceiter functionsAnne Macedo2-1/+25
2024-03-21perf probe: Add missing libgen.h header needed for using basename()Arnaldo Carvalho de Melo1-0/+1
2024-03-21perf help: Lower levenshtein penality for deleting characterIan Rogers1-3/+7
2024-03-21perf tools: Suggest inbuilt commands for unknown commandIan Rogers1-24/+21
2024-03-21perf tools: Add/use PMU reverse lookup from config to nameIan Rogers4-2/+37
2024-03-21perf tools: Use pmus to describe type from attributeIan Rogers1-5/+11
2024-03-21perf list: Give more details about raw event encodingsIan Rogers5-19/+161
2024-03-21perf pmu: Drop "default_core" from alias namesIan Rogers1-1/+2
2024-03-21perf list: Add tracepoint encoding to detailed outputIan Rogers1-10/+25
2024-03-21perf annotate-data: Do not retry for invalid typesNamhyung Kim1-35/+48
2024-03-21perf annotate-data: Add a cache for global variable typesNamhyung Kim4-4/+118
2024-03-21perf annotate-data: Add stack canary typeNamhyung Kim3-0/+72
2024-03-21perf annotate-data: Handle ADD instructionsNamhyung Kim1-2/+105
2024-03-21perf annotate-data: Support general per-cpu accessNamhyung Kim1-44/+169
2024-03-21perf annotate-data: Track instructions with a this-cpu variableNamhyung Kim1-1/+30
2024-03-21perf annotate-data: Handle this-cpu variables in kernelNamhyung Kim2-2/+26
2024-03-21perf annotate: Parse x86 segment register locationNamhyung Kim2-4/+47
2024-03-21perf annotate-data: Check register state for typeNamhyung Kim1-7/+81
2024-03-21perf annotate-data: Implement instruction trackingNamhyung Kim2-14/+210
2024-03-21perf annotate-data: Handle call instructionsNamhyung Kim1-2/+52