iDCT implementation in GCC NEON intrinsics, for your perusal

2011-06-27 Thread Michael K. Edwards
Here's an implementation of an 8x8 integer DCT done with NEON intrinsics -- essentially a translation of the assembly version in libjpeg-turbo trunk: https://github.com/mkedwards/crosstool-ng/blob/master/patches/libjpeg-turbo/trunk/0001-Implement-jsimd_idct_ifast-using-NEON-intrinsics.patch It is

Added an ARMv5E board

2011-06-27 Thread Michael Hope
I've added a pico-SAM9G45 board to my home office setup. It's called libra1 and runs Debian 6.0. The nice thing about this board is it has 256 MB of RAM and should be able to run SPEC 2000. I'll start using it to check that our GCC changes don't cause significant performance regressions on earli

Re: GCC cross compilation help: [cannot compute suffix of object files]

2011-06-27 Thread Bernhard Rosenkranzer
Hi, by any chance, are you trying to build gcc with c++ support before building a libc? The usual cause for this is that you don't have a libc yet. (You have to build a minimal compiler (just C) first, then use that to build a libc, then build a full compiler). ttyl bero 2011/6/27 : > Hello, >  

[ACTIVITY] 20th - 24th June

2011-06-27 Thread Andrew Stubbs
Continued work on widening multiplies. Finally got a point where I have something I'm happy to post upstream! Posted here: http://www.mail-archive.com/gcc-patches@gcc.gnu.org/msg08720.html Richard Guenther reviewed one of the patches, and found a flaw, so I've been working on addresssing that.

Re: GCC cross compilation help: [cannot compute suffix of object files]

2011-06-27 Thread mins . lin
Hello, It succeeded! Thanks~ But another obstacle: - checking for arm-eabi-gcc... /home/minslin/ET0001A/build-gcc/./gcc/xgcc -B/home/minslin/ET0001A/build-gcc/./gcc/ -B/home/minslin/linaro-gcc/arm-eabi/bin/ -B/home/minslin/linaro-gcc/arm-eabi/lib/ -isystem /home/minslin

Re: GCC cross compilation help: [cannot compute suffix of object files]

2011-06-27 Thread Bernhard Rosenkranzer
Hi, you may have to regenerate the configure scripts -- the patch touches a file that is only used during configure script generation. Try running aclocal -I config autoconf in libstdc++-v3 after applying the patch. ttyl bero 2011/6/27 : > Hi Bernhard, >         I applied this patch, but still g