FROMLIST: kbuild: fix dynamic ftrace with clang LTO
authorSami Tolvanen <samitolvanen@google.com>
Fri, 16 Jun 2017 19:52:57 +0000 (12:52 -0700)
committerSami Tolvanen <samitolvanen@google.com>
Thu, 26 Apr 2018 23:03:36 +0000 (16:03 -0700)
With CONFIG_LTO_CLANG enabled, LLVM IR won't be compiled into object
files until modpost_link. This change postpones calls to recordmcount
until after this step.

In order to exclude ftrace_process_locs from inspection, we add a new
code section .text..ftrace, which we tell recordmcount to ignore, and
a __norecordmcount attribute for moving functions to this section.

Bug: 62093296
Bug: 67506682
Change-Id: Iba2c053968206acf533fadab1eb34a743b5088ee
(am from https://patchwork.kernel.org/patch/10060327/)
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
arch/Kconfig
include/asm-generic/vmlinux.lds.h
include/linux/compiler-clang.h
include/linux/compiler_types.h
kernel/trace/ftrace.c
scripts/Makefile.build
scripts/Makefile.modpost
scripts/link-vmlinux.sh
scripts/recordmcount.c

index e59db803807f2afddf0b8aacc4036766b1a1ae7e..534589f07e7b9f6223ea32ec3b81445b222d51b3 100644 (file)
@@ -628,7 +628,7 @@ config LTO_NONE
 config LTO_CLANG
        bool "Use clang Link Time Optimization (LTO) (EXPERIMENTAL)"
        depends on ARCH_SUPPORTS_LTO_CLANG
-       depends on !FTRACE_MCOUNT_RECORD
+       depends on !FTRACE_MCOUNT_RECORD || HAVE_C_RECORDMCOUNT
        select LTO
        select THIN_ARCHIVES
        select LD_DEAD_CODE_DATA_ELIMINATION
index f4a6799cfbc5b18619610055529a97975696106d..d60eaf87e8d90cae64c3832617d437854a762da1 100644 (file)
                ALIGN_FUNCTION();                                       \
                *(.text.hot TEXT_MAIN .text.fixup .text.unlikely)       \
                *(.text..refcount)                                      \
+               *(.text..ftrace)                                        \
                *(.ref.text)                                            \
        MEM_KEEP(init.text)                                             \
        MEM_KEEP(exit.text)                                             \
index 070f85d92c15c1005b4fe76bdcc3d51453b2b477..9f9ab14613672635b28d6228c1baeaa91fb0614a 100644 (file)
 #ifdef __noretpoline
 #undef __noretpoline
 #endif
+
+#ifdef CONFIG_LTO_CLANG
+#ifdef CONFIG_FTRACE_MCOUNT_RECORD
+#define __norecordmcount \
+       __attribute__((__section__(".text..ftrace")))
+#endif
+#endif
index 6b79a9bba9a7630eb0b3a8fe35251d41717a2da0..231c413c615abbba43886c84abad1b359dc51273 100644 (file)
@@ -253,6 +253,10 @@ struct ftrace_likely_data {
 # define __nostackprotector
 #endif
 
+#ifndef __norecordmcount
+#define __norecordmcount
+#endif
+
 /*
  * Assume alignment of return value.
  */
index 7379bcf3baa058552a3814799d7fa0696fe796ac..c52b8e4e173aa75eebdaabaee387a04f70a0c00a 100644 (file)
@@ -5572,9 +5572,9 @@ static int ftrace_cmp_ips(const void *a, const void *b)
        return 0;
 }
 
-static int ftrace_process_locs(struct module *mod,
-                              unsigned long *start,
-                              unsigned long *end)
+static int __norecordmcount ftrace_process_locs(struct module *mod,
+                                               unsigned long *start,
+                                               unsigned long *end)
 {
        struct ftrace_page *start_pg;
        struct ftrace_page *pg;
index bda756f438f1e9f5051c5aa2d5fc1330eb11af74..b5b05f1157755549c2c295c63151cf29340d6be2 100644 (file)
@@ -246,6 +246,12 @@ ifdef BUILD_C_RECORDMCOUNT
 ifeq ("$(origin RECORDMCOUNT_WARN)", "command line")
   RECORDMCOUNT_FLAGS = -w
 endif
+
+ifdef CONFIG_LTO_CLANG
+# With LTO, we postpone running recordmcount until after the LTO link step, so
+# let's export the parameters for the link script.
+export RECORDMCOUNT_FLAGS
+else
 # Due to recursion, we must skip empty.o.
 # The empty.o file is created in the make process in order to determine
 # the target endianness and word size. It is made before all other C
@@ -254,22 +260,28 @@ sub_cmd_record_mcount =                                   \
        if [ $(@) != "scripts/mod/empty.o" ]; then      \
                $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)";   \
        fi;
+endif
+
 recordmcount_source := $(srctree)/scripts/recordmcount.c \
                    $(srctree)/scripts/recordmcount.h
-else
+else # !BUILD_C_RECORDMCOUNT
 sub_cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \
        "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \
        "$(if $(CONFIG_64BIT),64,32)" \
        "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CFLAGS)" \
        "$(LD)" "$(NM)" "$(RM)" "$(MV)" \
        "$(if $(part-of-module),1,0)" "$(@)";
+
 recordmcount_source := $(srctree)/scripts/recordmcount.pl
 endif # BUILD_C_RECORDMCOUNT
+
+ifndef CONFIG_LTO_CLANG
 cmd_record_mcount =                                            \
        if [ "$(findstring $(CC_FLAGS_FTRACE),$(_c_flags))" =   \
             "$(CC_FLAGS_FTRACE)" ]; then                       \
                $(sub_cmd_record_mcount)                        \
        fi;
+endif
 endif # CONFIG_FTRACE_MCOUNT_RECORD
 
 ifdef CONFIG_STACK_VALIDATION
index c86c99b4a1cf933d214e262d2ed89ea4fbb26aac..acd7ea0b5f2655c9f228516b298c4f0b45a78f8e 100644 (file)
@@ -143,6 +143,10 @@ ifdef CONFIG_LTO_CLANG
                        echo -T $(@:.ko=.o.symversions))                \
                 -o $@ --whole-archive                                  \
                 $(filter-out FORCE,$(^:$(modpost-ext).o=.o))
+
+  ifdef CONFIG_FTRACE_MCOUNT_RECORD
+      cmd_ld_ko_o += ; $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) $@
+  endif
 else
       cmd_ld_ko_o =                                                     \
        $(LD) -r $(LDFLAGS)                                             \
index ece268ceaaa154b37b650b1a9ccef0507c06364d..cfa44718cef762c8e302f8618c42c9ab1a7e0c37 100755 (executable)
@@ -127,6 +127,19 @@ modpost_link()
        ${LD} ${LDFLAGS} -r -o ${1} $(modversions) ${objects}
 }
 
+# If CONFIG_LTO_CLANG is selected, we postpone running recordmcount until
+# we have compiled LLVM IR to an object file.
+recordmcount()
+{
+       if [ -z "${CONFIG_LTO_CLANG}" ]; then
+               return
+       fi
+
+       if [ -n "${CONFIG_FTRACE_MCOUNT_RECORD}" ]; then
+               scripts/recordmcount ${RECORDMCOUNT_FLAGS} $*
+       fi
+}
+
 # Link of vmlinux
 # ${1} - optional extra .o files
 # ${2} - output file
@@ -311,6 +324,9 @@ if [ -n "${CONFIG_LTO_CLANG}" ]; then
        KBUILD_VMLINUX_INIT=
        KBUILD_VMLINUX_MAIN=vmlinux.o
        KBUILD_VMLINUX_LIBS=
+
+       # Call recordmcount if needed
+       recordmcount vmlinux.o
 fi
 
 kallsymso=""
index 16e086dcc56762dd7bc8e6ccd78324e43320d829..69a769904da74d304ff4c11acedbc1be210a9b6d 100644 (file)
@@ -420,7 +420,8 @@ is_mcounted_section_name(char const *const txtname)
                strcmp(".softirqentry.text", txtname) == 0 ||
                strcmp(".kprobes.text", txtname) == 0 ||
                strcmp(".cpuidle.text", txtname) == 0 ||
-               strcmp(".text.unlikely", txtname) == 0;
+               (strncmp(".text.",       txtname, 6) == 0 &&
+                strcmp(".text..ftrace", txtname) != 0);
 }
 
 /* 32 bit and 64 bit are very similar */