From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3881 invoked by alias); 30 Nov 2012 14:29:51 -0000 Received: (qmail 3751 invoked by uid 48); 30 Nov 2012 14:29:24 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/55549] New: zero_extend and vectors Date: Fri, 30 Nov 2012 14:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-11/txt/msg03010.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55549 Bug #: 55549 Summary: zero_extend and vectors Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: rtl-optimization AssignedTo: unassigned@gcc.gnu.org ReportedBy: glisse@gcc.gnu.org Hello, the documentation of zero_extend says: @findex zero_extend @item (zero_extend:@var{m} @var{x}) Represents the result of zero-extending the value @var{x} to machine mode @var{m}. @var{m} must be a fixed-point mode and @var{x} a fixed-point value of a mode narrower than @var{m}. However, try_combine will happily call: SUBST (*split, gen_rtx_ZERO_EXTEND (split_mode, SUBREG_REG (*split))); without many checks. In particular, in PR54855, it tries: (zero_extend:V2DF (mem/u/c:DF ...)) It isn't a bug because nothing will recognize this pattern and it will be rejected, but it seems it would be good to add a few conditions.