From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29932 invoked by alias); 23 Nov 2017 15:37:42 -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 29920 invoked by uid 89); 23 Nov 2017 15:37:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-12.8 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,KB_WAM_FROM_NAME_SINGLEWORD,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy=labor, Hx-languages-length:1149 X-HELO: mx0a-001b2d01.pphosted.com Received: from mx0a-001b2d01.pphosted.com (HELO mx0a-001b2d01.pphosted.com) (148.163.156.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 23 Nov 2017 15:37:40 +0000 Received: from pps.filterd (m0098396.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id vANFZxru074691 for ; Thu, 23 Nov 2017 10:37:39 -0500 Received: from e06smtp13.uk.ibm.com (e06smtp13.uk.ibm.com [195.75.94.109]) by mx0a-001b2d01.pphosted.com with ESMTP id 2edypavcm3-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Thu, 23 Nov 2017 10:37:38 -0500 Received: from localhost by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 23 Nov 2017 15:37:36 -0000 Received: from b06cxnps4075.portsmouth.uk.ibm.com (9.149.109.197) by e06smtp13.uk.ibm.com (192.168.101.143) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 23 Nov 2017 15:37:34 -0000 Received: from d06av26.portsmouth.uk.ibm.com (d06av26.portsmouth.uk.ibm.com [9.149.105.62]) by b06cxnps4075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id vANFbYNk42533094; Thu, 23 Nov 2017 15:37:34 GMT Received: from d06av26.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 35051AE053; Thu, 23 Nov 2017 15:30:48 +0000 (GMT) Received: from d06av26.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 0AB63AE045; Thu, 23 Nov 2017 15:30:48 +0000 (GMT) Received: from tuxmaker.boeblingen.de.ibm.com (unknown [9.152.85.9]) by d06av26.portsmouth.uk.ibm.com (Postfix) with ESMTPS; Thu, 23 Nov 2017 15:30:47 +0000 (GMT) From: Philipp Rudo To: gdb-patches@sourceware.org Cc: Andreas Arnez , Ulrich Weigand Subject: [PATCH 0/4] Split up s390-linux-tdep.c Date: Thu, 23 Nov 2017 15:37:00 -0000 X-TM-AS-GCONF: 00 x-cbid: 17112315-0012-0000-0000-00000590DAE4 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17112315-0013-0000-0000-0000190BB3D8 Message-Id: <20171123153733.31261-1-prudo@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-11-23_06:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=15 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1711230212 X-IsSubscribed: yes X-SW-Source: 2017-11/txt/msg00543.txt.bz2 Hi everybody This patch set splits up the s390 tdep code followed by some minor clean up and coding style fixes. It originates from my Linux kernel feature and helps adding the new Linux kernel 'OS' to s390 while keeping the code manageable. I want to bring the set upstream in advance of the rest of the kernel debugging feature as nearly all changes to s390-linux-tdep.c cause merge conflicts making the maintenance off-tree extremely labor intensive and error prone. Thanks Philipp Philipp Rudo (4): Split up s390-linux-tdep.c into two files Clean up s390-linux-tdep.c Add comments to uncommented functions in s390-tdep.c Add comments to uncommented functions in s390-linux-tdep.c gdb/Makefile.in | 3 + gdb/configure.tgt | 4 +- gdb/s390-linux-nat.c | 1 + gdb/s390-linux-tdep.c | 2933 +++---------------------------------------------- gdb/s390-linux-tdep.h | 194 +--- gdb/s390-tdep.c | 2658 ++++++++++++++++++++++++++++++++++++++++++++ gdb/s390-tdep.h | 386 +++++++ 7 files changed, 3202 insertions(+), 2977 deletions(-) create mode 100644 gdb/s390-tdep.c create mode 100644 gdb/s390-tdep.h -- 2.13.5