public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/14483] More aggressive compare insn elimination
       [not found] <bug-14483-4@http.gcc.gnu.org/bugzilla/>
@ 2012-10-25 23:36 ` steven at gcc dot gnu.org
  2023-08-08  1:14 ` [Bug tree-optimization/14483] " pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 2+ messages in thread
From: steven at gcc dot gnu.org @ 2012-10-25 23:36 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14483

Steven Bosscher <steven at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.8.0

--- Comment #4 from Steven Bosscher <steven at gcc dot gnu.org> 2012-10-25 23:36:13 UTC ---
(In reply to comment #2)
> The problem with extending cse_condition_code_reg() in cse.c is that
> we have to determine the result of "testl", (reg 17) dies at the conditional
> jump insn, but cse_condition_code_reg() is run before the flow analysis.
> So we don't have liveness information.  If this is to be implemented,
> we may have to do this after the combine or something.

This is not a problem anymore since the DF merge. Liveness is now
available (and used) in all CSE passes.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug tree-optimization/14483] More aggressive compare insn elimination
       [not found] <bug-14483-4@http.gcc.gnu.org/bugzilla/>
  2012-10-25 23:36 ` [Bug rtl-optimization/14483] More aggressive compare insn elimination steven at gcc dot gnu.org
@ 2023-08-08  1:14 ` pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-08-08  1:14 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14483

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|rtl-optimization            |tree-optimization
                 CC|                            |pinskia at gcc dot gnu.org

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
What we could do in isel pass:
find a == 0 (in gimple_cond or in gimple_assign).
for gimple_cond see if either branch only has a == 1 in it. and change `a == 0`
to `(unsigned)a < 1`

This can be a generic part of isel even.
And then the RTL passes should be able to remove the comparison.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-08-08  1:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-14483-4@http.gcc.gnu.org/bugzilla/>
2012-10-25 23:36 ` [Bug rtl-optimization/14483] More aggressive compare insn elimination steven at gcc dot gnu.org
2023-08-08  1:14 ` [Bug tree-optimization/14483] " pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).