e76f30a57c
* Use Newton-Raphson divider on ARMv5e and ARMv6, about 7% speedup on Gigabeat S. * On ARMv4 targets using IRAM, remove insane filter buffer from IRAM, fill available IRAM with LUT of reciprocals for small divisors - speedup varies according to target and available IRAM, APE normal sample is approx. 109% RT on e200. * Rename apps/codecs/lib/udiv32_armv4.S to apps/codecs/lib/udiv32_arm.S, which includes dividers for all ARM targets specialized for APE. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24354 a1c6a512-1295-4272-9138-f99709370657
23 lines
310 B
Text
23 lines
310 B
Text
#if CONFIG_CODEC == SWCODEC /* software codec platforms */
|
|
codeclib.c
|
|
fixedpoint.c
|
|
|
|
mdct2.c
|
|
mdct_lookup.c
|
|
#ifdef CPU_ARM
|
|
mdct_arm.S
|
|
setjmp_arm.S
|
|
udiv32_arm.S
|
|
#endif
|
|
|
|
#ifdef CPU_COLDFIRE
|
|
setjmp_cf.S
|
|
#endif
|
|
|
|
#ifdef CPU_MIPS
|
|
setjmp_mips.S
|
|
#endif
|
|
|
|
#elif defined(SIMULATOR) && defined(__APPLE__)
|
|
osx.dummy.c
|
|
#endif
|