From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 128462 invoked by alias); 30 Mar 2017 17:45:50 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 128433 invoked by uid 89); 30 Mar 2017 17:45:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=crude, H*Ad:D*pobox.com, wine, HX-Envelope-From:sk:daniel. X-HELO: sasl.smtp.pobox.com Received: from pb-smtp1.pobox.com (HELO sasl.smtp.pobox.com) (64.147.108.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 30 Mar 2017 17:45:48 +0000 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 399ED6BE91; Thu, 30 Mar 2017 13:45:47 -0400 (EDT) Received: from pb-smtp1.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 27F756BE90; Thu, 30 Mar 2017 13:45:47 -0400 (EDT) Received: from [192.168.1.4] (unknown [76.215.41.237]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp1.pobox.com (Postfix) with ESMTPSA id 693F06BE8F; Thu, 30 Mar 2017 13:45:46 -0400 (EDT) Subject: Re: [RFC] [PATCH v3 0/8] [i386] Use out-of-line stubs for ms_abi pro/epilogues To: JonY <10walls@gmail.com> References: <2fd14fe7-8d06-45ab-fb1e-96c9c8f4c03b@pobox.com> Cc: Uros Bizjak , gcc-patches From: Daniel Santos Message-ID: <3d222908-3f40-9d44-7bc2-ab9c1bf0fdba@pobox.com> Date: Thu, 30 Mar 2017 17:55:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Pobox-Relay-ID: B478008C-1570-11E7-9C51-97B1B46B9B0B-06139138!pb-smtp1.pobox.com X-IsSubscribed: yes X-SW-Source: 2017-03/txt/msg01528.txt.bz2 I have finally completed all tests for Cygwin and MinGW both 32- & 64-bit with no additional test failures. There are still 567 tests failing both pre- and post-patch with error "error while loading shared libraries: cyggfortran-4.dll: cannot open shared object file: No such file or directory" in all 32-bit tests even after my (fairly crude) patch to address that problem. So as a separate issue, I don't yet have a clean patch set to resolve the windows dll search path issue (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79867). I had to change the test program, as I was dependent upon XSI extensions which aren't available on Cygwin, so I'll need to repost that. Also, I had to make one small change in the "aligned SSE MOVs" patch, disabling it on SEH targets since gcc/config/i386/winnt.c does not currently support the REG_CFA_EXPRESSION note in its unwind emit. This optimization primarily targets 64-bit Wine anyway, where stack realignment is now required. Daniel