This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: 27% regression of gcc 4.3 performance on cpu2k6/calculix
- From: Grigory Zagorodnev <grigory_zagorodnev at linux dot intel dot com>
- To: Toon Moene <toon at moene dot indiv dot nluug dot nl>
- Cc: gcc mailing list <gcc at gcc dot gnu dot org>, Diego Novillo <dnovillo at redhat dot com>, "H. J. Lu" <hjl at lucon dot org>
- Date: Tue, 16 Jan 2007 19:05:34 +0300
- Subject: Re: 27% regression of gcc 4.3 performance on cpu2k6/calculix
- References: <45ABE866.4000008@moene.indiv.nluug.nl>
Toon Moene wrote:
Calculix is a combined C/Fortran program. Did you try to compile the
Fortran parts with --param max-aliased-vops=<something higher than the
default 50> ?
Right, calculix is a combined program. Gprof says the regression is in
e_c3d routine which is 1k lines of Fortran code.
Various max-aliased-vops give no difference for calculix:
default (assume --param max-aliased-vops=50)
1780 sec.
--param max-aliased-vops=80
1789 sec.
--param max-aliased-vops=20
1780 sec.
Setting of max-aliased-vops to value greater than 80 gives an ICE:
allocation.f: In function 'allocation':
allocation.f:19: internal compiler error: in ssa_operand_alloc, at
tree-ssa-oper
ands.c:365
- Grigory