From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0B88C384B046; Thu, 15 Feb 2024 19:00:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0B88C384B046 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708023610; bh=BZ3R2s1mhQ9Vo7VXuNd++Md60s18OE/x2+4dUEmwUoE=; h=From:To:Subject:Date:From; b=sqIZDox2xgXZ+LHzwih54ZG5enGrgRorLXjmwlAUqSc1rjrNrcWy/KY+ggbTXL+cx Sl8Ed82RBhmnBC3z19S0BhjhUehshNpSnW2U6sXK+o3XGa6nbbd/sVC7UY3pGkoVCP pPqSeZxAbtH47ax9JZItKhQmVxrcZ3LuUkNLvOP4= From: "sjames at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113932] New: [meta-bug] Targets which should be ported to LRA Date: Thu, 15 Feb 2024 19:00:09 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sjames at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc dependson target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D113932 Bug ID: 113932 Summary: [meta-bug] Targets which should be ported to LRA Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: sjames at gcc dot gnu.org CC: segher at gcc dot gnu.org Depends on: 55212, 66207, 90785 Target Milestone: --- LRA is already the default for GCC for quite some time: https://gcc.gnu.org/wiki/LRAIsDefault. The remaining targets are using reload via opt-ins. Please port to LRA as soon as possible, as there's a fair bit of interest in killing reload by this point: https://inbox.sourceware.org/gcc-patches/283c45ca085ced958cbce6e64331252c83= a5899f.1682268126.git.segher@kernel.crashing.org/#t >From jakub: ``` $ grep TARGET_LRA_P.*void_false */*.cc alpha/alpha.cc:#define TARGET_LRA_P hook_bool_void_false avr/avr.cc:#define TARGET_LRA_P hook_bool_void_false bfin/bfin.cc:#define TARGET_LRA_P hook_bool_void_false c6x/c6x.cc:#define TARGET_LRA_P hook_bool_void_false fr30/fr30.cc:#define TARGET_LRA_P hook_bool_void_false frv/frv.cc:#define TARGET_LRA_P hook_bool_void_false ia64/ia64.cc:#define TARGET_LRA_P hook_bool_void_false lm32/lm32.cc:#define TARGET_LRA_P hook_bool_void_false m32c/m32c.cc:#define TARGET_LRA_P hook_bool_void_false m68k/m68k.cc:#define TARGET_LRA_P hook_bool_void_false mcore/mcore.cc:#define TARGET_LRA_P hook_bool_void_false mn10300/mn10300.cc:#define TARGET_LRA_P hook_bool_void_false msp430/msp430.cc:#define TARGET_LRA_P hook_bool_void_false pa/pa.cc:#define TARGET_LRA_P hook_bool_void_false rl78/rl78.cc:#define TARGET_LRA_P hook_bool_void_false visium/visium.cc:#define TARGET_LRA_P hook_bool_void_false ``` Referenced Bugs: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D55212 [Bug 55212] [SH] Switch to LRA https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66207 [Bug 66207] Switch alpha to LRA https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D90785 [Bug 90785] [ia64] switch to LRA=