Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755304AbaKRVyG (ORCPT ); Tue, 18 Nov 2014 16:54:06 -0500 Received: from mga01.intel.com ([192.55.52.88]:46900 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753796AbaKRVyC (ORCPT ); Tue, 18 Nov 2014 16:54:02 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,412,1413270000"; d="scan'208";a="634115007" From: kan.liang@intel.com To: acme@kernel.org, jolsa@redhat.com, a.p.zijlstra@chello.nl, eranian@google.com Cc: linux-kernel@vger.kernel.org, mingo@redhat.com, paulus@samba.org, ak@linux.intel.com, namhyung@kernel.org, Kan Liang Subject: [PATCH V4 0/3] perf tool: Haswell LBR call stack support (user) Date: Tue, 18 Nov 2014 16:36:54 -0500 Message-Id: <1416346617-3577-1-git-send-email-kan.liang@intel.com> X-Mailer: git-send-email 1.8.3.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Kan Liang This is the user space patch for Haswell LBR call stack support. For many profiling tasks we need the callgraph. For example we often need to see the caller of a lock or the caller of a memcpy or other library function to actually tune the program. Frame pointer unwinding is efficient and works well. But frame pointers are off by default on 64bit code (and on modern 32bit gccs), so there are many binaries around that do not use frame pointers. Profiling unchanged production code is very useful in practice. On some CPUs frame pointer also has a high cost. Dwarf2 unwinding also does not always work and is extremely slow (upto 20% overhead). Haswell has a new feature that utilizes the existing Last Branch Record facility to record call chains. When the feature is enabled, function call will be collected as normal, but as return instructions are executed the last captured branch record is popped from the on-chip LBR registers. The LBR call stack facility provides an alternative to get callgraph. It has some limitations too, but should work in most cases and is significantly faster than dwarf. Frame pointer unwinding is still the best default, but LBR call stack is a good alternative when nothing else works. Changes since v1 - Update help document - Force exclude_user to 0 with warning in LBR call stack - Dump both lbr and fp info when report -D - Reconstruct thread__resolve_callchain_sample and split it into two patches - Use has_branch_callstack function to check LBR call stack available Changes since v2 - Rebase to 025ce5d33373 Changes since v3 - Rebase to cc502c23aadf - Separated function for lbr call stack sample resolve and print - Some minor changes according to comments Kan Liang (3): perf tools: enable LBR call stack support perf tool: Move cpumode resolve code to add_callchain_ip perf tools: Construct LBR call chain tools/perf/Documentation/perf-record.txt | 8 +- tools/perf/builtin-record.c | 6 +- tools/perf/builtin-report.c | 2 + tools/perf/util/callchain.c | 10 +- tools/perf/util/callchain.h | 1 + tools/perf/util/evsel.c | 21 +++- tools/perf/util/evsel.h | 4 + tools/perf/util/machine.c | 174 ++++++++++++++++++++++--------- tools/perf/util/session.c | 64 ++++++++++-- 9 files changed, 229 insertions(+), 61 deletions(-) -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/