From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751901AbbLKNjO (ORCPT ); Fri, 11 Dec 2015 08:39:14 -0500 Received: from mga01.intel.com ([192.55.52.88]:37987 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751041AbbLKNjN (ORCPT ); Fri, 11 Dec 2015 08:39:13 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,413,1444719600"; d="scan'208";a="839224997" From: Alexander Shishkin To: Peter Zijlstra Cc: Ingo Molnar , linux-kernel@vger.kernel.org, vince@deater.net, eranian@google.com, Arnaldo Carvalho de Melo , Mathieu Poirier , Alexander Shishkin Subject: [PATCH v0 0/5] perf: Introduce instruction trace filtering Date: Fri, 11 Dec 2015 15:36:33 +0200 Message-Id: <1449840998-29902-1-git-send-email-alexander.shishkin@linux.intel.com> X-Mailer: git-send-email 2.6.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Peter, Newer version of Intel PT supports address-based filtering, and this patchset adds support for it to perf core and the PT pmu driver. It works by configuring a number of address ranges in hardware and telling it to use these ranges to filter its traces. Similar feature also exists in ARM Coresight ETM/PTM and it is also taken into account in this patchset. Firstly, userspace configures filters via an ioctl(), filters are formatted as an ascii string. Filters may refer to addresses in object files for userspace code or kernel addresses. The latter might be extended in the future to support kernel modules. For userspace filters, we scan the task's vmas to see if any of them match the defined filters (inode+offset) and if they do, calculate memory offsets and program them into hardware. Note that since different tasks will have different mappings for the same object files, supporting cpu-wide events would require special tricks to context-switch filters for userspace code. Also, we monitor new mmap and exec events to update (or clear) filter configuration. This is based on my perf_mmap_close() patchset from yesterday [1], which in turn is based on your perf/core queue. [1] http://marc.info/?l=linux-kernel&m=144976438631073 Alexander Shishkin (5): perf: Move set_filter() from behind EVENT_TRACING perf: Extend perf_event_aux() to optionally iterate through more events perf: Introduce instruction trace filtering perf/x86/intel/pt: IP filtering register/cpuid bits perf/x86/intel/pt: Add support for instruction trace filtering in PT arch/x86/include/asm/msr-index.h | 18 + arch/x86/kernel/cpu/intel_pt.h | 32 +- arch/x86/kernel/cpu/perf_event_intel_pt.c | 134 +++++- include/linux/perf_event.h | 40 ++ kernel/events/core.c | 655 ++++++++++++++++++++++++++++-- 5 files changed, 835 insertions(+), 44 deletions(-) -- 2.6.2