]> git.karo-electronics.de Git - karo-tx-linux.git/commit
x86: enable ARCH_USE_BUILTIN_BSWAP
authorDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 3 Dec 2012 16:50:01 +0000 (16:50 +0000)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Thu, 20 Dec 2012 01:05:25 +0000 (01:05 +0000)
commit667add99b80f23c6298f4e8ee83ef11d8b2b940b
tree307d2f0dfa373da4ab948dfb9e7c0471abf073f3
parent2fdd053bc7fb5ed1f61533fd66d9ebd2a22cc282
x86: enable ARCH_USE_BUILTIN_BSWAP

With -mmovbe enabled (implicit with -march=atom), this allows the
compiler to use the movbe instruction. This doesn't have a significant
effect on code size (unlike on PowerPC), because the movbe instruction
actually takes as many bytes to encode as a simple mov and a bswap. But
for Atom in particular I believe it should give a performance win over
the mov+bswap alternative. That was kind of why movbe was invented in
the first place, after all...

I've done basic functionality testing with IPv6 and Legacy IP, but no
performance testing. The EFI firmware on my test box unfortunately no
longer starts up.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/Kconfig