From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24508 invoked by alias); 15 Aug 2011 15:26:49 -0000 Received: (qmail 24500 invoked by uid 22791); 15 Aug 2011 15:26:49 -0000 X-SWARE-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_50,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-gx0-f175.google.com (HELO mail-gx0-f175.google.com) (209.85.161.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Aug 2011 15:26:35 +0000 Received: by gxk3 with SMTP id 3so526736gxk.20 for ; Mon, 15 Aug 2011 08:26:35 -0700 (PDT) Received: by 10.42.168.131 with SMTP id w3mr3831630icy.190.1313421994753; Mon, 15 Aug 2011 08:26:34 -0700 (PDT) Received: from pauldell (124-149-34-246.dyn.iinet.net.au [124.149.34.246]) by mx.google.com with ESMTPS id x18sm1716528ibe.57.2011.08.15.08.26.30 (version=SSLv3 cipher=OTHER); Mon, 15 Aug 2011 08:26:32 -0700 (PDT) Message-ID: <7871BF4412B24A3384E88BA9E8D449B1@pauldell> From: "Paul Edwards" To: "Ulrich Weigand" Cc: References: <201108151431.p7FEVuO8029670@d06av02.portsmouth.uk.ibm.com> In-Reply-To: <201108151431.p7FEVuO8029670@d06av02.portsmouth.uk.ibm.com> Subject: Re: i370 port Date: Mon, 15 Aug 2011 15:26:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2011-08/txt/msg00275.txt.bz2 > You'll need to mark your new constraint as EXTRA_MEMORY_CONSTRAINT > so that reload knows what to do when an argument doesn't match. Thanks! That certainly produced an effect. Unfortunately it's not quite right, seemingly not loading R9 properly: LR 9,13 AR 9,13 MVC 0(10,9),0(2) And it had a knock-on effect too, producing bad code elsewhere: < SLR 2,2 < SLR 3,3 < ST 2,128(13) < ST 3,4+128(13) < ST 2,136(13) < ST 3,4+136(13) < ST 2,144(13) < ST 3,4+144(13) --- > MVC 128(8,13),=F'0' > MVC 136(8,13),=F'0' > MVC 144(8,13),=F'0' But I guess that is another can of worms to investigate. BFN. Paul.