From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 477 invoked by alias); 23 Sep 2014 14:44:28 -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 468 invoked by uid 89); 23 Sep 2014 14:44:27 -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,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oi0-f47.google.com Received: from mail-oi0-f47.google.com (HELO mail-oi0-f47.google.com) (209.85.218.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 23 Sep 2014 14:44:26 +0000 Received: by mail-oi0-f47.google.com with SMTP id e131so4527048oig.34 for ; Tue, 23 Sep 2014 07:44:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=e5ilOnyCvMbTKfcgiTtrOR+oSxEbUaMT+MNZtdI23TM=; b=BVTebWL381yVKAAR1NoFeaHfISIyjH7VgfRZViPzdFnSW5Sot/iY5g7DNu51EwUDqu oxkODACkXp15PhgkGhUBjegKGpa3c2R70Gog0zrygK+gIb6QUY9nI4lClhxOUNWeKsxI 41c6L6GmLcid3dPCNA/nZZ27IDo56VwPIkTvvh6SeV8x5c8196Mkl0AkF5E/1SQnT+WT xYBjxd7fJhGhbJ/J6DWPuq1hM1m0y3BzKuMmT4GikI6EHXxjPWN9EJdmDbvxYIAW7MZl +DI7njvdBz+8FVrRjvOQNB5fxjUuefqj+IZGgsI9KaGMbNKs1oBiwzr6Ud3QwkupC60X W+OA== X-Gm-Message-State: ALoCoQn6rQwRyLrlQVr5cn3vtub0Zxar4iMP0IzbRoB9uUdGOAMbb3Z2wbD0OB/02iuES8+1Pq+1 MIME-Version: 1.0 X-Received: by 10.182.220.226 with SMTP id pz2mr53363obc.76.1411483461688; Tue, 23 Sep 2014 07:44:21 -0700 (PDT) Received: by 10.202.225.135 with HTTP; Tue, 23 Sep 2014 07:44:21 -0700 (PDT) In-Reply-To: References: Date: Tue, 23 Sep 2014 14:44:00 -0000 Message-ID: Subject: Re: [PATCH 0/4] PR c++/13403 and PR c++/15154: Fix function calling convention in gnuv3 ABI From: Siva Chandra To: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00690.txt.bz2 On Thu, Sep 11, 2014 at 11:35 AM, Siva Chandra wrote: > This patch series addresses the two listed PRs. The gnuv3 ABI function > which decides whether a class value has to be passed by reference (or, > returned in a hidden first parameter) is currently incomplete. This > patch series completes it. > > The way I have organised my patches is that: > > - Patch 1/4 adds tests which illustrate what is missing. One test > fails, another passes. > - Patch 2/4 fixes the ABI to address the failing the test in 1/4. > - Patch 3/4 adds another failing test. > - Patch 4/4 fixes the ABI to address the failing test in 3/4. > > If the patches go in in the same order as above, then the tree will > have one new failing test after 1/4 lands but before 2/4 lands. Is > that OK? If not, then I can merge 1 and 2 into one patch, and 3 and 4 > into 1 patch. I have ordered it this way because I thought it might be > easier for the reviewers to see what works and what doesn't currently. Ping. For reference, links to patches 1/4 to 4/4 are as follows: 1/4 - https://sourceware.org/ml/gdb-patches/2014-09/msg00367.html 2/4 - https://sourceware.org/ml/gdb-patches/2014-09/msg00368.html 3/4 - https://sourceware.org/ml/gdb-patches/2014-09/msg00369.html 4/4 - https://sourceware.org/ml/gdb-patches/2014-09/msg00370.html