From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30945 invoked by alias); 25 Feb 2013 16:15:58 -0000 Received: (qmail 30932 invoked by uid 22791); 25 Feb 2013 16:15:54 -0000 X-SWARE-Spam-Status: No, hits=-7.2 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mga11.intel.com (HELO mga11.intel.com) (192.55.52.93) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 25 Feb 2013 16:15:51 +0000 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 25 Feb 2013 08:15:50 -0800 X-ExtLoop1: 1 Received: from swsutil001.isw.intel.com ([10.237.237.11]) by fmsmga002.fm.intel.com with ESMTP; 25 Feb 2013 08:15:37 -0800 Received: from ulslx001.iul.intel.com (ulslx001.iul.intel.com [172.28.207.63]) by swsutil001.isw.intel.com (8.13.6/8.13.6/MailSET/Hub) with ESMTP id r1PGFWn4021418; Mon, 25 Feb 2013 16:15:33 GMT Received: from ulslx001.iul.intel.com (localhost [127.0.0.1]) by ulslx001.iul.intel.com with ESMTP id r1PGFWre017169; Mon, 25 Feb 2013 17:15:32 +0100 Received: (from mmetzger@localhost) by ulslx001.iul.intel.com with id r1PGFV09017165; Mon, 25 Feb 2013 17:15:31 +0100 From: markus.t.metzger@intel.com To: jan.kratochvil@redhat.com Cc: gdb-patches@sourceware.org, markus.t.metzger@gmail.com, Markus Metzger Subject: [PATCH 0/3] target record-btrace Date: Mon, 25 Feb 2013 16:15:00 -0000 Message-Id: <1361808917-16934-1-git-send-email-markus.t.metzger@intel.com> X-IsSubscribed: yes 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 X-SW-Source: 2013-02/txt/msg00629.txt.bz2 From: Markus Metzger This patch series adds a new target record-btrace and implements the two commands I added previously. What's missing for the btrace series is porting the tests from the previously added gdb.btrace suite and removing the old btrace cli. I plan to send patches this week to complete the series. I will keep track of approvals for individual patches. When the series is complete, I will send out the entire series for final approval. The complete series except for the doc changes in the last patch of this series has been committed into archer-mmetzger-btrace. Markus Metzger (3): record, btrace: add record-btrace target record-btrace, disas: omit pc prefix doc, record: document record changes gdb/Makefile.in | 4 +- gdb/NEWS | 26 ++ gdb/btrace.h | 26 ++ gdb/common/btrace-common.h | 20 +- gdb/disasm.c | 4 +- gdb/disasm.h | 1 + gdb/doc/gdb.texinfo | 200 +++++++-- gdb/record-btrace.c | 1025 ++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 1265 insertions(+), 41 deletions(-) create mode 100644 gdb/record-btrace.c