public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization
@ 2004-10-02  2:25 dberlin at gcc dot gnu dot org
  2004-10-02  2:26 ` [Bug tree-optimization/17790] [4.0 Regression] " pinskia at gcc dot gnu dot org
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2004-10-02  2:25 UTC (permalink / raw)
  To: gcc-bugs

For datem.f from sixtrack, i get

loop invariant motion :  23.03 (17%) usr   0.05 ( 7%) sys  23.82 (16%) wall
loop iv optimization : 21.03 (15%) usr 0.05 (7%) sys 22.13 (16%) walll

On struct-aliasing, which has vuse bypassing enabled (and thus enables more
optimization), the situation is worse:

 loop invariant motion :  23.13 (17%) usr   0.04 (6%) sys  23.94 (15%) wall
 tree iv optimization  :  68.67 (49%) usr   0.29 (40%) sys  74.50 (50%) wall

For maincr.f, we have:

 tree iv optimization  :   9.72 (23%) usr   0.06 (13%) sys  10.10 (23%) wall

-- 
           Summary: Significant compile time increases for sixtrack with
                    tree LICM and IV optimization
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dberlin at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
@ 2004-10-02  2:26 ` pinskia at gcc dot gnu dot org
  2004-10-17 19:05 ` rakdver at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-02  2:26 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rakdver at gcc dot gnu dot
                   |                            |org
           Keywords|                            |compile-time-hog
            Summary|Significant compile time    |[4.0 Regression] Significant
                   |increases for sixtrack with |compile time increases for
                   |tree LICM and IV            |sixtrack with tree LICM and
                   |optimization                |IV optimization
   Target Milestone|---                         |4.0.0


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
  2004-10-02  2:26 ` [Bug tree-optimization/17790] [4.0 Regression] " pinskia at gcc dot gnu dot org
@ 2004-10-17 19:05 ` rakdver at gcc dot gnu dot org
  2004-10-17 19:20 ` rakdver at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at gcc dot gnu dot org @ 2004-10-17 19:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at gcc dot gnu dot org  2004-10-17 19:05 -------
I cannot reproduce the ivopts problem on daten.f (ivopts are <2% for me, which
is not great, but also not so terrible).  IM problem reproduces.

mainrc.f currently runs out of memory for me.

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
  2004-10-02  2:26 ` [Bug tree-optimization/17790] [4.0 Regression] " pinskia at gcc dot gnu dot org
  2004-10-17 19:05 ` rakdver at gcc dot gnu dot org
@ 2004-10-17 19:20 ` rakdver at gcc dot gnu dot org
  2004-10-17 19:44 ` dberlin at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at gcc dot gnu dot org @ 2004-10-17 19:20 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at gcc dot gnu dot org  2004-10-17 19:20 -------
Actually mainrc.f does not run out of memory, but causes segfault during garbage
collection (infinite recursion).

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-10-17 19:20 ` rakdver at gcc dot gnu dot org
@ 2004-10-17 19:44 ` dberlin at gcc dot gnu dot org
  2004-10-17 20:16 ` rakdver at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2004-10-17 19:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2004-10-17 19:44 -------
the ivopts stuff may have been fixed by your ivopts patch for important candidates.
i'll try maincr again.

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-10-17 19:44 ` dberlin at gcc dot gnu dot org
@ 2004-10-17 20:16 ` rakdver at gcc dot gnu dot org
  2004-11-25 20:47 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at gcc dot gnu dot org @ 2004-10-17 20:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at gcc dot gnu dot org  2004-10-17 20:16 -------
IM problem seems to be caused by some inefficiency in store motion (I suspect
scanning loop repeatedly for various insignificant virtual operands).  Anyway,
the patch for PR 17133 (complete rewrite of store motion) fixes this (reduces
the compile time to <1%).

http://gcc.gnu.org/ml/gcc-patches/2004-09/msg01120.html

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-10-17 20:16 ` rakdver at gcc dot gnu dot org
@ 2004-11-25 20:47 ` pinskia at gcc dot gnu dot org
  2004-11-27 21:17 ` neroden at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-11-25 20:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-25 20:47 -------
I see LICM on some other code high up on the radar.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-11-25 20:47:23
               date|                            |


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-11-25 20:47 ` pinskia at gcc dot gnu dot org
@ 2004-11-27 21:17 ` neroden at gcc dot gnu dot org
  2004-12-06  0:02 ` pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: neroden at gcc dot gnu dot org @ 2004-11-27 21:17 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |18693
              nThis|                            |


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2004-11-27 21:17 ` neroden at gcc dot gnu dot org
@ 2004-12-06  0:02 ` pinskia at gcc dot gnu dot org
  2004-12-06  0:13 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-12-06  0:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-06 00:02 -------
Hmm, I found another testcase where we are slow at LIM:
 loop invariant motion :   2.55 ( 5%) usr   0.40 ( 3%) sys   3.36 ( 4%) wall
This is PR8361.

Zdenek can you update your patch for the changes where V_MUST_DEF changes and see what the 
compile time improvements you get with the patch?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |8361
              nThis|                            |


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2004-12-06  0:02 ` pinskia at gcc dot gnu dot org
@ 2004-12-06  0:13 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
  2005-02-02  8:13 ` steven at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at atrey dot karlin dot mff dot cuni dot cz @ 2004-12-06  0:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at atrey dot karlin dot mff dot cuni dot cz  2004-12-06 00:12 -------
Subject: Re:  [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization

> ------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-06 00:02 -------
> Hmm, I found another testcase where we are slow at LIM:
>  loop invariant motion :   2.55 ( 5%) usr   0.40 ( 3%) sys   3.36 ( 4%) wall
> This is PR8361.
> 
> Zdenek can you update your patch for the changes where V_MUST_DEF changes and see what the 
> compile time improvements you get with the patch?

there is an updated version of the patch

http://gcc.gnu.org/ml/gcc-patches/2004-10/msg01642.html

that should work (possibly with minor changes due to some renaming).


-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2004-12-06  0:13 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
@ 2005-02-02  8:13 ` steven at gcc dot gnu dot org
  2005-02-02  8:38 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-02-02  8:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-02-02 08:13 -------
Any news here?  This is one of the more serious compile time problems 
in GCC4, I've seen a number of cases where these passes are high up in 
the profile. 

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2005-02-02  8:13 ` steven at gcc dot gnu dot org
@ 2005-02-02  8:38 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
  2005-02-02  9:17 ` steven at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at atrey dot karlin dot mff dot cuni dot cz @ 2005-02-02  8:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at atrey dot karlin dot mff dot cuni dot cz  2005-02-02 08:38 -------
Subject: Re:  [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization

> Any news here?  This is one of the more serious compile time problems 
> in GCC4, I've seen a number of cases where these passes are high up in 
> the profile. 

As for ivopts, the problems reported under this PR are solved.  So if
you have a testcase where ivopts eat more than 1% of time without a good
reason, please let me know.

I will try to update and resend the patch for inefficiency in store
motion.


-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2005-02-02  8:38 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
@ 2005-02-02  9:17 ` steven at gcc dot gnu dot org
  2005-02-07  5:41 ` rakdver at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-02-02  9:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-02-02 09:17 -------
18687 is one example where IVopts takes a significant amount of time (9%). 

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2005-02-02  9:17 ` steven at gcc dot gnu dot org
@ 2005-02-07  5:41 ` rakdver at gcc dot gnu dot org
  2005-02-23 14:29 ` steven at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rakdver at gcc dot gnu dot org @ 2005-02-07  5:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rakdver at gcc dot gnu dot org  2005-02-06 20:25 -------
Updated version of the patch:

http://gcc.gnu.org/ml/gcc-patches/2005-02/msg00205.html

-- 


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


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

* [Bug tree-optimization/17790] [4.0 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2005-02-07  5:41 ` rakdver at gcc dot gnu dot org
@ 2005-02-23 14:29 ` steven at gcc dot gnu dot org
  2005-04-21  5:04 ` [Bug tree-optimization/17790] [4.0/4.1 " mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-02-23 14:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-02-23 09:25 -------
Is this patch still 4.0 material? No reviewers have looked at it yet :-/ 
 

-- 


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


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

* [Bug tree-optimization/17790] [4.0/4.1 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2005-02-23 14:29 ` steven at gcc dot gnu dot org
@ 2005-04-21  5:04 ` mmitchel at gcc dot gnu dot org
  2005-07-08  1:44 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-04-21  5:04 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.0                       |4.0.1


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


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

* [Bug tree-optimization/17790] [4.0/4.1 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2005-04-21  5:04 ` [Bug tree-optimization/17790] [4.0/4.1 " mmitchel at gcc dot gnu dot org
@ 2005-07-08  1:44 ` mmitchel at gcc dot gnu dot org
  2005-07-25  4:29 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-07-08  1:44 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.1                       |4.0.2


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


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

* [Bug tree-optimization/17790] [4.0/4.1 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2005-07-08  1:44 ` mmitchel at gcc dot gnu dot org
@ 2005-07-25  4:29 ` pinskia at gcc dot gnu dot org
  2005-09-12 12:02 ` rguenth at gcc dot gnu dot org
  2005-09-27 16:23 ` mmitchel at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-25  4:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-25 04:13 -------
Does anyone have new numbers?

-- 


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


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

* [Bug tree-optimization/17790] [4.0/4.1 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (16 preceding siblings ...)
  2005-07-25  4:29 ` pinskia at gcc dot gnu dot org
@ 2005-09-12 12:02 ` rguenth at gcc dot gnu dot org
  2005-09-27 16:23 ` mmitchel at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2005-09-12 12:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rguenth at gcc dot gnu dot org  2005-09-12 12:02 -------
Current mainline with -O3 -funroll-loops daten.f takes 3.6s to compile.  

 loop invariant motion :   0.01 ( 0%) usr   0.00 ( 0%) sys   0.01 ( 0%) wall   
   0 kB ( 0%) ggc
 tree canonical iv     :   0.00 ( 0%) usr   0.00 ( 0%) sys   0.01 ( 0%) wall   
   8 kB ( 0%) ggc

Multiple compilations finally produce an evenly distributed profile:

samples  %        image name               symbol name
91        4.8097  no-vmlinux               (no symbols)
32        1.6913  f951                     cse_insn
29        1.5328  f951                     count_reg_usage
28        1.4799  f951                     mark_set_1
26        1.3742  f951                     constrain_operands
23        1.2156  f951                     bitmap_bit_p
22        1.1628  f951                     find_reg_note
22        1.1628  f951                     init_alias_analysis
20        1.0571  f951                     for_each_rtx_1
19        1.0042  f951                     invalidate


-- 


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


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

* [Bug tree-optimization/17790] [4.0/4.1 Regression] Significant compile time increases for sixtrack with tree LICM and IV optimization
  2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
                   ` (17 preceding siblings ...)
  2005-09-12 12:02 ` rguenth at gcc dot gnu dot org
@ 2005-09-27 16:23 ` mmitchel at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-09-27 16:23 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.2                       |4.0.3


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


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

end of thread, other threads:[~2005-09-27 16:23 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-02  2:25 [Bug tree-optimization/17790] New: Significant compile time increases for sixtrack with tree LICM and IV optimization dberlin at gcc dot gnu dot org
2004-10-02  2:26 ` [Bug tree-optimization/17790] [4.0 Regression] " pinskia at gcc dot gnu dot org
2004-10-17 19:05 ` rakdver at gcc dot gnu dot org
2004-10-17 19:20 ` rakdver at gcc dot gnu dot org
2004-10-17 19:44 ` dberlin at gcc dot gnu dot org
2004-10-17 20:16 ` rakdver at gcc dot gnu dot org
2004-11-25 20:47 ` pinskia at gcc dot gnu dot org
2004-11-27 21:17 ` neroden at gcc dot gnu dot org
2004-12-06  0:02 ` pinskia at gcc dot gnu dot org
2004-12-06  0:13 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
2005-02-02  8:13 ` steven at gcc dot gnu dot org
2005-02-02  8:38 ` rakdver at atrey dot karlin dot mff dot cuni dot cz
2005-02-02  9:17 ` steven at gcc dot gnu dot org
2005-02-07  5:41 ` rakdver at gcc dot gnu dot org
2005-02-23 14:29 ` steven at gcc dot gnu dot org
2005-04-21  5:04 ` [Bug tree-optimization/17790] [4.0/4.1 " mmitchel at gcc dot gnu dot org
2005-07-08  1:44 ` mmitchel at gcc dot gnu dot org
2005-07-25  4:29 ` pinskia at gcc dot gnu dot org
2005-09-12 12:02 ` rguenth at gcc dot gnu dot org
2005-09-27 16:23 ` mmitchel 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).