Lines Matching refs:record
2 Sample related events with: perf record -e '{cycles,instructions}:S'
7 Save output of perf stat using: perf stat record <target workload>
17 Profiling branch (mis)predictions with: perf record -b / perf report
18 To show assembler sample contexts use perf record -b / perf script -F +brstackinsn --xed
23 For memory address profiling, try: perf mem record / perf mem report
25 To record callchains for each sample: perf record -g
26 To record every process run by a user: perf record -u <user>
27 Skip collecting build-id when recording: perf record -B
28 To change sampling frequency to 100 Hz: perf record -F 100
33 System-wide collection from all CPUs: perf record -a
41 Add -I to perf record to sample register values, which will be visible in perf report sample contex…
42 To show IPC for sampling periods use perf record -e '{cycles,instructions}:S' and then browse conte…
43 To show context switches in perf report sample context add --switch-events to perf record.