linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] arm: use built-in byte swap function
@ 2013-01-29  1:30 Kim Phillips
  2013-01-29  8:35 ` Borislav Petkov
                   ` (2 more replies)
  0 siblings, 3 replies; 63+ messages in thread
From: Kim Phillips @ 2013-01-29  1:30 UTC (permalink / raw)
  To: Russell King, Andrew Morton
  Cc: Daniel Santos, Borislav Petkov, David Rientjes, Rusty Russell,
	David Woodhouse, linux-arm-kernel, linux-kernel

Enable the compiler intrinsic for byte swapping on arch ARM.  This
allows the compiler to detect and be able to optimize out byte
swappings, e.g. in big endian to big endian moves.

AFAICT, arm gcc got __builtin_bswap{32,64} support in 4.6,
and for the 16-bit version in 4.8.

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
---
akin to: http://comments.gmane.org/gmane.linux.kernel.cross-arch/16016

based on linux-next.  Depends on commit "compiler-gcc{3,4}.h: Use
GCC_VERSION macro" by Daniel Santos <daniel.santos@pobox.com>,
currently in the akpm branch.

RFC because of unfamiliarity with arch ARM, and that at91sam9rl,
at91rm9200, and lpd270 (so far, at least) builds fail with:

include/uapi/linux/swab.h:60: undefined reference to `__bswapsi2'

I'm using eldk-5.2.1/armv7a's arm-linux-gnueabi-gcc (GCC) 4.6.4
20120303 (prerelease)

 arch/arm/Kconfig              |    1 +
 include/linux/compiler-gcc4.h |    3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index eda8711..437d11a 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -3,6 +3,7 @@ config ARM
 	default y
 	select ARCH_BINFMT_ELF_RANDOMIZE_PIE
 	select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
+	select ARCH_USE_BUILTIN_BSWAP
 	select ARCH_HAVE_CUSTOM_GPIO_H
 	select ARCH_WANT_IPC_PARSE_VERSION
 	select BUILDTIME_EXTABLE_SORT if MMU
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h
index 68b162d..da5f728 100644
--- a/include/linux/compiler-gcc4.h
+++ b/include/linux/compiler-gcc4.h
@@ -67,7 +67,8 @@
 
 
 #ifdef CONFIG_ARCH_USE_BUILTIN_BSWAP
-#if GCC_VERSION >= 40400
+#if (!defined(__arm__) && GCC_VERSION >= 40400) || \
+    (defined(__arm__) && GCC_VERSION >= 40600)
 #define __HAVE_BUILTIN_BSWAP32__
 #define __HAVE_BUILTIN_BSWAP64__
 #endif
-- 
1.7.9.7



^ permalink raw reply related	[flat|nested] 63+ messages in thread
* Re: [RFC] arm: use built-in byte swap function
@ 2013-01-31 11:44 Woodhouse, David
  0 siblings, 0 replies; 63+ messages in thread
From: Woodhouse, David @ 2013-01-31 11:44 UTC (permalink / raw)
  To: linux, kim.phillips
  Cc: Woodhouse, David, bp, akpm, daniel.santos, rientjes, rusty,
	linux-arm-kernel, linux-kernel, robherring2

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 355 bytes --]

A quick test showed I only dropped 20 bytes from net/ipv4/built-in.o but that's with no 16-bit swap support (gcc 4.7).


--
dwmw2

(Apologies for HTML and top-posting; Android mailer is broken.)
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2013-11-05 21:50 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-29  1:30 [RFC] arm: use built-in byte swap function Kim Phillips
2013-01-29  8:35 ` Borislav Petkov
2013-01-29 16:46   ` Woodhouse, David
2013-01-29 17:42     ` Borislav Petkov
2013-01-29 17:55       ` Woodhouse, David
2013-01-29 18:10         ` Borislav Petkov
2013-01-30 10:22           ` Woodhouse, David
2013-01-31  2:09             ` Kim Phillips
2013-01-31  6:44               ` Borislav Petkov
2013-01-31  9:28               ` Russell King - ARM Linux
2013-01-31 20:59                 ` Kim Phillips
2013-01-31 21:33                   ` Borislav Petkov
2013-01-31 22:11                   ` Woodhouse, David
2013-02-01  0:37                     ` [PATCH v4] " Kim Phillips
2013-02-01 10:46                       ` Russell King - ARM Linux
2013-02-01  1:17                   ` [RFC] " Russell King - ARM Linux
2013-02-01  7:33                     ` Woodhouse, David
2013-02-06  3:04                       ` Kim Phillips
2013-02-06  9:02                         ` Woodhouse, David
2013-02-07  1:19                           ` Kim Phillips
2013-02-07 10:19                             ` Will Newton
2013-02-07 10:43                               ` Catalin Marinas
2013-02-07 18:13                             ` Russell King - ARM Linux
2013-02-08 17:25                               ` Woodhouse, David
2013-02-08 20:04                                 ` Nicolas Pitre
2013-02-08 22:40                                   ` Woodhouse, David
2013-02-08 22:47                                     ` Nicolas Pitre
2013-02-09  1:12                                       ` Kim Phillips
2013-02-09  3:16                                         ` Nicolas Pitre
2013-02-20  2:31                                           ` Kim Phillips
2013-02-20  2:38                                             ` Stephen Boyd
2013-02-20  3:17                                             ` Nicolas Pitre
2013-02-20 10:38                                               ` Woodhouse, David
2013-02-20 13:36                                                 ` Nicolas Pitre
2013-02-20 13:44                                                   ` Woodhouse, David
2013-02-20 14:06                                                     ` Nicolas Pitre
2013-02-20 14:53                                                       ` Woodhouse, David
2013-02-20 15:43                                                         ` Nicolas Pitre
2013-02-21  3:49                                                           ` Kim Phillips
2013-02-21  4:29                                                             ` Nicolas Pitre
2013-02-21  6:52                                                               ` Kim Phillips
2013-02-21 16:40                                                                 ` Nicolas Pitre
2013-02-22  2:33                                                                   ` Kim Phillips
2013-02-22  3:40                                                                     ` Nicolas Pitre
2013-02-23  1:40                                                                       ` [PATCH v6] " Kim Phillips
2013-02-23  2:40                                                                         ` Nicolas Pitre
2013-02-23 23:20                                                                         ` Woodhouse, David
2013-05-23 16:46                                                                           ` [PATCH v7] " Kim Phillips
2013-05-23 20:09                                                                             ` Nicolas Pitre
2013-05-23 23:13                                                                             ` Russell King - ARM Linux
2013-06-06 22:12                                                                               ` Russell King - ARM Linux
2013-06-06 22:23                                                                                 ` Borislav Petkov
2013-06-07  0:03                                                                                 ` Stephen Rothwell
2013-10-27  2:41                                                                             ` Nicolas Pitre
2013-11-05 21:45                                                                               ` Kim Phillips
2013-02-21 16:37                                                               ` [RFC] " Woodhouse, David
2013-02-21 17:27                                                                 ` Nicolas Pitre
2013-03-13 13:35                                             ` Woodhouse, David
2013-01-29 14:13 ` Russell King - ARM Linux
2013-01-29 14:43   ` Woodhouse, David
2013-01-29 14:53 ` Rob Herring
2013-01-29 15:10   ` Woodhouse, David
2013-01-31 11:44 Woodhouse, David

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).