From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753256AbdKIH6d (ORCPT ); Thu, 9 Nov 2017 02:58:33 -0500 Received: from mail-pf0-f196.google.com ([209.85.192.196]:46025 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753096AbdKIH5W (ORCPT ); Thu, 9 Nov 2017 02:57:22 -0500 X-Google-Smtp-Source: ABhQp+QjqUTXiQ73yBjVLmFMexuoTZx32EmekMSy7xp3yE0L1JvzXom7IG6Qkv4DZXDkA7aBbbrFww== From: Stephane Eranian To: linux-kernel@vger.kernel.org Cc: acme@redhat.com, peterz@infradead.org, mingo@elte.hu, ak@linux.intel.com, kan.liang@intel.com, jolsa@redhat.com Subject: [PATCH v4 1/5] perf/core: add PERF_RECORD_SAMPLE_SKID_IP record type Date: Wed, 8 Nov 2017 23:57:09 -0800 Message-Id: <1510214233-2074-2-git-send-email-eranian@google.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1510214233-2074-1-git-send-email-eranian@google.com> References: <1510214233-2074-1-git-send-email-eranian@google.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchs adds a new sample record type. The goal is to record the interrupted instruction pointer (IP) as seen by the kernel and reflected in the machine state (pt_regs). On some architectures, it is possible to avoid the IP skid using hardware support. For instance, on Intel x86, the use of PEBS helps eliminate the skid on Haswell and later processors. Without this patch, on Haswell processors, if you set: - attr.precise = 0, then you get the skid IP - attr.precise > 0, then you get the PEBS ip corrected for skid The IP normally comes when the event has PERF_RECORD_SAMPLE_IP set. However, there are certain measuremewnts where you need to have BOTH the corrected IP and the skid IP. For instance, when studying branches, the skid IP usually points to the target of the branch while the corrected IP point to the branch instruction itself. Today, it is not possible to retrieve both at the same time. This patch makes this possible by specifying PERF_SAMPLE_IP|PERF_SAMPLE_SKID_IP. Signed-off-by: Stephane Eranian --- include/linux/perf_event.h | 2 ++ include/uapi/linux/perf_event.h | 4 +++- kernel/events/core.c | 14 ++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 874b71a70058..772530501025 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h @@ -917,6 +917,7 @@ struct perf_sample_data { u64 stack_user_size; u64 phys_addr; + u64 skid_ip; } ____cacheline_aligned; /* default value for data source */ @@ -937,6 +938,7 @@ static inline void perf_sample_data_init(struct perf_sample_data *data, data->weight = 0; data->data_src.val = PERF_MEM_NA; data->txn = 0; + data->skid_ip = 0; /* mark as uinitialized */ } extern void perf_output_sample(struct perf_output_handle *handle, diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h index 362493a2f950..48a65a90fcab 100644 --- a/include/uapi/linux/perf_event.h +++ b/include/uapi/linux/perf_event.h @@ -141,8 +141,9 @@ enum perf_event_sample_format { PERF_SAMPLE_TRANSACTION = 1U << 17, PERF_SAMPLE_REGS_INTR = 1U << 18, PERF_SAMPLE_PHYS_ADDR = 1U << 19, + PERF_SAMPLE_SKID_IP = 1U << 20, - PERF_SAMPLE_MAX = 1U << 20, /* non-ABI */ + PERF_SAMPLE_MAX = 1U << 21, /* non-ABI */ }; /* @@ -817,6 +818,7 @@ enum perf_event_type { * { u64 abi; # enum perf_sample_regs_abi * u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_INTR * { u64 phys_addr;} && PERF_SAMPLE_PHYS_ADDR + * { u64 skid_ip; } && PERF_SAMPLE_SKID_IP * }; */ PERF_RECORD_SAMPLE = 9, diff --git a/kernel/events/core.c b/kernel/events/core.c index 0649a84204e6..40f2839c8b94 100644 --- a/kernel/events/core.c +++ b/kernel/events/core.c @@ -1565,6 +1565,9 @@ static void __perf_event_header_size(struct perf_event *event, u64 sample_type) if (sample_type & PERF_SAMPLE_PHYS_ADDR) size += sizeof(data->phys_addr); + if (sample_type & PERF_SAMPLE_SKID_IP) + size += sizeof(data->skid_ip); + event->header_size = size; } @@ -5934,6 +5937,9 @@ void perf_output_sample(struct perf_output_handle *handle, if (sample_type & PERF_SAMPLE_PHYS_ADDR) perf_output_put(handle, data->phys_addr); + if (sample_type & PERF_SAMPLE_SKID_IP) + perf_output_put(handle, data->skid_ip); + if (!event->attr.watermark) { int wakeup_events = event->attr.wakeup_events; @@ -5999,6 +6005,14 @@ void perf_prepare_sample(struct perf_event_header *header, if (sample_type & PERF_SAMPLE_IP) data->ip = perf_instruction_pointer(regs); + /* + * if skid_ip has not been set by arch specific code, then + * we initialize it to IP as interrupt-based sampling has + * skid + */ + if (!data->skid_ip && sample_type & PERF_SAMPLE_SKID_IP) + data->skid_ip = perf_instruction_pointer(regs); + if (sample_type & PERF_SAMPLE_CALLCHAIN) { int size = 1; -- 2.7.4