All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sami Tolvanen <samitolvanen@google.com>
To: Masahiro Yamada <masahiroy@kernel.org>, Will Deacon <will@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	"Paul E. McKenney" <paulmck@kernel.org>,
	Kees Cook <keescook@chromium.org>,
	Nick Desaulniers <ndesaulniers@google.com>,
	clang-built-linux@googlegroups.com,
	kernel-hardening@lists.openwall.com, linux-arch@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-pci@vger.kernel.org, x86@kernel.org,
	Sami Tolvanen <samitolvanen@google.com>
Subject: [PATCH 02/22] kbuild: add support for Clang LTO
Date: Wed, 24 Jun 2020 13:31:40 -0700	[thread overview]
Message-ID: <20200624203200.78870-3-samitolvanen@google.com> (raw)
In-Reply-To: <20200624203200.78870-1-samitolvanen@google.com>

This change adds build system support for Clang's Link Time
Optimization (LTO). With -flto, instead of ELF object files, Clang
produces LLVM bitcode, which is compiled into native code at link
time, allowing the final binary to be optimized globally. For more
details, see:

  https://llvm.org/docs/LinkTimeOptimization.html

The Kconfig option CONFIG_LTO_CLANG is implemented as a choice,
which defaults to LTO being disabled. To use LTO, the architecture
must select ARCH_SUPPORTS_LTO_CLANG and support:

  - compiling with Clang,
  - compiling inline assembly with Clang's integrated assembler,
  - and linking with LLD.

While using full LTO results in the best runtime performance, the
compilation is not scalable in time or memory. CONFIG_THINLTO
enables ThinLTO, which allows parallel optimization and faster
incremental builds. ThinLTO is used by default if the architecture
also selects ARCH_SUPPORTS_THINLTO:

  https://clang.llvm.org/docs/ThinLTO.html

To enable LTO, LLVM tools must be used to handle bitcode files. The
easiest way is to pass the LLVM=1 option to make:

  $ make LLVM=1 defconfig
  $ scripts/config -e LTO_CLANG
  $ make LLVM=1

Alternatively, at least the following LLVM tools must be used:

  CC=clang LD=ld.lld AR=llvm-ar NM=llvm-nm

To prepare for LTO support with other compilers, common parts are
gated behind the CONFIG_LTO option, and LTO can be disabled for
specific files by filtering out CC_FLAGS_LTO.

Note that support for DYNAMIC_FTRACE and MODVERSIONS are added in
follow-up patches.

Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
---
 Makefile                          | 16 ++++++++
 arch/Kconfig                      | 66 +++++++++++++++++++++++++++++++
 include/asm-generic/vmlinux.lds.h | 11 ++++--
 scripts/Makefile.build            |  9 ++++-
 scripts/Makefile.modfinal         |  9 ++++-
 scripts/Makefile.modpost          | 24 ++++++++++-
 scripts/link-vmlinux.sh           | 32 +++++++++++----
 7 files changed, 151 insertions(+), 16 deletions(-)

diff --git a/Makefile b/Makefile
index ac2c61c37a73..0c7fe6fb2143 100644
--- a/Makefile
+++ b/Makefile
@@ -886,6 +886,22 @@ KBUILD_CFLAGS	+= $(CC_FLAGS_SCS)
 export CC_FLAGS_SCS
 endif
 
+ifdef CONFIG_LTO_CLANG
+ifdef CONFIG_THINLTO
+CC_FLAGS_LTO_CLANG := -flto=thin $(call cc-option, -fsplit-lto-unit)
+KBUILD_LDFLAGS	+= --thinlto-cache-dir=.thinlto-cache
+else
+CC_FLAGS_LTO_CLANG := -flto
+endif
+CC_FLAGS_LTO_CLANG += -fvisibility=default
+endif
+
+ifdef CONFIG_LTO
+CC_FLAGS_LTO	:= $(CC_FLAGS_LTO_CLANG)
+KBUILD_CFLAGS	+= $(CC_FLAGS_LTO)
+export CC_FLAGS_LTO
+endif
+
 # arch Makefile may override CC so keep this after arch Makefile is included
 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
 
diff --git a/arch/Kconfig b/arch/Kconfig
index 8cc35dc556c7..e00b122293f8 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -552,6 +552,72 @@ config SHADOW_CALL_STACK
 	  reading and writing arbitrary memory may be able to locate them
 	  and hijack control flow by modifying the stacks.
 
+config LTO
+	bool
+
+config ARCH_SUPPORTS_LTO_CLANG
+	bool
+	help
+	  An architecture should select this option if it supports:
+	  - compiling with Clang,
+	  - compiling inline assembly with Clang's integrated assembler,
+	  - and linking with LLD.
+
+config ARCH_SUPPORTS_THINLTO
+	bool
+	help
+	  An architecture should select this option if it supports Clang's
+	  ThinLTO.
+
+config THINLTO
+	bool "Clang ThinLTO"
+	depends on LTO_CLANG && ARCH_SUPPORTS_THINLTO
+	default y
+	help
+	  This option enables Clang's ThinLTO, which allows for parallel
+	  optimization and faster incremental compiles. More information
+	  can be found from Clang's documentation:
+
+	    https://clang.llvm.org/docs/ThinLTO.html
+
+choice
+	prompt "Link Time Optimization (LTO)"
+	default LTO_NONE
+	help
+	  This option enables Link Time Optimization (LTO), which allows the
+	  compiler to optimize binaries globally.
+
+	  If unsure, select LTO_NONE.
+
+config LTO_NONE
+	bool "None"
+
+config LTO_CLANG
+	bool "Clang's Link Time Optimization (EXPERIMENTAL)"
+	depends on CC_IS_CLANG && CLANG_VERSION >= 110000 && LD_IS_LLD
+	depends on $(success,$(NM) --help | head -n 1 | grep -qi llvm)
+	depends on $(success,$(AR) --help | head -n 1 | grep -qi llvm)
+	depends on ARCH_SUPPORTS_LTO_CLANG
+	depends on !FTRACE_MCOUNT_RECORD
+	depends on !KASAN
+	depends on !MODVERSIONS
+	select LTO
+	help
+          This option enables Clang's Link Time Optimization (LTO), which
+          allows the compiler to optimize the kernel globally. If you enable
+          this option, the compiler generates LLVM bitcode instead of ELF
+          object files, and the actual compilation from bitcode happens at
+          the LTO link step, which may take several minutes depending on the
+          kernel configuration. More information can be found from LLVM's
+          documentation:
+
+	    https://llvm.org/docs/LinkTimeOptimization.html
+
+	  To select this option, you also need to use LLVM tools to handle
+	  the bitcode by passing LLVM=1 to make.
+
+endchoice
+
 config HAVE_ARCH_WITHIN_STACK_FRAMES
 	bool
 	help
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index db600ef218d7..78079000c05a 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -89,15 +89,18 @@
  * .data. We don't want to pull in .data..other sections, which Linux
  * has defined. Same for text and bss.
  *
+ * With LTO_CLANG, the linker also splits sections by default, so we need
+ * these macros to combine the sections during the final link.
+ *
  * RODATA_MAIN is not used because existing code already defines .rodata.x
  * sections to be brought in with rodata.
  */
-#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
+#if defined(CONFIG_LD_DEAD_CODE_DATA_ELIMINATION) || defined(CONFIG_LTO_CLANG)
 #define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
-#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX*
+#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..L* .data..compoundliteral*
 #define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
-#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
-#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
+#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]* .rodata..L*
+#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]* .bss..compoundliteral*
 #define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
 #else
 #define TEXT_MAIN .text
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2e8810b7e5ed..f307e708a1b7 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -108,7 +108,7 @@ endif
 # ---------------------------------------------------------------------------
 
 quiet_cmd_cc_s_c = CC $(quiet_modtag)  $@
-      cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS), $(c_flags)) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
+      cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS) $(CC_FLAGS_LTO), $(c_flags)) -fverbose-asm -S -o $@ $<
 
 $(obj)/%.s: $(src)/%.c FORCE
 	$(call if_changed_dep,cc_s_c)
@@ -424,8 +424,15 @@ $(obj)/lib.a: $(lib-y) FORCE
 # Do not replace $(filter %.o,^) with $(real-prereqs). When a single object
 # module is turned into a multi object module, $^ will contain header file
 # dependencies recorded in the .*.cmd file.
+ifdef CONFIG_LTO_CLANG
+quiet_cmd_link_multi-m = AR [M]  $@
+cmd_link_multi-m =						\
+	rm -f $@; 						\
+	$(AR) rcsTP$(KBUILD_ARFLAGS) $@ $(filter %.o,$^)
+else
 quiet_cmd_link_multi-m = LD [M]  $@
       cmd_link_multi-m = $(LD) $(ld_flags) -r -o $@ $(filter %.o,$^)
+endif
 
 $(multi-used-m): FORCE
 	$(call if_changed,link_multi-m)
diff --git a/scripts/Makefile.modfinal b/scripts/Makefile.modfinal
index 411c1e600e7d..1005b147abd0 100644
--- a/scripts/Makefile.modfinal
+++ b/scripts/Makefile.modfinal
@@ -6,6 +6,7 @@
 PHONY := __modfinal
 __modfinal:
 
+include $(objtree)/include/config/auto.conf
 include $(srctree)/scripts/Kbuild.include
 
 # for c_flags
@@ -29,6 +30,12 @@ quiet_cmd_cc_o_c = CC [M]  $@
 
 ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
 
+ifdef CONFIG_LTO_CLANG
+# With CONFIG_LTO_CLANG, reuse the object file we compiled for modpost to
+# avoid a second slow LTO link
+prelink-ext := .lto
+endif
+
 quiet_cmd_ld_ko_o = LD [M]  $@
       cmd_ld_ko_o =                                                     \
 	$(LD) -r $(KBUILD_LDFLAGS)					\
@@ -37,7 +44,7 @@ quiet_cmd_ld_ko_o = LD [M]  $@
 		-o $@ $(filter %.o, $^);				\
 	$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
 
-$(modules): %.ko: %.o %.mod.o $(KBUILD_LDS_MODULE) FORCE
+$(modules): %.ko: %$(prelink-ext).o %.mod.o $(KBUILD_LDS_MODULE) FORCE
 	+$(call if_changed,ld_ko_o)
 
 targets += $(modules) $(modules:.ko=.mod.o)
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost
index 3651cbf6ad49..9ced8aecd579 100644
--- a/scripts/Makefile.modpost
+++ b/scripts/Makefile.modpost
@@ -102,12 +102,32 @@ $(input-symdump):
 	@echo >&2 'WARNING: Symbol version dump "$@" is missing.'
 	@echo >&2 '         Modules may not have dependencies or modversions.'
 
+ifdef CONFIG_LTO_CLANG
+# With CONFIG_LTO_CLANG, .o files might be LLVM bitcode, so we need to run
+# LTO to compile them into native code before running modpost
+prelink-ext = .lto
+
+quiet_cmd_cc_lto_link_modules = LTO [M] $@
+cmd_cc_lto_link_modules =						\
+	$(LD) $(ld_flags) -r -o $@					\
+		--whole-archive $(filter-out FORCE,$^)
+
+%.lto.o: %.o FORCE
+	$(call if_changed,cc_lto_link_modules)
+
+PHONY += FORCE
+FORCE:
+
+endif
+
+modules := $(sort $(shell cat $(MODORDER)))
+
 # Read out modules.order to pass in modpost.
 # Otherwise, allmodconfig would fail with "Argument list too long".
 quiet_cmd_modpost = MODPOST $@
-      cmd_modpost = sed 's/ko$$/o/' $< | $(MODPOST) -T -
+      cmd_modpost = sed 's/\.ko$$/$(prelink-ext)\.o/' $< | $(MODPOST) -T -
 
-$(output-symdump): $(MODORDER) $(input-symdump) FORCE
+$(output-symdump): $(MODORDER) $(input-symdump) $(modules:.ko=$(prelink-ext).o) FORCE
 	$(call if_changed,modpost)
 
 targets += $(output-symdump)
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
index 92dd745906f4..a681b3b6722e 100755
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
@@ -52,6 +52,14 @@ modpost_link()
 		${KBUILD_VMLINUX_LIBS}				\
 		--end-group"
 
+	if [ -n "${CONFIG_LTO_CLANG}" ]; then
+		# This might take a while, so indicate that we're doing
+		# an LTO link
+		info LTO ${1}
+	else
+		info LD ${1}
+	fi
+
 	${LD} ${KBUILD_LDFLAGS} -r -o ${1} ${objects}
 }
 
@@ -99,13 +107,22 @@ vmlinux_link()
 	fi
 
 	if [ "${SRCARCH}" != "um" ]; then
-		objects="--whole-archive			\
-			${KBUILD_VMLINUX_OBJS}			\
-			--no-whole-archive			\
-			--start-group				\
-			${KBUILD_VMLINUX_LIBS}			\
-			--end-group				\
-			${@}"
+		if [ -n "${CONFIG_LTO_CLANG}" ]; then
+			# Use vmlinux.o instead of performing the slow LTO
+			# link again.
+			objects="--whole-archive		\
+				vmlinux.o 			\
+				--no-whole-archive		\
+				${@}"
+		else
+			objects="--whole-archive		\
+				${KBUILD_VMLINUX_OBJS}		\
+				--no-whole-archive		\
+				--start-group			\
+				${KBUILD_VMLINUX_LIBS}		\
+				--end-group			\
+				${@}"
+		fi
 
 		${LD} ${KBUILD_LDFLAGS} ${LDFLAGS_vmlinux}	\
 			${strip_debug#-Wl,}			\
@@ -270,7 +287,6 @@ fi;
 ${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init need-builtin=1
 
 #link vmlinux.o
-info LD vmlinux.o
 modpost_link vmlinux.o
 objtool_link vmlinux.o
 
-- 
2.27.0.212.ge8ba1cc988-goog


WARNING: multiple messages have this Message-ID (diff)
From: Sami Tolvanen <samitolvanen@google.com>
To: Masahiro Yamada <masahiroy@kernel.org>, Will Deacon <will@kernel.org>
Cc: linux-arch@vger.kernel.org, x86@kernel.org,
	Kees Cook <keescook@chromium.org>,
	"Paul E. McKenney" <paulmck@kernel.org>,
	kernel-hardening@lists.openwall.com,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kbuild@vger.kernel.org,
	Nick Desaulniers <ndesaulniers@google.com>,
	linux-kernel@vger.kernel.org, clang-built-linux@googlegroups.com,
	Sami Tolvanen <samitolvanen@google.com>,
	linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [PATCH 02/22] kbuild: add support for Clang LTO
Date: Wed, 24 Jun 2020 13:31:40 -0700	[thread overview]
Message-ID: <20200624203200.78870-3-samitolvanen@google.com> (raw)
In-Reply-To: <20200624203200.78870-1-samitolvanen@google.com>

This change adds build system support for Clang's Link Time
Optimization (LTO). With -flto, instead of ELF object files, Clang
produces LLVM bitcode, which is compiled into native code at link
time, allowing the final binary to be optimized globally. For more
details, see:

  https://llvm.org/docs/LinkTimeOptimization.html

The Kconfig option CONFIG_LTO_CLANG is implemented as a choice,
which defaults to LTO being disabled. To use LTO, the architecture
must select ARCH_SUPPORTS_LTO_CLANG and support:

  - compiling with Clang,
  - compiling inline assembly with Clang's integrated assembler,
  - and linking with LLD.

While using full LTO results in the best runtime performance, the
compilation is not scalable in time or memory. CONFIG_THINLTO
enables ThinLTO, which allows parallel optimization and faster
incremental builds. ThinLTO is used by default if the architecture
also selects ARCH_SUPPORTS_THINLTO:

  https://clang.llvm.org/docs/ThinLTO.html

To enable LTO, LLVM tools must be used to handle bitcode files. The
easiest way is to pass the LLVM=1 option to make:

  $ make LLVM=1 defconfig
  $ scripts/config -e LTO_CLANG
  $ make LLVM=1

Alternatively, at least the following LLVM tools must be used:

  CC=clang LD=ld.lld AR=llvm-ar NM=llvm-nm

To prepare for LTO support with other compilers, common parts are
gated behind the CONFIG_LTO option, and LTO can be disabled for
specific files by filtering out CC_FLAGS_LTO.

Note that support for DYNAMIC_FTRACE and MODVERSIONS are added in
follow-up patches.

Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
---
 Makefile                          | 16 ++++++++
 arch/Kconfig                      | 66 +++++++++++++++++++++++++++++++
 include/asm-generic/vmlinux.lds.h | 11 ++++--
 scripts/Makefile.build            |  9 ++++-
 scripts/Makefile.modfinal         |  9 ++++-
 scripts/Makefile.modpost          | 24 ++++++++++-
 scripts/link-vmlinux.sh           | 32 +++++++++++----
 7 files changed, 151 insertions(+), 16 deletions(-)

diff --git a/Makefile b/Makefile
index ac2c61c37a73..0c7fe6fb2143 100644
--- a/Makefile
+++ b/Makefile
@@ -886,6 +886,22 @@ KBUILD_CFLAGS	+= $(CC_FLAGS_SCS)
 export CC_FLAGS_SCS
 endif
 
+ifdef CONFIG_LTO_CLANG
+ifdef CONFIG_THINLTO
+CC_FLAGS_LTO_CLANG := -flto=thin $(call cc-option, -fsplit-lto-unit)
+KBUILD_LDFLAGS	+= --thinlto-cache-dir=.thinlto-cache
+else
+CC_FLAGS_LTO_CLANG := -flto
+endif
+CC_FLAGS_LTO_CLANG += -fvisibility=default
+endif
+
+ifdef CONFIG_LTO
+CC_FLAGS_LTO	:= $(CC_FLAGS_LTO_CLANG)
+KBUILD_CFLAGS	+= $(CC_FLAGS_LTO)
+export CC_FLAGS_LTO
+endif
+
 # arch Makefile may override CC so keep this after arch Makefile is included
 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
 
diff --git a/arch/Kconfig b/arch/Kconfig
index 8cc35dc556c7..e00b122293f8 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -552,6 +552,72 @@ config SHADOW_CALL_STACK
 	  reading and writing arbitrary memory may be able to locate them
 	  and hijack control flow by modifying the stacks.
 
+config LTO
+	bool
+
+config ARCH_SUPPORTS_LTO_CLANG
+	bool
+	help
+	  An architecture should select this option if it supports:
+	  - compiling with Clang,
+	  - compiling inline assembly with Clang's integrated assembler,
+	  - and linking with LLD.
+
+config ARCH_SUPPORTS_THINLTO
+	bool
+	help
+	  An architecture should select this option if it supports Clang's
+	  ThinLTO.
+
+config THINLTO
+	bool "Clang ThinLTO"
+	depends on LTO_CLANG && ARCH_SUPPORTS_THINLTO
+	default y
+	help
+	  This option enables Clang's ThinLTO, which allows for parallel
+	  optimization and faster incremental compiles. More information
+	  can be found from Clang's documentation:
+
+	    https://clang.llvm.org/docs/ThinLTO.html
+
+choice
+	prompt "Link Time Optimization (LTO)"
+	default LTO_NONE
+	help
+	  This option enables Link Time Optimization (LTO), which allows the
+	  compiler to optimize binaries globally.
+
+	  If unsure, select LTO_NONE.
+
+config LTO_NONE
+	bool "None"
+
+config LTO_CLANG
+	bool "Clang's Link Time Optimization (EXPERIMENTAL)"
+	depends on CC_IS_CLANG && CLANG_VERSION >= 110000 && LD_IS_LLD
+	depends on $(success,$(NM) --help | head -n 1 | grep -qi llvm)
+	depends on $(success,$(AR) --help | head -n 1 | grep -qi llvm)
+	depends on ARCH_SUPPORTS_LTO_CLANG
+	depends on !FTRACE_MCOUNT_RECORD
+	depends on !KASAN
+	depends on !MODVERSIONS
+	select LTO
+	help
+          This option enables Clang's Link Time Optimization (LTO), which
+          allows the compiler to optimize the kernel globally. If you enable
+          this option, the compiler generates LLVM bitcode instead of ELF
+          object files, and the actual compilation from bitcode happens at
+          the LTO link step, which may take several minutes depending on the
+          kernel configuration. More information can be found from LLVM's
+          documentation:
+
+	    https://llvm.org/docs/LinkTimeOptimization.html
+
+	  To select this option, you also need to use LLVM tools to handle
+	  the bitcode by passing LLVM=1 to make.
+
+endchoice
+
 config HAVE_ARCH_WITHIN_STACK_FRAMES
 	bool
 	help
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index db600ef218d7..78079000c05a 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -89,15 +89,18 @@
  * .data. We don't want to pull in .data..other sections, which Linux
  * has defined. Same for text and bss.
  *
+ * With LTO_CLANG, the linker also splits sections by default, so we need
+ * these macros to combine the sections during the final link.
+ *
  * RODATA_MAIN is not used because existing code already defines .rodata.x
  * sections to be brought in with rodata.
  */
-#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
+#if defined(CONFIG_LD_DEAD_CODE_DATA_ELIMINATION) || defined(CONFIG_LTO_CLANG)
 #define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
-#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX*
+#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..L* .data..compoundliteral*
 #define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
-#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
-#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
+#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]* .rodata..L*
+#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]* .bss..compoundliteral*
 #define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
 #else
 #define TEXT_MAIN .text
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2e8810b7e5ed..f307e708a1b7 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -108,7 +108,7 @@ endif
 # ---------------------------------------------------------------------------
 
 quiet_cmd_cc_s_c = CC $(quiet_modtag)  $@
-      cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS), $(c_flags)) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
+      cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS) $(CC_FLAGS_LTO), $(c_flags)) -fverbose-asm -S -o $@ $<
 
 $(obj)/%.s: $(src)/%.c FORCE
 	$(call if_changed_dep,cc_s_c)
@@ -424,8 +424,15 @@ $(obj)/lib.a: $(lib-y) FORCE
 # Do not replace $(filter %.o,^) with $(real-prereqs). When a single object
 # module is turned into a multi object module, $^ will contain header file
 # dependencies recorded in the .*.cmd file.
+ifdef CONFIG_LTO_CLANG
+quiet_cmd_link_multi-m = AR [M]  $@
+cmd_link_multi-m =						\
+	rm -f $@; 						\
+	$(AR) rcsTP$(KBUILD_ARFLAGS) $@ $(filter %.o,$^)
+else
 quiet_cmd_link_multi-m = LD [M]  $@
       cmd_link_multi-m = $(LD) $(ld_flags) -r -o $@ $(filter %.o,$^)
+endif
 
 $(multi-used-m): FORCE
 	$(call if_changed,link_multi-m)
diff --git a/scripts/Makefile.modfinal b/scripts/Makefile.modfinal
index 411c1e600e7d..1005b147abd0 100644
--- a/scripts/Makefile.modfinal
+++ b/scripts/Makefile.modfinal
@@ -6,6 +6,7 @@
 PHONY := __modfinal
 __modfinal:
 
+include $(objtree)/include/config/auto.conf
 include $(srctree)/scripts/Kbuild.include
 
 # for c_flags
@@ -29,6 +30,12 @@ quiet_cmd_cc_o_c = CC [M]  $@
 
 ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
 
+ifdef CONFIG_LTO_CLANG
+# With CONFIG_LTO_CLANG, reuse the object file we compiled for modpost to
+# avoid a second slow LTO link
+prelink-ext := .lto
+endif
+
 quiet_cmd_ld_ko_o = LD [M]  $@
       cmd_ld_ko_o =                                                     \
 	$(LD) -r $(KBUILD_LDFLAGS)					\
@@ -37,7 +44,7 @@ quiet_cmd_ld_ko_o = LD [M]  $@
 		-o $@ $(filter %.o, $^);				\
 	$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
 
-$(modules): %.ko: %.o %.mod.o $(KBUILD_LDS_MODULE) FORCE
+$(modules): %.ko: %$(prelink-ext).o %.mod.o $(KBUILD_LDS_MODULE) FORCE
 	+$(call if_changed,ld_ko_o)
 
 targets += $(modules) $(modules:.ko=.mod.o)
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost
index 3651cbf6ad49..9ced8aecd579 100644
--- a/scripts/Makefile.modpost
+++ b/scripts/Makefile.modpost
@@ -102,12 +102,32 @@ $(input-symdump):
 	@echo >&2 'WARNING: Symbol version dump "$@" is missing.'
 	@echo >&2 '         Modules may not have dependencies or modversions.'
 
+ifdef CONFIG_LTO_CLANG
+# With CONFIG_LTO_CLANG, .o files might be LLVM bitcode, so we need to run
+# LTO to compile them into native code before running modpost
+prelink-ext = .lto
+
+quiet_cmd_cc_lto_link_modules = LTO [M] $@
+cmd_cc_lto_link_modules =						\
+	$(LD) $(ld_flags) -r -o $@					\
+		--whole-archive $(filter-out FORCE,$^)
+
+%.lto.o: %.o FORCE
+	$(call if_changed,cc_lto_link_modules)
+
+PHONY += FORCE
+FORCE:
+
+endif
+
+modules := $(sort $(shell cat $(MODORDER)))
+
 # Read out modules.order to pass in modpost.
 # Otherwise, allmodconfig would fail with "Argument list too long".
 quiet_cmd_modpost = MODPOST $@
-      cmd_modpost = sed 's/ko$$/o/' $< | $(MODPOST) -T -
+      cmd_modpost = sed 's/\.ko$$/$(prelink-ext)\.o/' $< | $(MODPOST) -T -
 
-$(output-symdump): $(MODORDER) $(input-symdump) FORCE
+$(output-symdump): $(MODORDER) $(input-symdump) $(modules:.ko=$(prelink-ext).o) FORCE
 	$(call if_changed,modpost)
 
 targets += $(output-symdump)
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
index 92dd745906f4..a681b3b6722e 100755
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
@@ -52,6 +52,14 @@ modpost_link()
 		${KBUILD_VMLINUX_LIBS}				\
 		--end-group"
 
+	if [ -n "${CONFIG_LTO_CLANG}" ]; then
+		# This might take a while, so indicate that we're doing
+		# an LTO link
+		info LTO ${1}
+	else
+		info LD ${1}
+	fi
+
 	${LD} ${KBUILD_LDFLAGS} -r -o ${1} ${objects}
 }
 
@@ -99,13 +107,22 @@ vmlinux_link()
 	fi
 
 	if [ "${SRCARCH}" != "um" ]; then
-		objects="--whole-archive			\
-			${KBUILD_VMLINUX_OBJS}			\
-			--no-whole-archive			\
-			--start-group				\
-			${KBUILD_VMLINUX_LIBS}			\
-			--end-group				\
-			${@}"
+		if [ -n "${CONFIG_LTO_CLANG}" ]; then
+			# Use vmlinux.o instead of performing the slow LTO
+			# link again.
+			objects="--whole-archive		\
+				vmlinux.o 			\
+				--no-whole-archive		\
+				${@}"
+		else
+			objects="--whole-archive		\
+				${KBUILD_VMLINUX_OBJS}		\
+				--no-whole-archive		\
+				--start-group			\
+				${KBUILD_VMLINUX_LIBS}		\
+				--end-group			\
+				${@}"
+		fi
 
 		${LD} ${KBUILD_LDFLAGS} ${LDFLAGS_vmlinux}	\
 			${strip_debug#-Wl,}			\
@@ -270,7 +287,6 @@ fi;
 ${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init need-builtin=1
 
 #link vmlinux.o
-info LD vmlinux.o
 modpost_link vmlinux.o
 objtool_link vmlinux.o
 
-- 
2.27.0.212.ge8ba1cc988-goog


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

  parent reply	other threads:[~2020-06-24 20:33 UTC|newest]

Thread overview: 520+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-24 20:31 [PATCH 00/22] add support for Clang LTO Sami Tolvanen
2020-06-24 20:31 ` Sami Tolvanen
2020-06-24 20:31 ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 01/22] objtool: use sh_info to find the base for .rela sections Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` Sami Tolvanen [this message]
2020-06-24 20:31   ` [PATCH 02/22] kbuild: add support for Clang LTO Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:53   ` Nick Desaulniers
2020-06-24 20:53     ` Nick Desaulniers
2020-06-24 20:53     ` Nick Desaulniers
2020-06-24 21:29     ` Sami Tolvanen
2020-06-24 21:29       ` Sami Tolvanen
2020-06-25  2:26   ` Nathan Chancellor
2020-06-25  2:26     ` Nathan Chancellor
2020-06-25 16:13     ` Sami Tolvanen
2020-06-25 16:13       ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 03/22] kbuild: lto: fix module versioning Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 04/22] kbuild: lto: fix recordmcount Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 21:27   ` Peter Zijlstra
2020-06-24 21:27     ` Peter Zijlstra
2020-06-24 21:45     ` Sami Tolvanen
2020-06-24 21:45       ` Sami Tolvanen
2020-06-25  7:45       ` Peter Zijlstra
2020-06-25  7:45         ` Peter Zijlstra
2020-06-25 16:15         ` Sami Tolvanen
2020-06-25 16:15           ` Sami Tolvanen
2020-06-25 20:02           ` [RFC][PATCH] objtool,x86_64: Replace recordmcount with objtool Peter Zijlstra
2020-06-25 20:02             ` Peter Zijlstra
2020-06-25 20:54             ` Nick Desaulniers
2020-06-25 20:54               ` Nick Desaulniers
2020-06-25 20:54               ` Nick Desaulniers
2020-06-25 22:40             ` Sami Tolvanen
2020-06-25 22:40               ` Sami Tolvanen
2020-06-26 11:29               ` Peter Zijlstra
2020-06-26 11:29                 ` Peter Zijlstra
2020-06-26 11:42                 ` Peter Zijlstra
2020-06-26 11:42                   ` Peter Zijlstra
2020-07-17 17:28                 ` Sami Tolvanen
2020-07-17 17:28                   ` Sami Tolvanen
2020-07-17 17:28                   ` Sami Tolvanen
2020-07-17 17:36                   ` Steven Rostedt
2020-07-17 17:36                     ` Steven Rostedt
2020-07-17 17:47                     ` Sami Tolvanen
2020-07-17 17:47                       ` Sami Tolvanen
2020-07-17 17:47                       ` Sami Tolvanen
2020-07-17 18:05                       ` Steven Rostedt
2020-07-17 18:05                         ` Steven Rostedt
2020-07-20 16:52                         ` Sami Tolvanen
2020-07-20 16:52                           ` Sami Tolvanen
2020-07-20 16:52                           ` Sami Tolvanen
2020-07-22 17:58                           ` Steven Rostedt
2020-07-22 17:58                             ` Steven Rostedt
2020-07-22 18:07                             ` Sami Tolvanen
2020-07-22 18:07                               ` Sami Tolvanen
2020-07-22 18:07                               ` Sami Tolvanen
2020-07-22 17:55                 ` Steven Rostedt
2020-07-22 17:55                   ` Steven Rostedt
2020-07-22 18:41                   ` Peter Zijlstra
2020-07-22 18:41                     ` Peter Zijlstra
2020-07-22 19:09                     ` Steven Rostedt
2020-07-22 19:09                       ` Steven Rostedt
2020-07-22 20:03                       ` Sami Tolvanen
2020-07-22 20:03                         ` Sami Tolvanen
2020-07-22 20:03                         ` Sami Tolvanen
2020-07-22 23:56                       ` Peter Zijlstra
2020-07-22 23:56                         ` Peter Zijlstra
2020-07-23  0:06                         ` Steven Rostedt
2020-07-23  0:06                           ` Steven Rostedt
2020-08-06 22:09                           ` Sami Tolvanen
2020-08-06 22:09                             ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 05/22] kbuild: lto: postpone objtool Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 21:19   ` Peter Zijlstra
2020-06-24 21:19     ` Peter Zijlstra
2020-06-24 21:49     ` Sami Tolvanen
2020-06-24 21:49       ` Sami Tolvanen
2020-06-25  7:47       ` Peter Zijlstra
2020-06-25  7:47         ` Peter Zijlstra
2020-06-25 16:22         ` Sami Tolvanen
2020-06-25 16:22           ` Sami Tolvanen
2020-06-25 18:33           ` Peter Zijlstra
2020-06-25 18:33             ` Peter Zijlstra
2020-06-25 19:32             ` Sami Tolvanen
2020-06-25 19:32               ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 06/22] kbuild: lto: limit inlining Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 21:20   ` Peter Zijlstra
2020-06-24 21:20     ` Peter Zijlstra
2020-06-24 23:37     ` Sami Tolvanen
2020-06-24 23:37       ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 07/22] kbuild: lto: merge module sections Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 21:01   ` Nick Desaulniers
2020-06-24 21:01     ` Nick Desaulniers
2020-06-24 21:01     ` Nick Desaulniers
2020-06-24 21:31     ` Sami Tolvanen
2020-06-24 21:31       ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 08/22] kbuild: lto: remove duplicate dependencies from .mod files Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 21:13   ` Nick Desaulniers
2020-06-24 21:13     ` Nick Desaulniers
2020-06-24 21:13     ` Nick Desaulniers
2020-06-24 20:31 ` [PATCH 09/22] init: lto: ensure initcall ordering Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-25  0:58   ` kernel test robot
2020-06-25  0:58     ` kernel test robot
2020-06-25  0:58     ` kernel test robot
2020-06-25  4:19   ` kernel test robot
2020-06-25  4:19     ` kernel test robot
2020-06-25  4:19     ` kernel test robot
2020-06-24 20:31 ` [PATCH 10/22] init: lto: fix PREL32 relocations Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 11/22] pci: " Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 22:49   ` kernel test robot
2020-06-24 22:49     ` kernel test robot
2020-06-24 22:49     ` kernel test robot
2020-06-24 23:03     ` Nick Desaulniers
2020-06-24 23:03       ` Nick Desaulniers
2020-06-24 23:03       ` Nick Desaulniers
2020-06-24 23:03       ` Nick Desaulniers
2020-06-24 23:21       ` Sami Tolvanen
2020-06-24 23:21         ` Sami Tolvanen
2020-06-24 23:21         ` Sami Tolvanen
2020-07-17 20:26   ` Bjorn Helgaas
2020-07-17 20:26     ` Bjorn Helgaas
2020-07-22 18:15     ` Sami Tolvanen
2020-07-22 18:15       ` Sami Tolvanen
2020-07-22 18:15       ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 12/22] modpost: lto: strip .lto from module names Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 22:05   ` Nick Desaulniers
2020-06-24 22:05     ` Nick Desaulniers
2020-06-24 22:05     ` Nick Desaulniers
2020-06-24 20:31 ` [PATCH 13/22] scripts/mod: disable LTO for empty.c Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:57   ` Nick Desaulniers
2020-06-24 20:57     ` Nick Desaulniers
2020-06-24 20:57     ` Nick Desaulniers
2020-06-24 20:31 ` [PATCH 14/22] efi/libstub: disable LTO Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 15/22] drivers/misc/lkdtm: disable LTO for rodata.o Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 16/22] arm64: export CC_USING_PATCHABLE_FUNCTION_ENTRY Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 17/22] arm64: vdso: disable LTO Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:58   ` Nick Desaulniers
2020-06-24 20:58     ` Nick Desaulniers
2020-06-24 20:58     ` Nick Desaulniers
2020-06-24 21:09     ` Nick Desaulniers
2020-06-24 21:09       ` Nick Desaulniers
2020-06-24 21:09       ` Nick Desaulniers
2020-06-24 23:51       ` Andi Kleen
2020-06-24 23:51         ` Andi Kleen
2020-06-24 21:52     ` Sami Tolvanen
2020-06-24 21:52       ` Sami Tolvanen
2020-06-24 23:05       ` Nick Desaulniers
2020-06-24 23:05         ` Nick Desaulniers
2020-06-24 23:05         ` Nick Desaulniers
2020-06-24 23:39         ` Sami Tolvanen
2020-06-24 23:39           ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 18/22] arm64: allow LTO_CLANG and THINLTO to be selected Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 19/22] x86, vdso: disable LTO only for vDSO Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 20/22] x86, ftrace: disable recordmcount for ftrace_make_nop Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31 ` [PATCH 21/22] x86, relocs: Ignore L4_PAGE_OFFSET relocations Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:31   ` Sami Tolvanen
2020-06-24 20:32 ` [PATCH 22/22] x86, build: allow LTO_CLANG and THINLTO to be selected Sami Tolvanen
2020-06-24 20:32   ` Sami Tolvanen
2020-06-24 20:32   ` Sami Tolvanen
2020-06-24 21:15 ` [PATCH 00/22] add support for Clang LTO Peter Zijlstra
2020-06-24 21:15   ` Peter Zijlstra
2020-06-24 21:30   ` Sami Tolvanen
2020-06-24 21:30     ` Sami Tolvanen
2020-06-25  8:27     ` Will Deacon
2020-06-25  8:27       ` Will Deacon
2020-06-24 21:31   ` Nick Desaulniers
2020-06-24 21:31     ` Nick Desaulniers
2020-06-24 21:31     ` Nick Desaulniers
2020-06-25  8:03     ` Peter Zijlstra
2020-06-25  8:03       ` Peter Zijlstra
2020-06-25  8:24       ` Peter Zijlstra
2020-06-25  8:24         ` Peter Zijlstra
2020-06-25  8:57         ` Peter Zijlstra
2020-06-25  8:57           ` Peter Zijlstra
2020-06-30 19:19           ` Marco Elver
2020-06-30 19:19             ` Marco Elver
2020-06-30 20:12             ` Peter Zijlstra
2020-06-30 20:12               ` Peter Zijlstra
2020-06-30 20:30               ` Paul E. McKenney
2020-06-30 20:30                 ` Paul E. McKenney
2020-07-01  9:10                 ` Peter Zijlstra
2020-07-01  9:10                   ` Peter Zijlstra
2020-07-01 14:20                   ` David Laight
2020-07-01 14:20                     ` David Laight
2020-07-01 16:06                     ` Paul E. McKenney
2020-07-01 16:06                       ` Paul E. McKenney
2020-07-02  9:37                       ` David Laight
2020-07-02  9:37                         ` David Laight
2020-07-02 18:00                         ` Paul E. McKenney
2020-07-02 18:00                           ` Paul E. McKenney
2020-07-01  9:41                 ` Marco Elver
2020-07-01  9:41                   ` Marco Elver
2020-07-01  9:41                   ` Marco Elver
2020-07-01 10:03                   ` Will Deacon
2020-07-01 10:03                     ` Will Deacon
2020-07-01 11:40                   ` Peter Zijlstra
2020-07-01 11:40                     ` Peter Zijlstra
2020-07-01 14:06                     ` Paul E. McKenney
2020-07-01 14:06                       ` Paul E. McKenney
2020-07-01 15:05                       ` Peter Zijlstra
2020-07-01 15:05                         ` Peter Zijlstra
2020-07-01 16:03                         ` Paul E. McKenney
2020-07-01 16:03                           ` Paul E. McKenney
2020-07-02  8:20                           ` Peter Zijlstra
2020-07-02  8:20                             ` Peter Zijlstra
2020-07-02 17:59                             ` Paul E. McKenney
2020-07-02 17:59                               ` Paul E. McKenney
2020-07-03 13:13                               ` Peter Zijlstra
2020-07-03 13:13                                 ` Peter Zijlstra
2020-07-03 13:25                                 ` Peter Zijlstra
2020-07-03 13:25                                   ` Peter Zijlstra
2020-07-03 14:51                                   ` Paul E. McKenney
2020-07-03 14:51                                     ` Paul E. McKenney
2020-07-03 14:42                                 ` Paul E. McKenney
2020-07-03 14:42                                   ` Paul E. McKenney
2020-07-06 16:26                                   ` Paul E. McKenney
2020-07-06 16:26                                     ` Paul E. McKenney
2020-07-06 18:29                                     ` Peter Zijlstra
2020-07-06 18:29                                       ` Peter Zijlstra
2020-07-06 18:39                                       ` Paul E. McKenney
2020-07-06 18:39                                         ` Paul E. McKenney
2020-07-06 19:40                                         ` Peter Zijlstra
2020-07-06 19:40                                           ` Peter Zijlstra
2020-07-06 23:41                                           ` Paul E. McKenney
2020-07-06 23:41                                             ` Paul E. McKenney
2020-06-28 16:56 ` Masahiro Yamada
2020-06-28 16:56   ` Masahiro Yamada
2020-06-28 16:56   ` Masahiro Yamada
2020-06-29 23:20   ` Sami Tolvanen
2020-06-29 23:20     ` Sami Tolvanen
2020-07-07 15:51     ` Sami Tolvanen
2020-07-07 15:51       ` Sami Tolvanen
2020-07-07 16:05       ` Sami Tolvanen
2020-07-07 16:05         ` Sami Tolvanen
2020-07-07 16:56         ` Jakub Kicinski
2020-07-07 16:56           ` Jakub Kicinski
2020-07-07 17:17           ` Nick Desaulniers
2020-07-07 17:17             ` Nick Desaulniers
2020-07-07 17:17             ` Nick Desaulniers
2020-07-07 17:30             ` Jakub Kicinski
2020-07-07 17:30               ` Jakub Kicinski
2020-07-11 16:32 ` Paul Menzel
2020-07-11 16:32   ` Paul Menzel
2020-07-11 16:32   ` Paul Menzel
2020-07-12  8:59   ` Sedat Dilek
2020-07-12  8:59     ` Sedat Dilek
2020-07-12  8:59     ` Sedat Dilek
2020-07-12 18:40     ` Nathan Chancellor
2020-07-12 18:40       ` Nathan Chancellor
2020-07-14  9:44       ` Sedat Dilek
2020-07-14  9:44         ` Sedat Dilek
2020-07-14  9:44         ` Sedat Dilek
2020-07-14 17:54         ` Nick Desaulniers
2020-07-14 17:54           ` Nick Desaulniers
2020-07-14 17:54           ` Nick Desaulniers
2020-07-12 23:34   ` Sami Tolvanen
2020-07-12 23:34     ` Sami Tolvanen
2020-07-12 23:34     ` Sami Tolvanen
2020-07-14 12:16     ` Paul Menzel
2020-07-14 12:16       ` Paul Menzel
2020-07-14 12:35       ` Sedat Dilek
2020-07-14 12:35         ` Sedat Dilek
2020-07-14 12:35         ` Sedat Dilek
2020-07-14 13:40         ` Paul Menzel
2020-09-03 20:30 ` [PATCH v2 00/28] Add " Sami Tolvanen
2020-09-03 20:30   ` Sami Tolvanen
2020-09-03 20:30   ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 01/28] x86/boot/compressed: Disable relocation relaxation Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:44     ` Kees Cook
2020-09-03 21:44       ` Kees Cook
2020-09-03 23:42       ` Arvind Sankar
2020-09-03 23:42         ` Arvind Sankar
2020-09-04  7:14         ` Nathan Chancellor
2020-09-04  7:14           ` Nathan Chancellor
2020-09-06  3:16     ` Sasha Levin
2020-09-03 20:30   ` [PATCH v2 02/28] x86/asm: Replace __force_order with memory clobber Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:45     ` Kees Cook
2020-09-03 21:45       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 03/28] lib/string.c: implement stpcpy Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:47     ` Kees Cook
2020-09-03 21:47       ` Kees Cook
2020-09-06  3:16     ` Sasha Levin
2020-09-03 20:30   ` [PATCH v2 04/28] RAS/CEC: Fix cec_init() prototype Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:50     ` Kees Cook
2020-09-03 21:50       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 05/28] objtool: Add a pass for generating __mcount_loc Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:51     ` Kees Cook
2020-09-03 21:51       ` Kees Cook
2020-09-03 22:03       ` Sami Tolvanen
2020-09-03 22:03         ` Sami Tolvanen
2020-09-03 22:03         ` Sami Tolvanen
2020-09-04  9:31         ` peterz
2020-09-04  9:31           ` peterz
2020-09-10 18:29           ` Kees Cook
2020-09-10 18:29             ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 06/28] objtool: Don't autodetect vmlinux.o Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:52     ` Kees Cook
2020-09-03 21:52       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 07/28] kbuild: add support for objtool mcount Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:56     ` Kees Cook
2020-09-03 21:56       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 08/28] x86, build: use " Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 21:58     ` Kees Cook
2020-09-03 21:58       ` Kees Cook
2020-09-03 22:11       ` Sami Tolvanen
2020-09-03 22:11         ` Sami Tolvanen
2020-09-03 22:11         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 09/28] kbuild: add support for Clang LTO Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:08     ` Kees Cook
2020-09-03 22:08       ` Kees Cook
2020-09-08 17:02       ` Sami Tolvanen
2020-09-08 17:02         ` Sami Tolvanen
2020-09-05 19:36     ` Masahiro Yamada
2020-09-05 19:36       ` Masahiro Yamada
2020-09-08 17:10       ` Sami Tolvanen
2020-09-08 17:10         ` Sami Tolvanen
2020-09-05 20:17     ` Masahiro Yamada
2020-09-05 20:17       ` Masahiro Yamada
2020-09-08 17:14       ` Sami Tolvanen
2020-09-08 17:14         ` Sami Tolvanen
2020-09-07 15:30     ` Masahiro Yamada
2020-09-07 15:30       ` Masahiro Yamada
2020-09-08 17:30       ` Sami Tolvanen
2020-09-08 17:30         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 10/28] kbuild: lto: fix module versioning Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:11     ` Kees Cook
2020-09-03 22:11       ` Kees Cook
2020-09-08 18:23       ` Sami Tolvanen
2020-09-08 18:23         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 11/28] kbuild: lto: postpone objtool Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:19     ` Kees Cook
2020-09-03 22:19       ` Kees Cook
2020-09-08 20:56       ` Sami Tolvanen
2020-09-08 20:56         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 12/28] kbuild: lto: limit inlining Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:20     ` Kees Cook
2020-09-03 22:20       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 13/28] kbuild: lto: merge module sections Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:23     ` Kees Cook
2020-09-03 22:23       ` Kees Cook
2020-09-07 15:25     ` Masahiro Yamada
2020-09-07 15:25       ` Masahiro Yamada
2020-09-08 21:07       ` Sami Tolvanen
2020-09-08 21:07         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 14/28] kbuild: lto: remove duplicate dependencies from .mod files Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:29     ` Kees Cook
2020-09-03 22:29       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 15/28] init: lto: ensure initcall ordering Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:40     ` Kees Cook
2020-09-03 22:40       ` Kees Cook
2020-09-08 21:16       ` Sami Tolvanen
2020-09-08 21:16         ` Sami Tolvanen
2020-09-10  9:25     ` David Woodhouse
2020-09-10  9:25       ` David Woodhouse
2020-09-10  9:25       ` David Woodhouse
2020-09-10 15:07       ` Sami Tolvanen
2020-09-10 15:07         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 16/28] init: lto: fix PREL32 relocations Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:41     ` Kees Cook
2020-09-03 22:41       ` Kees Cook
2020-09-06  3:16     ` Sasha Levin
2020-09-03 20:30   ` [PATCH v2 17/28] PCI: Fix PREL32 relocations for LTO Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:42     ` Kees Cook
2020-09-03 22:42       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 18/28] modpost: lto: strip .lto from module names Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:42     ` Kees Cook
2020-09-03 22:42       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 19/28] scripts/mod: disable LTO for empty.c Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:43     ` Kees Cook
2020-09-03 22:43       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 20/28] efi/libstub: disable LTO Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:43     ` Kees Cook
2020-09-03 22:43       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 21/28] drivers/misc/lkdtm: disable LTO for rodata.o Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 22/28] arm64: export CC_USING_PATCHABLE_FUNCTION_ENTRY Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:44     ` Kees Cook
2020-09-03 22:44       ` Kees Cook
2020-09-08 21:23       ` Sami Tolvanen
2020-09-08 21:23         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 23/28] arm64: vdso: disable LTO Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:45     ` Kees Cook
2020-09-03 22:45       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 24/28] KVM: arm64: disable LTO for the nVHE directory Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:45     ` Kees Cook
2020-09-03 22:45       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 25/28] arm64: allow LTO_CLANG and THINLTO to be selected Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:45     ` Kees Cook
2020-09-03 22:45       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 26/28] x86, vdso: disable LTO only for vDSO Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:46     ` Kees Cook
2020-09-03 22:46       ` Kees Cook
2020-09-03 20:30   ` [PATCH v2 27/28] x86, relocs: Ignore L4_PAGE_OFFSET relocations Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:47     ` Kees Cook
2020-09-03 22:47       ` Kees Cook
2020-09-08 23:28       ` Sami Tolvanen
2020-09-08 23:28         ` Sami Tolvanen
2020-09-03 20:30   ` [PATCH v2 28/28] x86, build: allow LTO_CLANG and THINLTO to be selected Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 20:30     ` Sami Tolvanen
2020-09-03 22:48     ` Kees Cook
2020-09-03 22:48       ` Kees Cook
2020-09-03 23:34   ` [PATCH v2 00/28] Add support for Clang LTO Kees Cook
2020-09-03 23:34     ` Kees Cook
2020-09-04  4:45     ` Nathan Chancellor
2020-09-04  4:45       ` Nathan Chancellor
2020-09-03 23:38   ` Kees Cook
2020-09-03 23:38     ` Kees Cook
2020-09-04  7:53   ` Sedat Dilek
2020-09-04  7:53     ` Sedat Dilek
2020-09-04  7:53     ` Sedat Dilek
2020-09-04  8:55   ` peterz
2020-09-04  8:55     ` peterz
2020-09-04  9:08     ` Sedat Dilek
2020-09-04  9:08       ` Sedat Dilek
2020-09-04  9:08       ` Sedat Dilek
2020-09-06  0:24   ` Masahiro Yamada
2020-09-06  0:24     ` Masahiro Yamada
2020-09-08 23:46     ` Sami Tolvanen
2020-09-08 23:46       ` Sami Tolvanen
2020-09-10  1:18       ` Masahiro Yamada
2020-09-10  1:18         ` Masahiro Yamada
2020-09-10 15:17         ` Sami Tolvanen
2020-09-10 15:17           ` Sami Tolvanen
2020-09-10 18:18         ` Kees Cook
2020-09-10 18:18           ` Kees Cook
2020-09-10 17:46   ` Nick Desaulniers
2020-09-10 18:07     ` Masahiro Yamada
2020-09-22 16:27     ` [EXTERNAL] " Ian Bearman
2020-09-22 17:52       ` Nick Desaulniers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200624203200.78870-3-samitolvanen@google.com \
    --to=samitolvanen@google.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=keescook@chromium.org \
    --cc=kernel-hardening@lists.openwall.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=masahiroy@kernel.org \
    --cc=ndesaulniers@google.com \
    --cc=paulmck@kernel.org \
    --cc=will@kernel.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.