From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27457 invoked by alias); 9 Jan 2011 23:23:35 -0000 Received: (qmail 27447 invoked by uid 22791); 9 Jan 2011 23:23:33 -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; Sun, 09 Jan 2011 23:23:29 +0000 From: "kkojima at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/47239] New: (int)&func & 3 is always optimized to 0 on some targets X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kkojima 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 Date: Mon, 10 Jan 2011 00:01:00 -0000 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: 2011-01/txt/msg00857.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47239 Summary: (int)&func & 3 is always optimized to 0 on some targets Product: gcc Version: 4.6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization AssignedTo: unassigned@gcc.gnu.org ReportedBy: kkojima@gcc.gnu.org Targets like arm, hppa and sh64 use the lower bits of the address of functions for special purposes. Even on those targets, ---- extern void plabel32_function (void); int is_plabel32 (void) { return ((unsigned long) &plabel32_function & 3); } ---- which was the test case of PR 35705, is wrongly compiled with -O2. It seems that tree-bit-ccp optimization evaluates the expression ((unsigned long) &plabel32_function & 3) to zero always. With -fno-tree-bit-ccp, the result looks OK. For example, arm-eabi compiler outputs mov r0, #0 bx lr with -O2 and ldr r0, .L2 and r0, r0, #3 bx lr .L3: .align 2 .L2: .word plabel32_function with -O2 -fno-tree-bit-ccp. I've got similar results for hppa and sh64 compilers.