On Mon, Dec 22, 2008 at 08:21:08PM +0100, Manuel Lauss wrote: > Add cpu feature override constants for Alchemy. > > Code generated for Alchemy does not use all MIPS32r1 features. Add cpu > feature overrides tailored for Alchemy chips and help GCC create better > code. As a nice sideeffect the size of the resulting kernel is reduced > by a few kilobytes (~200kB for a non-modular db1200 devboard build). The enormous size difference is probably 99% due to atomic and bitops which exist in LL/SC and non-LL/SC versions and without the header gcc will expand the inline function each time. That will hurt, also performance. Also the big size difference suggests that we may want to outline some or all of these functions. Ralf