Lines Matching refs:perf
19 perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
20 script_output=$(mktemp /tmp/__perf_test.perf.data.XXXXX.script)
51 if ! perf record -o /dev/null --quiet ${testprog} 2> /dev/null
56 if ! perf record --per-thread -o "${perfdata}" ${testprog} 2> /dev/null
62 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
76 perf record -p "${TESTPID}" --per-thread -o "${perfdata}" sleep 1 2> /dev/null
85 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
97 if ! perf list pmu | grep -q 'br_inst_retired.near_call'
102 …if ! perf record --intr-regs=\? 2>&1 | grep -q 'available registers: AX BX CX DX SI DI BP SP IP FL…
107 if ! perf record -o - --intr-regs=di,r8,dx,cx -e br_inst_retired.near_call \
109 | perf script -F ip,sym,iregs -i - 2> /dev/null \
121 if ! perf record -aB --synth=no -o "${perfdata}" ${testprog} 2> /dev/null
126 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
132 if ! perf record -aB --synth=no -e cpu-clock,cs --threads=cpu \
139 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
150 if ! perf record -o "${perfdata}" ${testprog} 2> /dev/null
156 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
162 if ! perf record -e cpu-clock,cs --threads=package \
169 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
189 …if ! perf record -o "${perfdata}" -e "{branches:p,instructions}" -j any,counter ${testprog} 2> /de…
195 if ! perf report -i "${perfdata}" -D -q | grep -q "$br_cntr_output"
201 if ! perf script -i "${perfdata}" -F +brstackinsn,+brcntr | grep -q "$br_cntr_script_output"
212 if ! perf record -aB --synth=cgroup --all-cgroups -o "${perfdata}" ${testprog} 2> /dev/null
217 if ! perf report -i "${perfdata}" -D | grep -q "CGROUP"
223 if ! perf script -i "${perfdata}" -F cgroup | grep -q -v "unknown"
234 if ! perf record -o "${perfdata}" -e "{cycles,cycles}:Su" -- \
235 perf test -w brstack 2> /dev/null
242 perf script -i "${perfdata}" > $script_output
261 if ! perf stat -e "{slots,topdown-retiring}" true 2> /dev/null
266 if ! perf record -o "${perfdata}" -e "{instructions,slots,topdown-retiring}:S" true 2> /dev/null
280 if perf record -o "${perfdata}" -e "cycles" true 2> /dev/null
282 if ! perf record -o "${perfdata}" -e "cycles:P" true 2> /dev/null
293 if perf record -o "${perfdata}" -e "instructions" true 2> /dev/null
296 if ! perf record -o "${perfdata}" -e "instructions:P" true 2> /dev/null