From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26539 invoked by alias); 12 Jun 2013 15:09:19 -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 26494 invoked by uid 89); 12 Jun 2013 15:09:19 -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 e06smtp10.uk.ibm.com (HELO e06smtp10.uk.ibm.com) (195.75.94.106) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 12 Jun 2013 15:09:15 +0000 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 12 Jun 2013 16:06:58 +0100 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp10.uk.ibm.com (192.168.101.140) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 12 Jun 2013 16:06:55 +0100 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 92FA517D805C for ; Wed, 12 Jun 2013 16:10:31 +0100 (BST) Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r5CF8x5m52887792 for ; Wed, 12 Jun 2013 15:08:59 GMT Received: from d06av09.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r5CF99ik004695 for ; Wed, 12 Jun 2013 09:09:09 -0600 Received: from br87z6lw.de.ibm.com (dyn-9-152-212-143.boeblingen.de.ibm.com [9.152.212.143]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id r5CF98Xd004654; Wed, 12 Jun 2013 09:09:09 -0600 From: Andreas Arnez To: gdb-patches@sourceware.org, Ulrich.Weigand@de.ibm.com Subject: [RFA PATCH v3 0/3] Add TDB regset support Date: Wed, 12 Jun 2013 15:12:00 -0000 Message-ID: <877ghzmkmj.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: 13061215-4966-0000-0000-00000600E750 X-SW-Source: 2013-06/txt/msg00283.txt.bz2 Changes from v2: * Teach gdbserver to select an S/390 target description with TDB support, if applicable. 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/Makefile.in | 7 gdb/gdbserver/configure.srv | 5 gdb/gdbserver/linux-s390-low.c | 25 + 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 ++ 31 files changed, 1361 insertions(+), 669 deletions(-)