Re: --enable-plugin option overloaded

2009-10-19 Thread Andrew Haley
Matthias Klose wrote: > --enable-plugin is used by classpath (part of libjava) and now by GCC > itself. disabling the build of the gcjwebplugin now disables plugin > support in GCC as well. Please could the option for enabling GCC plugin > support be renamed to something like --enable-plugins, > --

Re: When did arc-elf last build?

2009-10-19 Thread Richard Guenther
On Mon, Oct 19, 2009 at 3:19 AM, Joel Sherrill wrote: > Hi, > > I got a random unsolicited email about arc-elf since > I pop up in google a lot asking cross compiler questions. > I decided to try to build it and as PR41747 indicates > 4.3.4, 4.4.1, and the head all fail building libgcc2.c > in the

GCC 4.4.2 Released

2009-10-19 Thread Jakub Jelinek
The GNU Compiler Collection version 4.4.2 has been released. GCC 4.4.2 is a bug-fix release containing fixes for regressions and serious bugs in GCC 4.4.1. This release is available from the FTP servers listed at: http://www.gnu.org/order/ftp.html Please do not contact me directly regarding

Re: i370 port - constructing compile script

2009-10-19 Thread Paul Edwards
.../configure --target=i370-mvs --prefix=... --with-sysroot=... \ --enable-languages=c where prefix points to the directory where the cross-compiler should be installed, and sysroot points to the directory where the MVS libraries and header are installed. Ok, I used ../configure

char drawstrings[DRAW_MAX][] = { " .. give error

2009-10-19 Thread Bernd Roesch
Hi, I compile an old code which use this and i think its compile with Gcc 2.95 and the PPC GCC 1998 or 1999 it fail to compile with newer compiler. #define DRAW_MAX4 char drawstrings[DRAW_MAX][] = { "Number of points drawn using 3D hardware:", "Number of lines drawn using

Re: i370 port - constructing compile script

2009-10-19 Thread Ulrich Weigand
Paul Edwards wrote: > Ok, I used > > ../configure --target=i370-mvspdp --prefix=/devel/mvscross > --with-sysroot=/devel/mvshead > --enable-languages=c > > plus make and make install > > then I went to > > mvscross/bin and renamed i370-mvspdp-gcc to i370-mvspdp-xxx > > and replaced it with

Re: __attribute__((optimize)) and fast-math related oddities

2009-10-19 Thread Ian Lance Taylor
tbp writes: > Merrily trying to make a test-case showing how unmanageable it is to > try to override *math* flags per function, i soon had to stop > because... Please file a bug report. __attribute__((optimize())) is definitely only half-baked. Ian

Re: --enable-plugin option overloaded

2009-10-19 Thread Ian Lance Taylor
Andrew Haley writes: > Matthias Klose wrote: >> --enable-plugin is used by classpath (part of libjava) and now by GCC >> itself. disabling the build of the gcjwebplugin now disables plugin >> support in GCC as well. Please could the option for enabling GCC plugin >> support be renamed to somethin

Re: char drawstrings[DRAW_MAX][] = { " .. give error

2009-10-19 Thread Ian Lance Taylor
Bernd Roesch writes: > I compile an old code which use this and i think its compile with Gcc 2.95 > and the > PPC GCC 1998 or 1999 > it fail to compile with newer compiler. > > #define DRAW_MAX4 > char drawstrings[DRAW_MAX][] = { > "Number of points drawn using 3D hardware:",

Re: --enable-plugin option overloaded

2009-10-19 Thread Andrew Haley
Ian Lance Taylor wrote: > Andrew Haley writes: > >> Matthias Klose wrote: >>> --enable-plugin is used by classpath (part of libjava) and now by GCC >>> itself. disabling the build of the gcjwebplugin now disables plugin >>> support in GCC as well. Please could the option for enabling GCC plugin >

Re: __attribute__((optimize)) and fast-math related oddities

2009-10-19 Thread H.J. Lu
On Mon, Oct 19, 2009 at 10:34 AM, Ian Lance Taylor wrote: > tbp writes: > >> Merrily trying to make a test-case showing how unmanageable it is to >> try to override *math* flags per function, i soon had to stop >> because... > > Please file a bug report. > > __attribute__((optimize())) is definit

RE: Understanding IRA

2009-10-19 Thread Ian Bolton
Hi Jeff and Vladimir. Jeff: I'd be interested in trying the patch if you can send it my way. Vladimir: Today I have seen reasonable improvements on progressively-trimmed-down versions of a *single* test case by applying some cost adjustments in the case when an operand wants one of our bottom reg

Re: C++ Plugins

2009-10-19 Thread Benjamin Smedberg
On 10/11/09 12:13 PM, Terrence Miller wrote: > (Version 4.5.0) > > There are plugin callbacks which trigger at the end of processing types > and C++ functions, > but I can not find a clean way for plugin code to notice a top-level > variable declaration. > > I'm hoping that the answer does not re

Re: Understanding IRA

2009-10-19 Thread Vladimir Makarov
Ian Bolton wrote: Hi Jeff and Vladimir. Jeff: I'd be interested in trying the patch if you can send it my way. Vladimir: Today I have seen reasonable improvements on progressively-trimmed-down versions of a *single* test case by applying some cost adjustments in the case when an operand wants o

Re: C++ Plugins

2009-10-19 Thread Terrence Miller
Benjamin Smedberg wrote: On 10/11/09 12:13 PM, Terrence Miller wrote: (Version 4.5.0) There are plugin callbacks which trigger at the end of processing types and C++ functions, but I can not find a clean way for plugin code to notice a top-level variable declaration. I'm hoping that the an

Improving code with no offset addressing

2009-10-19 Thread Michael Hope
Hi there. The architecture I'm working on porting gcc to has indirect addressing but no constant offset or register offset versions. Code like this: void fill(int* p) { p[0] = 0; p[1] = 0; p[2] = 0; p[3] = 0; Turns into: X = p *X = 0 X = X + 4 *X = 0 X = p X = X + 8 *X = 0 X = p

Re: When did arc-elf last build?

2009-10-19 Thread Joel Sherrill
Joern Rennecke wrote: Quoting Joel Sherrill : Hi, I got a random unsolicited email about arc-elf since I pop up in google a lot asking cross compiler questions. I decided to try to build it and as PR41747 indicates 4.3.4, 4.4.1, and the head all fail building libgcc2.c in the same way. T

Re: When did arc-elf last build?

2009-10-19 Thread Joern Rennecke
Quoting Joel Sherrill : The code on the trunk is unbuildable and has been for a long time. I'm not an arc user but wonder if it is better to have functional code on the trunk without a maintainer since it is available than non-functional code on the trunk without a maintainer. :) It depends on

Re: Alias analysis or DSE problem?

2009-10-19 Thread Justin Seyster
Thanks a lot for the help! It looks like creating a temporary took care of it. On Sat, Oct 17, 2009 at 7:41 AM, Richard Guenther wrote: > I think the call you insert is not of valid gimple form - an address > argument has to fulfill the is_gimple_min_invariant() predicate. > Thus I suspect you h

Re: __attribute__((optimize)) and fast-math related oddities

2009-10-19 Thread tbp
On Mon, Oct 19, 2009 at 7:34 PM, Ian Lance Taylor wrote: > Please file a bug report. > __attribute__((optimize())) is definitely only half-baked. Apparently the code i've posted is just a variation around that 1 year old PR 37565 and if that doesn't work, worrying about the rest is entirely futile

[MIPS] cannot split restore_gp

2009-10-19 Thread Fu, Chao-Ying
Hi, G++ could not split restore_gp. Please check this test (from #line 15017 "configure" of gcc/libstdc++-v3/). # cat foo.cpp struct S { ~S(); }; void bar(); void foo() { S s; bar(); } # ~/dev/gcc45/build/gcc/cc1plus -quiet foo.cpp -o foo.s -mno-shared -mplt -mabicalls -G0 foo.cpp: In fun

Need help in understanding code generated for C++ exception handling

2009-10-19 Thread Shankar Iyer
Hi, I have compiled and generated a C++ shared library with the "-fPIC" option. But this shared library requires text relocation during runtime and is not usable on seLinux which disables writeable text segments. The text relocation is due to use of exceptions inside the shared library. There