[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2007-07-21 Thread vda dot linux at googlemail dot com
--- Comment #4 from vda dot linux at googlemail dot com 2007-07-22 00:02 --- With t.c being a timing program from comment #3 and serpent.c from attachment, I build testing program for 3.4.3, 3.4.6 and 4.2.1, -Os and -O3, like this: ver=NNN gcc -Os -o serpent-${ver}-Os serpent.c t.c

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2007-07-21 Thread vda dot linux at googlemail dot com
--- Comment #5 from vda dot linux at googlemail dot com 2007-07-22 00:10 --- Basically, the reason for the regression is that 4.2.1 doesn't figure out how to use i386 registers efficiently. 3.4.3 was able to do it. Difference in assembly: # grep 'mov.*(' serpent-343-O3.s | wc -l 21

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2007-02-14 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.1.2 |4.1.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28481

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2007-02-04 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28481

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2007-02-03 Thread jsm28 at gcc dot gnu dot org
-- jsm28 at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28481

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2006-07-25 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-07-25 15:47 --- I get [EMAIL PROTECTED]:/tmp /space/rguenther/install/gcc-3.4.6/bin/gcc -O3 -c serpent.c [EMAIL PROTECTED]:/tmp size serpent.o textdata bss dec hex filename 3562 0 03562

[Bug target/28481] regression from 3.x: 4.1.1 uses memory where it can use registers

2006-07-25 Thread vda dot linux at googlemail dot com
--- Comment #3 from vda dot linux at googlemail dot com 2006-07-25 17:18 --- With this test program: #include sys/time.h #include stdio.h typedef unsigned u32; struct serpent_ctx { u32 expkey[132]; }; void serpent_encrypt(void *ctx, u32 *dst, const u32 *src); u32 v[4],u[4]; struct