From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19712 invoked by alias); 19 Mar 2012 21:50:39 -0000 Received: (qmail 19702 invoked by uid 22791); 19 Mar 2012 21:50:36 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 19 Mar 2012 21:50:10 +0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/52628] New: SH Target: Inefficient shift by T bit result Date: Mon, 19 Mar 2012 23:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: olegendo 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-03/txt/msg01553.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52628 Bug #: 52628 Summary: SH Target: Inefficient shift by T bit result Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target AssignedTo: unassigned@gcc.gnu.org ReportedBy: olegendo@gcc.gnu.org Target: sh*-*-* int test_01 (int a, int b, int c) { return c << (a > b ? 1 : 0); } -m4 -O2: cmp/gt r5,r4 mov r6,r0 movt r1 rts shld r1,r0 better: cmp/gt r5,r4 bf 0f add r6,r6 ! do not use shll because of T bit usage in shll 0: rts mov r6,r0 int test_02 (int a, int b, int c) { return c << (a > b ? 2 : 0); } -m4 -O2: cmp/gt r5,r4 mov r6,r0 movt r1 add r1,r1 rts shld r1,r0 better: cmp/gt r5,r4 bf 0f shll2 r6 0: rts mov r6,r0 The same goes for other shift amounts like 8 and 16. On SH4 the zero-displacement conditional branch code should be faster.