All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [v2] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP*
@ 2021-02-26 16:11 ` Arnd Bergmann
  0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2021-02-26 16:11 UTC (permalink / raw)
  To: Andrew Morton, Masahiro Yamada
  Cc: Miguel Ojeda, Luc Van Oostenryck, Arnd Bergmann,
	Nathan Chancellor, Kees Cook, Miguel Ojeda, Nick Desaulniers,
	Nick Hu, Greentime Hu, Vincent Chen, Paul Walmsley,
	Palmer Dabbelt, Albert Ou, Guo Ren, Randy Dunlap, Sami Tolvanen,
	Marco Elver, Arvind Sankar, clang-built-linux, linux-kernel,
	linux-riscv, linux-csky

From: Arnd Bergmann <arnd@arndb.de>

Separating compiler-clang.h from compiler-gcc.h inadventently dropped the
definitions of the three HAVE_BUILTIN_BSWAP macros, which requires falling
back to the open-coded version and hoping that the compiler detects it.

Since all versions of clang support the __builtin_bswap interfaces,
add back the flags and have the headers pick these up automatically.

This results in a 4% improvement of compilation speed for arm defconfig.

Note: it might also be worth revisiting which architectures set
CONFIG_ARCH_USE_BUILTIN_BSWAP for one compiler or the other, today
this is set on six architectures (arm32, csky, mips, powerpc, s390,
x86), while another ten architectures define custom helpers (alpha,
arc, ia64, m68k, mips, nios2, parisc, sh, sparc, xtensa), and the rest
(arm64, h8300, hexagon, microblaze, nds32, openrisc, riscv) just get
the unoptimized version and rely on the compiler to detect it.

A long time ago, the compiler builtins were architecture specific, but
nowadays, all compilers that are able to build the kernel have correct
implementations of them, though some may not be as optimized as
the inline asm versions.

The patch that dropped the optimization landed in v4.19, so as discussed
it would be fairly safe to backport this revert to stable kernels to
the 4.19/5.4/5.10 stable kernels, but there is a remaining risk for
regressions, and it has no known side-effects besides compile speed.

Fixes: 815f0ddb346c ("include/linux/compiler*.h: make compiler-*.h mutually exclusive")
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Acked-by: Miguel Ojeda <ojeda@kernel.org>
Acked-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lore.kernel.org/lkml/20210225164513.3667778-1-arnd@kernel.org/
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v2:
 - drop exception for sparse
 - expand changelog text
---
 include/linux/compiler-clang.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/compiler-clang.h b/include/linux/compiler-clang.h
index 6478bff6fcc2..917f7f88cef0 100644
--- a/include/linux/compiler-clang.h
+++ b/include/linux/compiler-clang.h
@@ -33,6 +33,12 @@
 #define __no_sanitize_thread
 #endif
 
+#if defined(CONFIG_ARCH_USE_BUILTIN_BSWAP)
+#define __HAVE_BUILTIN_BSWAP32__
+#define __HAVE_BUILTIN_BSWAP64__
+#define __HAVE_BUILTIN_BSWAP16__
+#endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */
+
 #if __has_feature(undefined_behavior_sanitizer)
 /* GCC does not have __SANITIZE_UNDEFINED__ */
 #define __no_sanitize_undefined \
-- 
2.29.2


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

* [PATCH] [v2] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP*
@ 2021-02-26 16:11 ` Arnd Bergmann
  0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2021-02-26 16:11 UTC (permalink / raw)
  To: Andrew Morton, Masahiro Yamada
  Cc: Arvind Sankar, Guo Ren, linux-riscv, Vincent Chen, linux-csky,
	clang-built-linux, Sami Tolvanen, Miguel Ojeda, Marco Elver,
	Albert Ou, Kees Cook, Arnd Bergmann, Nathan Chancellor,
	Greentime Hu, Paul Walmsley, Nick Hu, Randy Dunlap,
	Nick Desaulniers, linux-kernel, Miguel Ojeda, Palmer Dabbelt,
	Luc Van Oostenryck

From: Arnd Bergmann <arnd@arndb.de>

Separating compiler-clang.h from compiler-gcc.h inadventently dropped the
definitions of the three HAVE_BUILTIN_BSWAP macros, which requires falling
back to the open-coded version and hoping that the compiler detects it.

Since all versions of clang support the __builtin_bswap interfaces,
add back the flags and have the headers pick these up automatically.

This results in a 4% improvement of compilation speed for arm defconfig.

Note: it might also be worth revisiting which architectures set
CONFIG_ARCH_USE_BUILTIN_BSWAP for one compiler or the other, today
this is set on six architectures (arm32, csky, mips, powerpc, s390,
x86), while another ten architectures define custom helpers (alpha,
arc, ia64, m68k, mips, nios2, parisc, sh, sparc, xtensa), and the rest
(arm64, h8300, hexagon, microblaze, nds32, openrisc, riscv) just get
the unoptimized version and rely on the compiler to detect it.

A long time ago, the compiler builtins were architecture specific, but
nowadays, all compilers that are able to build the kernel have correct
implementations of them, though some may not be as optimized as
the inline asm versions.

The patch that dropped the optimization landed in v4.19, so as discussed
it would be fairly safe to backport this revert to stable kernels to
the 4.19/5.4/5.10 stable kernels, but there is a remaining risk for
regressions, and it has no known side-effects besides compile speed.

Fixes: 815f0ddb346c ("include/linux/compiler*.h: make compiler-*.h mutually exclusive")
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Acked-by: Miguel Ojeda <ojeda@kernel.org>
Acked-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lore.kernel.org/lkml/20210225164513.3667778-1-arnd@kernel.org/
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v2:
 - drop exception for sparse
 - expand changelog text
---
 include/linux/compiler-clang.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/compiler-clang.h b/include/linux/compiler-clang.h
index 6478bff6fcc2..917f7f88cef0 100644
--- a/include/linux/compiler-clang.h
+++ b/include/linux/compiler-clang.h
@@ -33,6 +33,12 @@
 #define __no_sanitize_thread
 #endif
 
+#if defined(CONFIG_ARCH_USE_BUILTIN_BSWAP)
+#define __HAVE_BUILTIN_BSWAP32__
+#define __HAVE_BUILTIN_BSWAP64__
+#define __HAVE_BUILTIN_BSWAP16__
+#endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */
+
 #if __has_feature(undefined_behavior_sanitizer)
 /* GCC does not have __SANITIZE_UNDEFINED__ */
 #define __no_sanitize_undefined \
-- 
2.29.2


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH] [v2] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP*
  2021-02-26 16:11 ` Arnd Bergmann
@ 2021-02-26 16:37   ` Luc Van Oostenryck
  -1 siblings, 0 replies; 4+ messages in thread
From: Luc Van Oostenryck @ 2021-02-26 16:37 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Andrew Morton, Masahiro Yamada, Miguel Ojeda, Arnd Bergmann,
	Nathan Chancellor, Kees Cook, Miguel Ojeda, Nick Desaulniers,
	Nick Hu, Greentime Hu, Vincent Chen, Paul Walmsley,
	Palmer Dabbelt, Albert Ou, Guo Ren, Randy Dunlap, Sami Tolvanen,
	Marco Elver, Arvind Sankar, clang-built-linux, linux-kernel,
	linux-riscv, linux-csky

Acked-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>

Thanks,
-- Luc

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

* Re: [PATCH] [v2] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP*
@ 2021-02-26 16:37   ` Luc Van Oostenryck
  0 siblings, 0 replies; 4+ messages in thread
From: Luc Van Oostenryck @ 2021-02-26 16:37 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Arvind Sankar, Guo Ren, linux-riscv, Vincent Chen,
	Masahiro Yamada, linux-csky, clang-built-linux, Sami Tolvanen,
	Miguel Ojeda, Marco Elver, Albert Ou, Kees Cook, Arnd Bergmann,
	Nathan Chancellor, Greentime Hu, Paul Walmsley, Nick Hu,
	Randy Dunlap, Nick Desaulniers, linux-kernel, Miguel Ojeda,
	Palmer Dabbelt, Andrew Morton

Acked-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>

Thanks,
-- Luc

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

end of thread, other threads:[~2021-02-26 16:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-26 16:11 [PATCH] [v2] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP* Arnd Bergmann
2021-02-26 16:11 ` Arnd Bergmann
2021-02-26 16:37 ` Luc Van Oostenryck
2021-02-26 16:37   ` Luc Van Oostenryck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.