Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752147AbdIMPKz (ORCPT ); Wed, 13 Sep 2017 11:10:55 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:34272 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750962AbdIMPKt (ORCPT ); Wed, 13 Sep 2017 11:10:49 -0400 X-Google-Smtp-Source: ADKCNb6jcYZAwPcVe0lpc+gDuMBppQa4JOkco7X5jGsaraoyOYLN0ZHELpLXAn4c58s8uhwd7otCPw== From: yuzhoujian X-Google-Original-From: yuzhoujian To: peterz@infradead.org, mingo@redhat.com, alexander.shishkin@linux.intel.com, jolsa@kernel.org, dsahern@gmail.com, namhyung@kernel.org, yuzhoujian@didichuxing.com Cc: linux-kernel@vger.kernel.org Subject: [PATCH 0/3] perf script: Add script per-event-dump support Date: Wed, 13 Sep 2017 23:10:30 +0800 Message-Id: <1505315433-28437-1-git-send-email-yuzhoujian@didichuxing.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1100 Lines: 28 Introduce a new option to print trace output to files named by the monitored events and update perf-script documentation accordingly. Shown below is output of perf script command with the newly introduced option. $perf record -e cycles -e context-switches -ag -- sleep 10 $perf script --per-event-dump $ls / cycles.stacks context-switches.stacks Without per-event-dump support, drawing flamegraphs for different events is really hard. You can only monitor one event at a time for perf record. Using this option, we can get the trace output files named by the monitored events, and could draw flamegraphs according to the event's name. yuzhoujian (3): Add a new element for the struct perf_tool, and add the --per-event-dump option for perf script Makes all those related functions receive the FILE pointer Replace printf with fprintf for all the output functions tools/perf/builtin-script.c | 467 +++++++++++++++++++++++++------------------- tools/perf/util/tool.h | 1 + 2 files changed, 268 insertions(+), 200 deletions(-) -- 1.8.3.1