From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9721 invoked by alias); 21 May 2018 20:43:25 -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 8994 invoked by uid 89); 21 May 2018 20:43:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=associates 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; Mon, 21 May 2018 20:43:22 +0000 Received: from pps.filterd (m0098399.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.22/8.16.0.22) with SMTP id w4LKcchf108681 for ; Mon, 21 May 2018 16:43:21 -0400 Received: from e36.co.us.ibm.com (e36.co.us.ibm.com [32.97.110.154]) by mx0a-001b2d01.pphosted.com with ESMTP id 2j421j03c3-1 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NOT) for ; Mon, 21 May 2018 16:43:21 -0400 Received: from localhost by e36.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 21 May 2018 14:43:20 -0600 Received: from b03cxnp08028.gho.boulder.ibm.com (9.17.130.20) by e36.co.us.ibm.com (192.168.1.136) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; (version=TLSv1/SSLv3 cipher=AES256-GCM-SHA384 bits=256/256) Mon, 21 May 2018 14:43:18 -0600 Received: from b03ledav006.gho.boulder.ibm.com (b03ledav006.gho.boulder.ibm.com [9.17.130.237]) by b03cxnp08028.gho.boulder.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id w4LKhGdo11338076 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 21 May 2018 13:43:16 -0700 Received: from b03ledav006.gho.boulder.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id EB699C60AA; Mon, 21 May 2018 14:43:15 -0600 (MDT) Received: from pedro.localdomain (unknown [9.18.235.153]) by b03ledav006.gho.boulder.ibm.com (Postfix) with ESMTP id B3E08C60A9; Mon, 21 May 2018 14:43:15 -0600 (MDT) Received: by pedro.localdomain (Postfix, from userid 1000) id 5C5163C03BA; Mon, 21 May 2018 17:43:13 -0300 (-03) From: Pedro Franco de Carvalho To: Ulrich Weigand Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 5/8] [PowerPC] Fix access to VSCR in linux targets In-Reply-To: <20180516140403.C603FD80322@oc3748833570.ibm.com> References: <20180516140403.C603FD80322@oc3748833570.ibm.com> Date: Mon, 21 May 2018 20:46:00 -0000 MIME-Version: 1.0 Content-Type: text/plain X-TM-AS-GCONF: 00 x-cbid: 18052120-0020-0000-0000-00000DFAA34D X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00009062; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000261; SDB=6.01035686; UDB=6.00529760; IPR=6.00814815; MB=3.00021228; MTD=3.00000008; XFM=3.00000015; UTC=2018-05-21 20:43:19 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18052120-0021-0000-0000-0000617CFBB3 Message-Id: <87bmd8rb8e.fsf@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:,, definitions=2018-05-21_08:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=1 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1805210245 X-IsSubscribed: yes X-SW-Source: 2018-05/txt/msg00509.txt.bz2 Ulrich Weigand writes: > This removes all users of ppc_supply_vrregset / ppc_collect_vrregset, > right? Then those functions should go away as well, together with > all their associates data, in particular the v*_offset fields in > struct ppc_reg_offsets ... In v2 I removed these. I did have to alter the ppc bsd and aix targets, but I did not test these. The .tdep files were compiled (with --enable-targets=all), but there is one native openbsd file that was also altered. Thanks!