public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
@ 2004-03-27 14:45 kazu at cs dot umass dot edu
  2004-03-27 15:45 ` [Bug optimization/14752] " pinskia at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: kazu at cs dot umass dot edu @ 2004-03-27 14:45 UTC (permalink / raw)
  To: gcc-bugs

Consider:

void bar (void);

void
foo (unsigned int a)
{
  if (((a >> 2) & 1))
    bar ();
}

void
baz (unsigned int a)
{
  if (((~a >> 2) & 1))
    bar ();
}

tree-ssa optimizers cannot absorb "~" in "~a" by swapping then and else clauses.
Here is the last tree in SSA form.


;; Function foo (foo)

foo (a)
{
  _Bool T.2;
  unsigned int T.1;
  unsigned int T.0;

<bb 0>:
  T.0_2 = a_1 >> 2;
  T.1_3 = T.0_2 & 1;
  T.2_4 = (_Bool)T.1_3;
  if (T.2_4) goto <L0>; else goto <L1>;

<L0>:;
  bar () [tail call];

<L1>:;
  return;

}



;; Function baz (baz)

baz (a)
{
  _Bool T.6;
  unsigned int T.5;
  unsigned int T.4;
  unsigned int T.3;

<bb 0>:
  T.3_2 = ~a_1;          <- we could remove this "~" by ...
  T.4_3 = T.3_2 >> 2;
  T.5_4 = T.4_3 & 1;
  T.6_5 = (_Bool)T.5_4;
  if (T.6_5) goto <L0>; else goto <L1>;  <- flipping the labels

<L0>:;
  bar () [tail call];

<L1>:;
  return;

}

The combiner can atually take care of this, but we can reduce initial rtl
if we remove "~".

-- 
           Summary: [tree-ssa] "~a" should be changed to "a" if used in the
                    condition of an if statement
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Keywords: pessimizes-code
          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


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


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

* [Bug optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
@ 2004-03-27 15:45 ` pinskia at gcc dot gnu dot org
  2004-04-04  7:34 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-27 15:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-27 15:45 -------
Confirmed. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-03-27 15:45:24
               date|                            |
   Target Milestone|---                         |tree-ssa


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


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

* [Bug optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
  2004-03-27 15:45 ` [Bug optimization/14752] " pinskia at gcc dot gnu dot org
@ 2004-04-04  7:34 ` pinskia at gcc dot gnu dot org
  2004-04-05 23:36 ` kazu at cs dot umass dot edu
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-04-04  7:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-04-04 07:34 -------
Note the following is removed by cast already but this does not help this case at all:
  T.6_5 = (_Bool)T.5_4;

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2004-03-27 15:45:24         |2004-04-04 07:34:41
               date|                            |


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


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

* [Bug optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
  2004-03-27 15:45 ` [Bug optimization/14752] " pinskia at gcc dot gnu dot org
  2004-04-04  7:34 ` pinskia at gcc dot gnu dot org
@ 2004-04-05 23:36 ` kazu at cs dot umass dot edu
  2004-05-15 23:36 ` [Bug tree-optimization/14752] " kazu at cs dot umass dot edu
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: kazu at cs dot umass dot edu @ 2004-04-05 23:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kazu at cs dot umass dot edu  2004-04-05 23:36 -------
Note that "~" may be expressed using "^ 1".


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |TREE


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


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

* [Bug tree-optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
                   ` (2 preceding siblings ...)
  2004-04-05 23:36 ` kazu at cs dot umass dot edu
@ 2004-05-15 23:36 ` kazu at cs dot umass dot edu
  2004-05-24 20:31 ` pinskia at gcc dot gnu dot org
  2005-02-18 12:31 ` phython at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: kazu at cs dot umass dot edu @ 2004-05-15 23:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kazu at cs dot umass dot edu  2004-05-15 11:55 -------
As of today, the last tree-ssa form looks like:

;; Function foo (foo)

foo (a)
{
  _Bool T.2;
  unsigned int T.1;
  unsigned int T.0;

<bb 0>:
  T.0_2 = a_1 >> 2;
  T.1_3 = T.0_2 & 1;
  if (T.1_3 != 0) goto <L0>; else goto <L1>;

<L0>:;
  bar () [tail call];

<L1>:;
  return;

}



;; Function baz (baz)

baz (a)
{
  _Bool T.6;
  unsigned int T.5;
  unsigned int T.4;
  unsigned int T.3;

<bb 0>:
  T.3_2 = ~a_1;
  T.4_3 = T.3_2 >> 2;
  T.5_4 = T.4_3 & 1;
  if (T.5_4 != 0) goto <L0>; else goto <L1>;

<L0>:;
  bar () [tail call];

<L1>:;
  return;

}

Note that the casts to _Bool are gone.


-- 


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


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

* [Bug tree-optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
                   ` (3 preceding siblings ...)
  2004-05-15 23:36 ` [Bug tree-optimization/14752] " kazu at cs dot umass dot edu
@ 2004-05-24 20:31 ` pinskia at gcc dot gnu dot org
  2005-02-18 12:31 ` phython at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-24 20:31 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.5.0                       |---


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


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

* [Bug tree-optimization/14752] [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement
  2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
                   ` (4 preceding siblings ...)
  2004-05-24 20:31 ` pinskia at gcc dot gnu dot org
@ 2005-02-18 12:31 ` phython at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: phython at gcc dot gnu dot org @ 2005-02-18 12:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From phython at gcc dot gnu dot org  2005-02-18 00:53 -------
 Shouldn't comment #3 say ~a is the same as a ^ -1?

-- 


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


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

end of thread, other threads:[~2005-02-18  0:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-27 14:45 [Bug optimization/14752] New: [tree-ssa] "~a" should be changed to "a" if used in the condition of an if statement kazu at cs dot umass dot edu
2004-03-27 15:45 ` [Bug optimization/14752] " pinskia at gcc dot gnu dot org
2004-04-04  7:34 ` pinskia at gcc dot gnu dot org
2004-04-05 23:36 ` kazu at cs dot umass dot edu
2004-05-15 23:36 ` [Bug tree-optimization/14752] " kazu at cs dot umass dot edu
2004-05-24 20:31 ` pinskia at gcc dot gnu dot org
2005-02-18 12:31 ` phython at gcc dot gnu dot 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).