From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27940 invoked by alias); 25 Jun 2014 16:49: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 27914 invoked by uid 89); 25 Jun 2014 16:49:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e06smtp13.uk.ibm.com Received: from e06smtp13.uk.ibm.com (HELO e06smtp13.uk.ibm.com) (195.75.94.109) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 25 Jun 2014 16:49: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, 25 Jun 2014 17:49:12 +0100 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp13.uk.ibm.com (192.168.101.143) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 25 Jun 2014 17:49:10 +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 29CDA17D8059 for ; Wed, 25 Jun 2014 17:50:38 +0100 (BST) Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s5PGnANC32374936 for ; Wed, 25 Jun 2014 16:49:10 GMT Received: from d06av04.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s5PGn976024844 for ; Wed, 25 Jun 2014 10:49:09 -0600 Received: from br87z6lw.boeblingen.de.ibm.com (dyn-9-152-212-196.boeblingen.de.ibm.com [9.152.212.196]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id s5PGn9Gp024835 for ; Wed, 25 Jun 2014 10:49:09 -0600 From: Andreas Arnez To: gdb-patches@sourceware.org Subject: [PATCH v2 00/13] Regset rework preparations part 2 Date: Wed, 25 Jun 2014 16:49:00 -0000 Message-Id: <1403714949-28133-1-git-send-email-arnez@linux.vnet.ibm.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14062516-2966-0000-0000-000000505607 X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00881.txt.bz2 Version 1 is here: https://sourceware.org/ml/gdb-patches/2014-05/msg00631.html Changes in version 2: * New patch #1 that renames 'descr' -> 'regmap. * Improved comment for 'struct regcache_map_entry'. * Minor corrections in NIOS2 patch. Andreas Arnez (13): Rename 'descr' field in regset structure to 'regmap'. regcache: Add functions suitable for regset_supply/collect. S390: Migrate to regcache_supply/collect_regset. AARCH64 Linux: Fill 'collect_regset' in regset structures. ALPHA Linux: Fill 'collect_regset' in regset structures. FRV Linux: Fill 'collect_regset' in regset structures. HPPA Linux: Fill 'collect_regset' in regset structures. M32R Linux: Fill 'collect_regset' in regset structure. NIOS2 Linux: Fill 'collect_regset' in regset structure. SCORE: Fill 'collect_regset' in regset structure. TILEGX Linux: Fill 'collect_regset' in regset structure. M68K Linux: Define regset structures. IA64 Linux: Define regset structures. gdb/aarch64-linux-nat.c | 38 ++----- gdb/aarch64-linux-tdep.c | 90 ++++----------- gdb/aarch64-linux-tdep.h | 18 ++- gdb/alpha-linux-tdep.c | 56 ++++++---- gdb/frv-linux-tdep.c | 141 +++++++++--------------- gdb/hppa-linux-tdep.c | 101 ++++++----------- gdb/ia64-linux-tdep.c | 87 +++++++++++++++ gdb/m32r-linux-tdep.c | 81 +++++++++++--- gdb/m68klinux-tdep.c | 65 +++++++++++ gdb/nios2-linux-tdep.c | 21 +++- gdb/ppc-linux-tdep.c | 4 +- gdb/regcache.c | 66 +++++++++++ gdb/regcache.h | 44 ++++++++ gdb/regset.h | 7 +- gdb/rs6000-tdep.c | 12 +- gdb/s390-linux-nat.c | 177 +++++++++++++----------------- gdb/s390-linux-tdep.c | 278 ++++++++++------------------------------------- gdb/s390-linux-tdep.h | 13 +-- gdb/score-tdep.c | 72 ++++-------- gdb/score-tdep.h | 34 +----- gdb/tilegx-linux-tdep.c | 37 +++---- 21 files changed, 708 insertions(+), 734 deletions(-) -- 1.8.4.2