@@ -239,7 +239,6 @@ buildid.*::
239
239
set buildid.dir to /dev/null. The default is $HOME/.debug
240
240
241
241
annotate.*::
242
- These options work only for TUI.
243
242
These are in control of addresses, jump function, source code
244
243
in lines of assembly code from a specific program.
245
244
@@ -269,6 +268,8 @@ annotate.*::
269
268
│ mov (%rdi),%rdx
270
269
│ return n;
271
270
271
+ This option works with tui, stdio2 browsers.
272
+
272
273
annotate.use_offset::
273
274
Basing on a first address of a loaded function, offset can be used.
274
275
Instead of using original addresses of assembly code,
@@ -287,6 +288,8 @@ annotate.*::
287
288
288
289
368:│ mov 0x8(%r14),%rdi
289
290
291
+ This option works with tui, stdio2 browsers.
292
+
290
293
annotate.jump_arrows::
291
294
There can be jump instruction among assembly code.
292
295
Depending on a boolean value of jump_arrows,
@@ -306,6 +309,8 @@ annotate.*::
306
309
│1330: mov %r15,%r10
307
310
│1333: cmp %r15,%r14
308
311
312
+ This option works with tui browser.
313
+
309
314
annotate.show_linenr::
310
315
When showing source code if this option is 'true',
311
316
line numbers are printed as below.
@@ -325,6 +330,8 @@ annotate.*::
325
330
│ array++;
326
331
│ }
327
332
333
+ This option works with tui, stdio2 browsers.
334
+
328
335
annotate.show_nr_jumps::
329
336
Let's see a part of assembly code.
330
337
@@ -335,6 +342,8 @@ annotate.*::
335
342
336
343
│1 1382: movb $0x1,-0x270(%rbp)
337
344
345
+ This option works with tui, stdio2 browsers.
346
+
338
347
annotate.show_total_period::
339
348
To compare two records on an instruction base, with this option
340
349
provided, display total number of samples that belong to a line
@@ -348,11 +357,30 @@ annotate.*::
348
357
349
358
99.93 │ mov %eax,%eax
350
359
360
+ This option works with tui, stdio2, stdio browsers.
361
+
362
+ annotate.show_nr_samples::
363
+ By default perf annotate shows percentage of samples. This option
364
+ can be used to print absolute number of samples. Ex, when set as
365
+ false:
366
+
367
+ Percent│
368
+ 74.03 │ mov %fs:0x28,%rax
369
+
370
+ When set as true:
371
+
372
+ Samples│
373
+ 6 │ mov %fs:0x28,%rax
374
+
375
+ This option works with tui, stdio2, stdio browsers.
376
+
351
377
annotate.offset_level::
352
378
Default is '1', meaning just jump targets will have offsets show right beside
353
379
the instruction. When set to '2' 'call' instructions will also have its offsets
354
380
shown, 3 or higher will show offsets for all instructions.
355
381
382
+ This option works with tui, stdio2 browsers.
383
+
356
384
hist.*::
357
385
hist.percentage::
358
386
This option control the way to calculate overhead of filtered entries -
0 commit comments