Re: locating unsigned type for non-standard precision

2012-04-25 Thread Richard Guenther
On Tue, Apr 24, 2012 at 7:24 PM, Georg-Johann Lay wrote: > Richard Guenther wrote: > >>> I've run into another issue supporting a 20-bit integer for which I'd >>> appreciate a hint.  With this code: >>> >>>   typedef long int __attribute__((__a20__)) int20_t; >>>   int20_t xi; >>>   int20_t addit

Re: GCC Plugins - CC1 - Multiple processes on PLUGIN_FINISH_TYPE

2012-04-25 Thread Diego Novillo
On 4/25/12 1:37 AM, Brett Foster wrote: When I add: register_callback (BaseName, PLUGIN_FINISH_TYPE, CinsGcc_CB_Type, NULL); The plugin appears to be loaded by a 2nd process, initialized, and provided with what appears to be much the same data (at least from my view). That's correct.

[ARM]Extra load store/instructions compared to gcc-3.4

2012-04-25 Thread Alexey Kravets
Hi guys, I have a test case (shell sort, see attached) compiled with different ARM compilers: GCC-4.6.3, GCC-3.4.6, and ARMCC. Both ARMCC and GCC-3.4.6 generate quite optimal assembly while GCC-4.6.3 inserts extra load/store instructions compared to the other compilers. Can the SSA representatio

Re: [ARM]Extra load store/instructions compared to gcc-3.4

2012-04-25 Thread Alexander Monakov
Hi, This is a case when ivopts pass makes too many induction variables, exceeding the number of available registers. If you want to debug it, see ivopts_global_cost_for_size in tree-ssa-loop-ivopts.c and its callers; perhaps, the issue is that it fails to account for IVs created in inner loops wh

Re: GCC 2.8.1 for i370

2012-04-25 Thread Ian Lance Taylor
"Paul Edwards" writes: > It seems to me that in addition to doing a strcmp to cc1, I would > also have needed to do a strcmp to cccp. Can someone confirm > that GCC 2.8.1 and GCC 3.4.6 differ in that respect - ie there > was an extra executable (cccp) in GCC 2.8.1 when doing that > task of conver

Re: [ARM]Extra load store/instructions compared to gcc-3.4

2012-04-25 Thread Alexey Kravets
Hi, On Wed, Apr 25, 2012 at 05:00:40PM +0400, Alexander Monakov wrote: > Hi, > > This is a case when ivopts pass makes too many induction variables, exceeding > the number of available registers. If you want to debug it, see > ivopts_global_cost_for_size in tree-ssa-loop-ivopts.c and its callers;

Re: GCC Plugins - CC1 - Multiple processes on PLUGIN_FINISH_TYPE

2012-04-25 Thread fosterb
That much I understand. But it's cc1 that is in two processes, and gcc -v only shows it being invoked once. Finally the output on stderr is only from one of the two processes. Remove the finish type register and suddenly cc1 runs (as expected) and the logfiles PID and the console PID match once

Re: GCC Plugins - CC1 - Multiple processes on PLUGIN_FINISH_TYPE

2012-04-25 Thread Diego Novillo
[ Please do not send html mail. It will be rejected by the list server. ] On Wed, Apr 25, 2012 at 10:16, wrote: > That much I understand. But it's cc1 that is in two processes, and gcc -v > only shows it being invoked once. Finally the output on stderr is only from > one of the two processes.

Re: GCC Plugins - CC1 - Multiple processes on PLUGIN_FINISH_TYPE

2012-04-25 Thread Richard Guenther
On Wed, Apr 25, 2012 at 4:23 PM, Diego Novillo wrote: > [ Please do not send html mail.  It will be rejected by the list server. ] > > On Wed, Apr 25, 2012 at 10:16, wrote: > >> That much I understand. But it's cc1 that is in two processes, and gcc -v >> only shows it being invoked once. Finally

Re: GCC Plugins - CC1 - Multiple processes on PLUGIN_FINISH_TYPE

2012-04-25 Thread Brett Foster
Ah! I see what might be happening. I was using assert(0) in the callback to stop the program's execution (to examine the output at that location). When I do this, I get the funky results. (I was surprised it was seen as HTML seeing as it was sent from my blackberry (no html e-mail editing). The co

Re: Question on scan_one_insn in IRA about load parameters from stack slot.

2012-04-25 Thread Vladimir Makarov
On 04/24/2012 11:56 PM, Bin.Cheng wrote: Hi, In scan_one_insn, gcc checks whether an insn loads a parameter from its stack slot, and then record the fact by decrease the memory cost. What I do not understand is the check condition like below checks the REG_EQUIV note, rather than checking memory

Re: locating unsigned type for non-standard precision

2012-04-25 Thread Georg-Johann Lay
Richard Guenther wrote: > On Tue, Apr 24, 2012 at 7:24 PM, Georg-Johann Lay wrote: >> Richard Guenther wrote: >> I've run into another issue supporting a 20-bit integer for which I'd appreciate a hint. With this code: typedef long int __attribute__((__a20__)) int20_t;

Re: GCC 2.8.1 for i370

2012-04-25 Thread Paul Edwards
It seems to me that in addition to doing a strcmp to cc1, I would also have needed to do a strcmp to cccp. Can someone confirm that GCC 2.8.1 and GCC 3.4.6 differ in that respect - ie there was an extra executable (cccp) in GCC 2.8.1 when doing that task of converting from C to assember (ie compil

Re: locating unsigned type for non-standard precision

2012-04-25 Thread Georg-Johann Lay
Georg-Johann Lay wrote: > Richard Guenther wrote: >> On Tue, Apr 24, 2012 at 7:24 PM, Georg-Johann Lay wrote: >>> Richard Guenther wrote: >>> > I've run into another issue supporting a 20-bit integer for which I'd > appreciate a hint. With this code: > > typedef long int __attri

Re: in-class function definitions?

2012-04-25 Thread Dodji Seketeli
Hello Rick, Since nobody responded, I'll try. :-) rick shelton a écrit: > How does the compiler handle an in-class function definition? > Example: > > // File A.h > > class A { >  int foo(void) { return x; } >  int bar(void); >  int x; > > } > > // File A.cc > #include "A.h" > int A::bar(void)

The Linux binutils 2.22.52.0.2 is released

2012-04-25 Thread H.J. Lu
This is the beta release of binutils 2.22.52.0.2 for Linux, which is based on binutils 2012 0424 in CVS on sourceware.org plus various changes. It is purely for Linux. All relevant patches in patches have been applied to the source tree. You can take a look at patches/README to see what have been

Re: GCC 2.8.1 for i370

2012-04-25 Thread Andreas Schwab
"Paul Edwards" writes: > It uses JCL (example below that you may find amusing), and there is a > 100-character limit on the parameter. All subcommands support response files (@foo), which can be used to work around such a limit. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key finger

[pph] Merge from trunk rev 186776.

2012-04-25 Thread Diego Novillo
I had to adjust a couple of files and a test case, but other than that, no surprises. Tested on x86_64. Diego.