mmc: core: Clarify sdio_irq_pending flag for MMC_CAP2_SDIO_IRQ_NOTHREAD
[linux/fpc-iii.git] / tools / perf / Documentation / perf-c2c.txt
blobe6150f21267d69a8ec8e34b9d14b8bb91701bf74
1 perf-c2c(1)
2 ===========
4 NAME
5 ----
6 perf-c2c - Shared Data C2C/HITM Analyzer.
8 SYNOPSIS
9 --------
10 [verse]
11 'perf c2c record' [<options>] <command>
12 'perf c2c record' [<options>] -- [<record command options>] <command>
13 'perf c2c report' [<options>]
15 DESCRIPTION
16 -----------
17 C2C stands for Cache To Cache.
19 The perf c2c tool provides means for Shared Data C2C/HITM analysis. It allows
20 you to track down the cacheline contentions.
22 On x86, the tool is based on load latency and precise store facility events
23 provided by Intel CPUs. On PowerPC, the tool uses random instruction sampling
24 with thresholding feature.
26 These events provide:
27   - memory address of the access
28   - type of the access (load and store details)
29   - latency (in cycles) of the load access
31 The c2c tool provide means to record this data and report back access details
32 for cachelines with highest contention - highest number of HITM accesses.
34 The basic workflow with this tool follows the standard record/report phase.
35 User uses the record command to record events data and report command to
36 display it.
39 RECORD OPTIONS
40 --------------
41 -e::
42 --event=::
43         Select the PMU event. Use 'perf mem record -e list'
44         to list available events.
46 -v::
47 --verbose::
48         Be more verbose (show counter open errors, etc).
50 -l::
51 --ldlat::
52         Configure mem-loads latency. (x86 only)
54 -k::
55 --all-kernel::
56         Configure all used events to run in kernel space.
58 -u::
59 --all-user::
60         Configure all used events to run in user space.
62 REPORT OPTIONS
63 --------------
64 -k::
65 --vmlinux=<file>::
66         vmlinux pathname
68 -v::
69 --verbose::
70         Be more verbose (show counter open errors, etc).
72 -i::
73 --input::
74         Specify the input file to process.
76 -N::
77 --node-info::
78         Show extra node info in report (see NODE INFO section)
80 -c::
81 --coalesce::
82         Specify sorting fields for single cacheline display.
83         Following fields are available: tid,pid,iaddr,dso
84         (see COALESCE)
86 -g::
87 --call-graph::
88         Setup callchains parameters.
89         Please refer to perf-report man page for details.
91 --stdio::
92         Force the stdio output (see STDIO OUTPUT)
94 --stats::
95         Display only statistic tables and force stdio mode.
97 --full-symbols::
98         Display full length of symbols.
100 --no-source::
101         Do not display Source:Line column.
103 --show-all::
104         Show all captured HITM lines, with no regard to HITM % 0.0005 limit.
106 -f::
107 --force::
108         Don't do ownership validation.
110 -d::
111 --display::
112         Switch to HITM type (rmt, lcl) to display and sort on. Total HITMs as default.
114 C2C RECORD
115 ----------
116 The perf c2c record command setup options related to HITM cacheline analysis
117 and calls standard perf record command.
119 Following perf record options are configured by default:
120 (check perf record man page for details)
122   -W,-d,--phys-data,--sample-cpu
124 Unless specified otherwise with '-e' option, following events are monitored by
125 default on x86:
127   cpu/mem-loads,ldlat=30/P
128   cpu/mem-stores/P
130 and following on PowerPC:
132   cpu/mem-loads/
133   cpu/mem-stores/
135 User can pass any 'perf record' option behind '--' mark, like (to enable
136 callchains and system wide monitoring):
138   $ perf c2c record -- -g -a
140 Please check RECORD OPTIONS section for specific c2c record options.
142 C2C REPORT
143 ----------
144 The perf c2c report command displays shared data analysis.  It comes in two
145 display modes: stdio and tui (default).
147 The report command workflow is following:
148   - sort all the data based on the cacheline address
149   - store access details for each cacheline
150   - sort all cachelines based on user settings
151   - display data
153 In general perf report output consist of 2 basic views:
154   1) most expensive cachelines list
155   2) offsets details for each cacheline
157 For each cacheline in the 1) list we display following data:
158 (Both stdio and TUI modes follow the same fields output)
160   Index
161   - zero based index to identify the cacheline
163   Cacheline
164   - cacheline address (hex number)
166   Total records
167   - sum of all cachelines accesses
169   Rmt/Lcl Hitm
170   - cacheline percentage of all Remote/Local HITM accesses
172   LLC Load Hitm - Total, Lcl, Rmt
173   - count of Total/Local/Remote load HITMs
175   Store Reference - Total, L1Hit, L1Miss
176     Total - all store accesses
177     L1Hit - store accesses that hit L1
178     L1Hit - store accesses that missed L1
180   Load Dram
181   - count of local and remote DRAM accesses
183   LLC Ld Miss
184   - count of all accesses that missed LLC
186   Total Loads
187   - sum of all load accesses
189   Core Load Hit - FB, L1, L2
190   - count of load hits in FB (Fill Buffer), L1 and L2 cache
192   LLC Load Hit - Llc, Rmt
193   - count of LLC and Remote load hits
195 For each offset in the 2) list we display following data:
197   HITM - Rmt, Lcl
198   - % of Remote/Local HITM accesses for given offset within cacheline
200   Store Refs - L1 Hit, L1 Miss
201   - % of store accesses that hit/missed L1 for given offset within cacheline
203   Data address - Offset
204   - offset address
206   Pid
207   - pid of the process responsible for the accesses
209   Tid
210   - tid of the process responsible for the accesses
212   Code address
213   - code address responsible for the accesses
215   cycles - rmt hitm, lcl hitm, load
216     - sum of cycles for given accesses - Remote/Local HITM and generic load
218   cpu cnt
219     - number of cpus that participated on the access
221   Symbol
222     - code symbol related to the 'Code address' value
224   Shared Object
225     - shared object name related to the 'Code address' value
227   Source:Line
228     - source information related to the 'Code address' value
230   Node
231     - nodes participating on the access (see NODE INFO section)
233 NODE INFO
234 ---------
235 The 'Node' field displays nodes that accesses given cacheline
236 offset. Its output comes in 3 flavors:
237   - node IDs separated by ','
238   - node IDs with stats for each ID, in following format:
239       Node{cpus %hitms %stores}
240   - node IDs with list of affected CPUs in following format:
241       Node{cpu list}
243 User can switch between above flavors with -N option or
244 use 'n' key to interactively switch in TUI mode.
246 COALESCE
247 --------
248 User can specify how to sort offsets for cacheline.
250 Following fields are available and governs the final
251 output fields set for caheline offsets output:
253   tid   - coalesced by process TIDs
254   pid   - coalesced by process PIDs
255   iaddr - coalesced by code address, following fields are displayed:
256              Code address, Code symbol, Shared Object, Source line
257   dso   - coalesced by shared object
259 By default the coalescing is setup with 'pid,iaddr'.
261 STDIO OUTPUT
262 ------------
263 The stdio output displays data on standard output.
265 Following tables are displayed:
266   Trace Event Information
267   - overall statistics of memory accesses
269   Global Shared Cache Line Event Information
270   - overall statistics on shared cachelines
272   Shared Data Cache Line Table
273   - list of most expensive cachelines
275   Shared Cache Line Distribution Pareto
276   - list of all accessed offsets for each cacheline
278 TUI OUTPUT
279 ----------
280 The TUI output provides interactive interface to navigate
281 through cachelines list and to display offset details.
283 For details please refer to the help window by pressing '?' key.
285 CREDITS
286 -------
287 Although Don Zickus, Dick Fowles and Joe Mario worked together
288 to get this implemented, we got lots of early help from Arnaldo
289 Carvalho de Melo, Stephane Eranian, Jiri Olsa and Andi Kleen.
291 C2C BLOG
292 --------
293 Check Joe's blog on c2c tool for detailed use case explanation:
294   https://joemario.github.io/blog/2016/09/01/c2c-blog/
296 SEE ALSO
297 --------
298 linkperf:perf-record[1], linkperf:perf-mem[1]