public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: tree-ssa branch: Call for preliminary testing
@ 2003-05-12  2:13 John David Anglin
  2003-05-12 12:43 ` Diego Novillo
  0 siblings, 1 reply; 50+ messages in thread
From: John David Anglin @ 2003-05-12  2:13 UTC (permalink / raw)
  To: gcc; +Cc: dnovillo

The build fails in stage2 on hppa-unknown-linux-gnu due to a bogus warning:

stage1/xgcc -Bstage1/ -B/home/dave/opt/gnu/gcc/tree-ssa/hppa-linux/bin/ -c   -g -O2  -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -Werror -fno-common   -DHAVE_CONFIG_H    -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include -I../../gcc/gcc/../libbanshee/libcompat -I../../gcc/gcc/../libbanshee -I../../gcc/gcc/../libbanshee/points-to ../../gcc/gcc/regmove.c -o regmove.o
../../gcc/gcc/regmove.c: In function `try_auto_increment':
../../gcc/gcc/regmove.c:108: warning: `inc_code' might be used uninitialized in
this function

I can't see any way inc_code might be used without being initialized.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc-cnrc.gc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6602)

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Re: tree-ssa branch: Call for preliminary testing
@ 2003-05-11 17:11 Richard Guenther
  2003-05-12 12:43 ` Diego Novillo
  0 siblings, 1 reply; 50+ messages in thread
From: Richard Guenther @ 2003-05-11 17:11 UTC (permalink / raw)
  To: Diego Novillo; +Cc: gcc

I just tested compiling the POOMA library with g++-ssa (GCC) 3.5-tree-ssa
20030511 (merged 20030504) and got failure due to OOM:

g++-ssa -c /net/bellatrix/home/rguenth/src/pooma-work/r2/src/Field/FieldCentering.cmpl.cpp
-o /net/bellatrix/home/rguenth/src/pooma-work/r2/src/Field/LINUXgccSSA/FieldCentering.cmpl.o
  -ftemplate-depth-80 -fno-exceptions -Drestrict=__restrict__  -DNOPAssert -DNOCTAssert -O2 -march=athlon
-funroll-loops -fomit-frame-pointer --param min-inline-insns=200 -I/net/bellatrix/home/rguenth/src/pooma-work/r2/src \
-I/net/bellatrix/home/rguenth/src/pooma-work/r2/lib/LINUXgccSSA  -I/home/rguenth/ix86/3.x/include

cc1plus: out of memory allocating 564784160 bytes after a total of 28152172 bytes
Command exited with non-zero status 1

gcc-3.3 uses about 300MB on this.

No candy from me ;)

Richard.

^ permalink raw reply	[flat|nested] 50+ messages in thread
* tree-ssa branch: Call for preliminary testing
@ 2003-05-07 14:25 Diego Novillo
  2003-05-07 14:30 ` Diego Novillo
                   ` (3 more replies)
  0 siblings, 4 replies; 50+ messages in thread
From: Diego Novillo @ 2003-05-07 14:25 UTC (permalink / raw)
  To: gcc

I'm looking for volunteers to try out the tree-ssa branch with
their favourite C/C++ code.  Be warned that at this time you
shouldn't expect the branch compiler to be any better than
mainline.  In fact, it will probably be worse.

This call for testing is mostly to gather data that will help
finding the most obvious problems with the branch.  Besides the
obvious correctness issues, I'm mostly concerned with compile and
run time performance.

If you're willing to help, I'd like to know:

- Compile time comparisons vs mainline (-ftime-report or gprof).


- Run time comparisons vs mainline (oprofile or gprof or other
  profilers).
  
  Sometimes it's useful to compare the pretty-printed dumps given
  by -fdump-tree-all.  Particularly, comparing .t05.simple vs
  .t14.optimized shows the difference before and after
  optimization.

  Also, comparing the .00.rtl between the branch and mainline may
  give hints.  Direct comparison on large codes will probably not
  be useful because the branch generates RTL from GIMPLE trees,
  while mainline generates RTL directly from FE trees.


- Correctness.  Does the branch compiler fail or generate
  incorrect code?  Does it fail to bootstrap on your platform?


Thanks.  Diego.

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

end of thread, other threads:[~2003-06-14 19:38 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-12  2:13 tree-ssa branch: Call for preliminary testing John David Anglin
2003-05-12 12:43 ` Diego Novillo
2003-05-15 17:50   ` John David Anglin
2003-05-15 19:32     ` Diego Novillo
  -- strict thread matches above, loose matches on Subject: below --
2003-05-11 17:11 Richard Guenther
2003-05-12 12:43 ` Diego Novillo
2003-05-12 12:58   ` Steven Bosscher
2003-05-12 13:08     ` Andrew MacLeod
2003-05-12 13:16     ` Diego Novillo
2003-05-12 13:22       ` Andrew MacLeod
2003-05-12 13:49       ` Richard Guenther
2003-05-12 14:05         ` Daniel Berlin
2003-05-12 14:16           ` Andrew MacLeod
2003-05-12 14:17           ` Diego Novillo
2003-06-12 15:36         ` Diego Novillo
2003-05-12 13:02   ` Steven Bosscher
2003-05-12 13:09     ` Diego Novillo
2003-05-12 13:59     ` Daniel Berlin
2003-05-12 14:12       ` Andrew MacLeod
2003-05-12 13:02   ` Richard Guenther
2003-06-12 16:09     ` Diego Novillo
2003-06-12 21:10       ` Richard Guenther
2003-06-12 21:29         ` Diego Novillo
2003-06-13  9:58           ` Richard Guenther
2003-06-13 11:38             ` Diego Novillo
2003-06-14 11:41               ` Richard Guenther
2003-06-13 20:15       ` Andrew MacLeod
2003-06-14 20:06         ` Richard Guenther
2003-05-07 14:25 Diego Novillo
2003-05-07 14:30 ` Diego Novillo
2003-05-07 17:54 ` Qiong Cai
2003-05-07 18:02   ` law
2003-05-09  1:31     ` Qiong Cai
2003-05-09  2:02       ` Andrew Pinski
2003-05-07 18:24   ` Daniel Berlin
2003-05-08  5:51 ` Toon Moene
2003-05-08 13:26   ` Diego Novillo
2003-05-09 16:46 ` Gerald Pfeifer
2003-05-09 17:28   ` Diego Novillo
2003-05-09 17:37     ` Diego Novillo
2003-05-09 19:02       ` Eric Botcazou
2003-05-10 14:19     ` Gerald Pfeifer
2003-05-10 14:43       ` Graham Stott
2003-05-10 15:34         ` Daniel Berlin
2003-05-12 12:43       ` Diego Novillo
2003-05-10 15:04     ` Gerald Pfeifer
2003-05-12 14:21   ` Gerald Pfeifer
2003-05-12 16:27     ` Steven Bosscher
2003-05-20 10:44     ` Gerald Pfeifer
2003-05-20 11:39       ` Diego Novillo

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