From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28009 invoked by alias); 12 Jun 2013 11:57:17 -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 27999 invoked by uid 89); 12 Jun 2013 11:57:17 -0000 X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_MED,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from e06smtp13.uk.ibm.com (HELO e06smtp13.uk.ibm.com) (195.75.94.109) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 12 Jun 2013 11:57:16 +0000 Received: from /spool/local by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 12 Jun 2013 12:53:22 +0100 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp13.uk.ibm.com (192.168.101.143) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 12 Jun 2013 12:53:20 +0100 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id C4018219005E for ; Wed, 12 Jun 2013 13:00:31 +0100 (BST) Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by b06cxnps3075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r5CBv01S49938650 for ; Wed, 12 Jun 2013 11:57:00 GMT Received: from d06av07.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r5CBvAfu007755 for ; Wed, 12 Jun 2013 07:57:10 -0400 Received: from br87z6lw.de.ibm.com (dyn-9-152-212-143.boeblingen.de.ibm.com [9.152.212.143]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id r5CBvAi3007722; Wed, 12 Jun 2013 07:57:10 -0400 From: Andreas Arnez To: gdb-patches@sourceware.org, Ulrich Weigand Subject: [RFA PATCH v2 0/3] Add TDB regset support Date: Wed, 12 Jun 2013 12:00:00 -0000 Message-ID: <87y5afpmnd.fsf@br87z6lw.de.ibm.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13061211-2966-0000-0000-000007DBD096 X-SW-Source: 2013-06/txt/msg00272.txt.bz2 Thanks, Pedro and Luis, for your feedback. Changes from the initial version: * New target descriptions for S/390- and System z targets with the transactional-execution facility are added. * An update for the NEWS file is provided. * A new node for gdb.texinfo is provided, including a description of the new TDB feature. * A bug is fixed in ppc_linux_iterate_over_regset_sections in ppc-linux-tdep.c, where the general-purpose registers were handled incorrectly on 64-bit targets. gdb/NEWS | 4 gdb/amd64-linux-tdep.c | 32 +- gdb/arm-linux-tdep.c | 35 +- gdb/corelow.c | 42 +-- gdb/doc/gdb.texinfo | 38 ++ gdb/features/Makefile | 3 gdb/features/s390-tdb.xml | 30 ++ gdb/features/s390-te-linux64.c | 118 ++++++++ gdb/features/s390-te-linux64.xml | 25 + gdb/features/s390x-te-linux64.c | 102 +++++++ gdb/features/s390x-te-linux64.xml | 24 + gdb/gdbarch.c | 36 +- gdb/gdbarch.h | 19 + gdb/gdbarch.sh | 12 gdb/gdbserver/linux-s390-low.c | 9 gdb/i386-linux-tdep.c | 47 +-- gdb/linux-tdep.c | 103 ++++--- gdb/ppc-linux-tdep.c | 93 +----- gdb/regformats/s390-te-linux64.dat | 94 ++++++ gdb/regformats/s390x-te-linux64.dat | 78 +++++ gdb/regset.h | 8 gdb/s390-nat.c | 217 +++++++--------- gdb/s390-tdep.c | 165 +++--------- gdb/s390-tdep.h | 20 + gdb/testsuite/gdb.arch/s390-tdbregs.c | 62 ++++ gdb/testsuite/gdb.arch/s390-tdbregs.exp | 75 +++++ s390-nat.c | 37 +- s390-tdep.c | 434 +++++++++++++++++--------------- s390-tdep.h | 40 ++ 29 files changed, 1334 insertions(+), 668 deletions(-)