From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2638 invoked by alias); 5 Dec 2013 20:43:23 -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 Received: (qmail 2599 invoked by uid 48); 5 Dec 2013 20:43:20 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/59401] [SH] GBR addressing mode optimization produces wrong code Date: Thu, 05 Dec 2013 20:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.0 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-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-12/txt/msg00432.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59401 --- Comment #1 from Oleg Endo --- An example where the base address is retrieved from the GBR in one basic block, but used in different basic blocks: struct tcb_t { int x, y, z, w; }; int test_01 (int a, tcb_t* b, int c) { tcb_t* tcb = (tcb_t*)__builtin_thread_pointer (); return (a & 5) ? tcb->x : tcb->w; } By coincidence it produces correct code: mov r4,r0 tst #5,r0 bf .L7 mov.l @(12,gbr),r0 rts nop .L7: rts mov.l @(0,gbr),r0 A proper fix for this would be to collect all "leaf values" for the address registers in question from all predecessor basic blocks as it's done in the function sh_optimize_sett_clrt::find_last_ccreg_values in sh_optimize_sett_clrt.cc.