From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3079 invoked by alias); 28 Oct 2014 14:35:11 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 3065 invoked by uid 89); 28 Oct 2014 14:35:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_05,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mga14.intel.com Received: from mga14.intel.com (HELO mga14.intel.com) (192.55.52.115) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 28 Oct 2014 14:35:08 +0000 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 28 Oct 2014 07:28:52 -0700 X-ExtLoop1: 1 Received: from irsmsx104.ger.corp.intel.com ([163.33.3.159]) by fmsmga001.fm.intel.com with ESMTP; 28 Oct 2014 07:34:48 -0700 Received: from irsmsx154.ger.corp.intel.com (163.33.192.96) by IRSMSX104.ger.corp.intel.com (163.33.3.159) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 28 Oct 2014 14:34:39 +0000 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.58]) by IRSMSX154.ger.corp.intel.com ([169.254.12.116]) with mapi id 14.03.0195.001; Tue, 28 Oct 2014 14:34:39 +0000 From: "Metzger, Markus T" To: "palves@redhat.com" CC: "gdb-patches@sourceware.org" Subject: RE: [PATCH 00/12] record btrace: prepare for a new trace format Date: Tue, 28 Oct 2014 14:35:00 -0000 Message-ID: References: <1405346196-1804-1-git-send-email-markus.t.metzger@intel.com> In-Reply-To: <1405346196-1804-1-git-send-email-markus.t.metzger@intel.com> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg00776.txt.bz2 Hello Pedro, Maintainers, Any feedback to this series? Here are links to the original emails: https://sourceware.org/ml/gdb-patches/2014-07/msg00322.html https://sourceware.org/ml/gdb-patches/2014-07/msg00334.html https://sourceware.org/ml/gdb-patches/2014-07/msg00324.html https://sourceware.org/ml/gdb-patches/2014-07/msg00329.html https://sourceware.org/ml/gdb-patches/2014-07/msg00330.html https://sourceware.org/ml/gdb-patches/2014-07/msg00333.html https://sourceware.org/ml/gdb-patches/2014-07/msg00325.html https://sourceware.org/ml/gdb-patches/2014-07/msg00328.html https://sourceware.org/ml/gdb-patches/2014-07/msg00326.html https://sourceware.org/ml/gdb-patches/2014-07/msg00323.html https://sourceware.org/ml/gdb-patches/2014-07/msg00331.html https://sourceware.org/ml/gdb-patches/2014-07/msg00327.html https://sourceware.org/ml/gdb-patches/2014-07/msg00332.html The patches don't apply anymore. I can send an updated patch series if that's requested. There are no changes besides resolving merge conflicts except for: The kernel interface changed meanwhile which affects: btrace, linux: add perf event buffer abstraction [wip] btrace: support Intel(R) Processor Trace I have updates for those, as well, if someone wants to try out the patches together with an experimental kernel. Thanks, Markus. > -----Original Message----- > From: gdb-patches-owner@sourceware.org [mailto:gdb-patches- > owner@sourceware.org] On Behalf Of Markus Metzger > Sent: Monday, July 14, 2014 3:56 PM > To: palves@redhat.com > Cc: gdb-patches@sourceware.org > Subject: [PATCH 00/12] record btrace: prepare for a new trace format >=20 > This is the first part of a patch series that adds support for a new trace > format. The entire series consists of three parts: >=20 > - preparation (this) > - support live inferior tracing > - support trace in core files >=20 >=20 > Besides preparing for an additional trace format, this first part adds the > following functionality: >=20 > - allow the trace buffer size to be configured > - indicate errors as gaps in the trace >=20 >=20 > In order to motivate some patches (e.g. identifying the cpu or changing t= he > btrace_compute_ftrace parameters), I also send a work-in-progress version > of the > second part that adds support for the new trace format. This patch is not > part > of the series under review. >=20 >=20 > Markus Metzger (12): > btrace: add struct btrace_data > btrace: add format argument to supports_btrace > btrace, linux: add perf event buffer abstraction > record btrace: add configuration struct > record-btrace: add bts buffer size configuration option > btrace: update btrace_compute_ftrace parameters > btrace: extend struct btrace_insn > btrace: identify cpu > btrace: use the new cpu identifier > record-btrace: indicate gaps > configure: check for libipt > [wip] btrace: support Intel(R) Processor Trace >=20 > gdb/Makefile.in | 16 +- > gdb/NEWS | 37 + > gdb/btrace.c | 965 +++++++++++++++++= +++--- > gdb/btrace.h | 98 ++- > gdb/common/btrace-common.c | 175 ++++ > gdb/common/btrace-common.h | 242 +++++- > gdb/config.in | 3 + > gdb/configure | 498 ++++++++++++ > gdb/configure.ac | 20 + > gdb/doc/gdb.texinfo | 189 ++++- > gdb/features/btrace-conf.dtd | 17 + > gdb/features/btrace.dtd | 18 +- > gdb/gdbserver/Makefile.in | 8 +- > gdb/gdbserver/linux-low.c | 181 ++++- > gdb/gdbserver/server.c | 228 +++++- > gdb/gdbserver/target.h | 27 +- > gdb/nat/linux-btrace.c | 806 ++++++++++++++++-= -- > gdb/nat/linux-btrace.h | 79 +- > gdb/record-btrace.c | 497 +++++++++++- > gdb/remote.c | 233 +++++- > gdb/target-delegates.c | 32 +- > gdb/target.c | 22 +- > gdb/target.h | 37 +- > gdb/testsuite/gdb.btrace/buffer-size.exp | 57 ++ > gdb/testsuite/gdb.btrace/delta.exp | 12 +- > gdb/testsuite/gdb.btrace/enable.exp | 4 +- > gdb/testsuite/gdb.btrace/finish.exp | 3 +- > gdb/testsuite/gdb.btrace/instruction_history.exp | 2 +- > gdb/testsuite/gdb.btrace/next.exp | 6 +- > gdb/testsuite/gdb.btrace/nexti.exp | 6 +- > gdb/testsuite/gdb.btrace/nohist.exp | 3 +- > gdb/testsuite/gdb.btrace/step.exp | 6 +- > gdb/testsuite/gdb.btrace/stepi.exp | 6 +- > gdb/x86-linux-nat.c | 18 +- > 34 files changed, 4143 insertions(+), 408 deletions(-) > create mode 100644 gdb/common/btrace-common.c > create mode 100644 gdb/features/btrace-conf.dtd > create mode 100644 gdb/testsuite/gdb.btrace/buffer-size.exp >=20 > -- > 1.8.3.1 Intel GmbH Dornacher Strasse 1 85622 Feldkirchen/Muenchen, Deutschland Sitz der Gesellschaft: Feldkirchen bei Muenchen Geschaeftsfuehrer: Christian Lamprechter, Hannes Schwaderer, Douglas Lusk Registergericht: Muenchen HRB 47456 Ust.-IdNr./VAT Registration No.: DE129385895 Citibank Frankfurt a.M. (BLZ 502 109 00) 600119052