From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 59073 invoked by alias); 27 Apr 2015 09:41:00 -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 59062 invoked by uid 89); 27 Apr 2015 09:40:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: e06smtp12.uk.ibm.com Received: from e06smtp12.uk.ibm.com (HELO e06smtp12.uk.ibm.com) (195.75.94.108) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 27 Apr 2015 09:40:59 +0000 Received: from /spool/local by e06smtp12.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 27 Apr 2015 10:40:55 +0100 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp12.uk.ibm.com (192.168.101.142) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Mon, 27 Apr 2015 10:40:53 +0100 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 288362190046 for ; Mon, 27 Apr 2015 10:40:36 +0100 (BST) Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by b06cxnps3074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t3R9er3D3604848 for ; Mon, 27 Apr 2015 09:40:53 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 t3R9eqWb002485 for ; Mon, 27 Apr 2015 05:40:53 -0400 Received: from [9.164.158.46] (icon-9-164-158-46.megacenter.de.ibm.com [9.164.158.46]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t3R9eq2x002461; Mon, 27 Apr 2015 05:40:52 -0400 Message-ID: <553E0424.4000701@linux.vnet.ibm.com> Date: Mon, 27 Apr 2015 09:41:00 -0000 From: Andreas Krebbel User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Andreas Arnez , gdb-patches@sourceware.org Subject: Re: [PATCH 0/4] S390: Vector ABI support References: <1429724743-4603-1-git-send-email-arnez@linux.vnet.ibm.com> In-Reply-To: <1429724743-4603-1-git-send-email-arnez@linux.vnet.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15042709-0009-0000-0000-000003F73A6A X-SW-Source: 2015-04/txt/msg00986.txt.bz2 On 04/22/2015 07:44 PM, Andreas Arnez wrote: > This small patch series introduces vector ABI support for S/390 > targets to GDB. When an inferior uses the vector ABI, vector > arguments are now passed correctly to inferior functions, and a > function's return value of vector type can now be inspected and set > correctly. > > Patch #1 fixes a minor issue in is_power_of_two(), which is used by > s390_push_dummy_call(). Patches #2 and #3 restructure the > implementations of s390_push_dummy_call() and s390_return_value(), > respectively, such that they become better readable and extensible, > and such that they can more easily be extended towards the vector ABI. > Patch #4 then adds the vector ABI support itself. > > Andreas Arnez (4): > S390: For zero, let is_power_of_two() return false > S390: Restructure s390_push_dummy_call > S390: Re-arrange implementation of s390_return_value > S390: Vector ABI support > > gdb/NEWS | 2 + > gdb/s390-linux-tdep.c | 725 +++++++++++++++++++++++++------------------------- > 2 files changed, 361 insertions(+), 366 deletions(-) > Applied. Thanks! -Andreas-