public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/14483] New: More aggressive compare insn elimination
@ 2004-03-08 16:48 kazu at cs dot umass dot edu
  2005-01-31 14:28 ` [Bug rtl-optimization/14483] " kazu at cs dot umass dot edu
  0 siblings, 1 reply; 3+ messages in thread
From: kazu at cs dot umass dot edu @ 2004-03-08 16:48 UTC (permalink / raw)
  To: gcc-bugs

Consider:

void bar_0 (void);
void bar_1 (void);

void
foo (int a)
{
  if (a == 1)
    goto L0;
  if (a == 0)
    goto L1;
  return;

 L0:
  bar_0 ();
  return;

 L1:
  bar_1 ();
  return;
}

./cc1 -O2 -fomit-frame-pointer generates

foo:
	movl	4(%esp), %eax
	cmpl	$1, %eax
	je	.L2
	testl	%eax, %eax      <- sort of redundant
	je	.L4
	ret
	.p2align 2,,3
.L4:
	jmp	bar_1
	.p2align 2,,3
.L2:
	jmp	bar_0

At point where "testl" is, we still have the result of the last cmpl.
So we could do:

foo:
	movl	4(%esp), %eax
	cmpl	$1, %eax
	je	.L2
	jb	.L4          <- Notice, no "testl"!
	ret
	.p2align 2,,3
.L4:
	jmp	bar_1
	.p2align 2,,3
.L2:
	jmp	bar_0

-- 
           Summary: More aggressive compare insn elimination
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P2
         Component: optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kazu at cs dot umass dot edu
                CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: i686-pc-linux-gnu


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


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

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

Thread overview: 3+ 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
2004-03-08 16:48 [Bug optimization/14483] New: " kazu at cs dot umass dot edu
2005-01-31 14:28 ` [Bug rtl-optimization/14483] " kazu at cs dot umass dot edu

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).