assembly

2006-06-07 Thread Greta Gilbert
Trading alert! Just do yourself a favor and watch A B S Y tomorrow morning, and don't say we didn't tell you... Talk about flying under the radar? Isn't that what we look for? Trade Date : Monday, June 7th, 2006 Company Name : AbsoluteSKY Ticker : A B S Y Price : $0.95 5month Target : $1 -

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-27 Thread Albert D. Cahalan
On May 25 2002, Andrew Patrikalakis wrote: With all the recent talk of use of assembly on the PowerPC, I came up with a patch to use assembly versions of memcpy. It's about 35% faster. Here is a sample of the memcpy speed test (which also now works): You're going to die laughing. I beat

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread Rogério Brito
On May 25 2002, Andrew Patrikalakis wrote: Hello all, Hi, Andrew. With all the recent talk of use of assembly on the PowerPC, I came up with a patch to use assembly versions of memcpy. It's about 35% faster. Here is a sample of the memcpy speed test (which also now works

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread benh
) may be coding the idct, motion compensation and deinterlacing in assembly also. There are already altivec implementations, but no ordinary PPC asm ones. One other big killer on PPC is byte access. Look at the bitstream decoding, if you manage to do only 32 bits aligned loads from memory

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread benh
BTW. Another place where you can get improved perfs is improving the memcpy's used to blit the Xv source image to the DMA buffers in R128DMA(). Currently, if using PCIGART, the target DMA buffers are cacheable. When using AGP, though, they aren't. In both cases, using FP registers to do the blit

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread Michel Dänzer
On Sun, 2002-05-26 at 10:54, Rogério Brito wrote: BTW, I am using gcc-3.0 to compile xine-libs Have you tried 3.1? and I added some extra options to the configure script (-mfused-madd, -mcpu=750, -mtune=750, -O9). According to info gcc(-3.x): * -mfused-madd is the default

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread Albert D. Cahalan
Michel =?ISO-8859- writes: On Sun, 2002-05-26 at 10:54, Rogério Brito wrote: * Anything more than -O3 seems to be useless, I think Albert even suggested trying with only -O2 I suggest trying -Os as well. Sometimes it runs fastest, because smaller code fits in the instruction cache better.

Re: [xine-user] [ANN] PowerPC Assembly Patch

2002-05-26 Thread Tom Rini
On Sun, May 26, 2002 at 10:58:13AM -0400, Albert D. Cahalan wrote: Michel =?ISO-8859- writes: On Sun, 2002-05-26 at 10:54, Rog?rio Brito wrote: * Anything more than -O3 seems to be useless, I think Albert even suggested trying with only -O2 I suggest trying -Os as well. Sometimes it