All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
To: Sami Tolvanen <samitolvanen@google.com>
Cc: Yury Norov <ynorov@caviumnetworks.com>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	Greg Hackmann <ghackmann@google.com>,
	Kees Cook <keescook@chromium.org>,
	Matthias Kaehlcke <mka@chromium.org>,
	Nick Desaulniers <ndesaulniers@google.com>,
	Alex Matveev <alxmtvv@gmail.com>, Andi Kleen <ak@linux.intel.com>
Subject: Re: [PATCH 13/15] arm64: fix mrs_s/msr_s macros for clang LTO
Date: Thu, 9 Nov 2017 07:48:06 +0300	[thread overview]
Message-ID: <DAE9979D-29B4-4BD3-99E5-0E8273A7F8E0@linaro.org> (raw)
In-Reply-To: <20171109000222.GC8522@tassilo.jf.intel.com>

> On Nov 9, 2017, at 3:02 AM, Andi Kleen <ak@linux.intel.com> wrote:
> 
>> There's the series from Andi Kleen that enables LTO for Linux on x86:
>> https://lwn.net/Articles/512548/
>> https://github.com/andikleen/linux-misc/tree/lto-411-1
>> 
>> It has solved many problems you also try to solve, and some patches
>> are looking very similar. 
>> 
>> At now we have different patchsets for gcc and clang, and it would be
>> better to have them together. One thing I'm worried is that you introduce
>> CONFIG_CLANG_LTO and use it for all cases, including that where more
>> generic CONFIG_LTO should be used.
> 
> Yes would be good to merge the two. I've been looking at updating
> my old one.
> 
> I don't cover any ARM code, but lots of generic code. My patches
> also worked on MIPS at least.
> 
> There's also older patches to enable single-pass-linking for kallsyms,
> which is extremly useful for LTO build performance.

[Yury, thanks for the CC:]

Chiming in from the toolchain side, Linaro's Toolchain team will try to help with any GCC or Clang issues that are exposed by building kernel with LTO on arm64 / arm.

Regarding CONFIG_* options, I would expect most of the configuration changes to be equally valid for both GCC's and Clang's LTO support.  Sami, I don't think it's fair to ask you to support both Clang and GCC in your patchset, but, where changes are obviously toolchain-agnostic, could you use CONFIG_LTO?  And use CONFIG_LTO_CLANG for Clang-specific parts?

This way we will be able to avoid most of the refactoring when adding support for GCC's LTO.

Thank you,

--
Maxim Kuvyrkov
www.linaro.org

WARNING: multiple messages have this Message-ID (diff)
From: maxim.kuvyrkov@linaro.org (Maxim Kuvyrkov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 13/15] arm64: fix mrs_s/msr_s macros for clang LTO
Date: Thu, 9 Nov 2017 07:48:06 +0300	[thread overview]
Message-ID: <DAE9979D-29B4-4BD3-99E5-0E8273A7F8E0@linaro.org> (raw)
In-Reply-To: <20171109000222.GC8522@tassilo.jf.intel.com>

> On Nov 9, 2017, at 3:02 AM, Andi Kleen <ak@linux.intel.com> wrote:
> 
>> There's the series from Andi Kleen that enables LTO for Linux on x86:
>> https://lwn.net/Articles/512548/
>> https://github.com/andikleen/linux-misc/tree/lto-411-1
>> 
>> It has solved many problems you also try to solve, and some patches
>> are looking very similar. 
>> 
>> At now we have different patchsets for gcc and clang, and it would be
>> better to have them together. One thing I'm worried is that you introduce
>> CONFIG_CLANG_LTO and use it for all cases, including that where more
>> generic CONFIG_LTO should be used.
> 
> Yes would be good to merge the two. I've been looking at updating
> my old one.
> 
> I don't cover any ARM code, but lots of generic code. My patches
> also worked on MIPS at least.
> 
> There's also older patches to enable single-pass-linking for kallsyms,
> which is extremly useful for LTO build performance.

[Yury, thanks for the CC:]

Chiming in from the toolchain side, Linaro's Toolchain team will try to help with any GCC or Clang issues that are exposed by building kernel with LTO on arm64 / arm.

Regarding CONFIG_* options, I would expect most of the configuration changes to be equally valid for both GCC's and Clang's LTO support.  Sami, I don't think it's fair to ask you to support both Clang and GCC in your patchset, but, where changes are obviously toolchain-agnostic, could you use CONFIG_LTO?  And use CONFIG_LTO_CLANG for Clang-specific parts?

This way we will be able to avoid most of the refactoring when adding support for GCC's LTO.

Thank you,

--
Maxim Kuvyrkov
www.linaro.org

  reply	other threads:[~2017-11-09  4:48 UTC|newest]

Thread overview: 126+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-03 17:11 [PATCH 00/15] Add support for clang LTO Sami Tolvanen
2017-11-03 17:11 ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 01/15] kbuild: add ld-name macro and support for GNU gold Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 18:24   ` Nick Desaulniers
2017-11-03 18:24     ` Nick Desaulniers
2017-11-03 17:11 ` [PATCH 02/15] kbuild: fix LD_DEAD_CODE_DATA_ELIMINATION with " Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 03/15] kbuild: add support for clang LTO Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 04/15] kbuild: fix dynamic ftrace with " Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 05/15] scripts/mod: disable LTO for empty.c Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 06/15] efi/libstub: disable clang LTO Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 20:10   ` Ard Biesheuvel
2017-11-03 20:10     ` Ard Biesheuvel
2017-11-03 17:11 ` [PATCH 06/15] efi/libstub: disable LTO Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 07/15] arm64: use -mno-implicit-float instead of -mgeneral-regs-only Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:50   ` Nick Desaulniers
2017-11-03 17:50     ` Nick Desaulniers
2017-11-03 18:02   ` Mark Rutland
2017-11-03 18:02     ` Mark Rutland
2017-11-03 18:20     ` Nick Desaulniers
2017-11-03 18:20       ` Nick Desaulniers
2017-11-03 18:31   ` Mark Rutland
2017-11-03 18:31     ` Mark Rutland
2017-11-03 18:52     ` Mark Rutland
2017-11-03 18:52       ` Mark Rutland
2017-11-03 19:06       ` Kees Cook
2017-11-03 19:06         ` Kees Cook
2017-11-03 20:18         ` Sami Tolvanen
2017-11-03 20:18           ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 08/15] arm64: don't pass -maarch64linux to GNU gold Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 20:41   ` Yury Norov
2017-11-03 20:41     ` Yury Norov
2017-11-06 16:56     ` Sami Tolvanen
2017-11-06 16:56       ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 09/15] arm64: keep .altinstructions and .altinstr_replacement Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 18:40   ` Nick Desaulniers
2017-11-03 18:40     ` Nick Desaulniers
2017-11-03 17:11 ` [PATCH 10/15] arm64: disable ARM64_ERRATUM_843419 for clang LTO Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 20:13   ` Ard Biesheuvel
2017-11-03 20:13     ` Ard Biesheuvel
2017-11-09 18:54     ` Sami Tolvanen
2017-11-09 18:54       ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 11/15] arm64: explicitly pass --no-fix-cortex-a53-843419 to GNU gold Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 11/15] arm64: fix mrs_s/msr_s macros for clang LTO Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 12/15] arm64: add a workaround for GNU gold with ARM64_MODULE_PLTS Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:11 ` [PATCH 12/15] arm64: explicitly pass --no-fix-cortex-a53-843419 to GNU gold Sami Tolvanen
2017-11-03 17:11   ` Sami Tolvanen
2017-11-03 17:12 ` [PATCH 13/15] arm64: add a workaround for GNU gold with ARM64_MODULE_PLTS Sami Tolvanen
2017-11-03 17:12   ` Sami Tolvanen
2017-11-03 20:09   ` Ard Biesheuvel
2017-11-03 20:09     ` Ard Biesheuvel
2017-11-03 20:29     ` Sami Tolvanen
2017-11-03 20:29       ` Sami Tolvanen
2017-11-03 17:12 ` [PATCH 13/15] arm64: fix mrs_s/msr_s macros for clang LTO Sami Tolvanen
2017-11-03 17:12   ` Sami Tolvanen
2017-11-03 17:53   ` Nick Desaulniers
2017-11-03 17:53     ` Nick Desaulniers
2017-11-03 18:06     ` Mark Rutland
2017-11-03 18:06       ` Mark Rutland
2017-11-03 18:15       ` Nick Desaulniers
2017-11-03 18:15         ` Nick Desaulniers
2017-11-03 18:38   ` Mark Rutland
2017-11-03 18:38     ` Mark Rutland
2017-11-08  9:25   ` Yury Norov
2017-11-08  9:25     ` Yury Norov
2017-11-09  0:02     ` Andi Kleen
2017-11-09  0:02       ` Andi Kleen
2017-11-09  4:48       ` Maxim Kuvyrkov [this message]
2017-11-09  4:48         ` Maxim Kuvyrkov
2017-11-09 16:51         ` Sami Tolvanen
2017-11-09 16:51           ` Sami Tolvanen
2017-11-09 16:50       ` Sami Tolvanen
2017-11-09 16:50         ` Sami Tolvanen
2017-11-09 16:45     ` Sami Tolvanen
2017-11-09 16:45       ` Sami Tolvanen
2017-11-03 17:12 ` [PATCH 14/15] arm64: crypto: disable LTO for aes-ce-cipher.c Sami Tolvanen
2017-11-03 17:12   ` Sami Tolvanen
2017-11-03 20:10   ` Ard Biesheuvel
2017-11-03 20:10     ` Ard Biesheuvel
2017-11-03 17:12 ` [PATCH 15/15] arm64: select ARCH_SUPPORTS_CLANG_LTO Sami Tolvanen
2017-11-03 17:12   ` Sami Tolvanen
2017-11-03 17:51 ` [PATCH 00/15] Add support for clang LTO Mark Rutland
2017-11-03 17:51   ` Mark Rutland
2017-11-03 18:07   ` Nick Desaulniers
2017-11-03 18:07     ` Nick Desaulniers
2017-11-03 18:29     ` Mark Rutland
2017-11-03 18:29       ` Mark Rutland
2017-11-03 18:36       ` Nick Desaulniers
2017-11-03 18:36         ` Nick Desaulniers
2017-11-03 18:49         ` Mark Rutland
2017-11-03 18:49           ` Mark Rutland
2017-11-03 18:07   ` Matthias Kaehlcke
2017-11-03 18:07     ` Matthias Kaehlcke
2017-11-03 18:09   ` Mark Rutland
2017-11-03 18:09     ` Mark Rutland
2017-11-03 18:11     ` Nick Desaulniers
2017-11-03 18:11       ` Nick Desaulniers
2017-11-03 19:26       ` Mark Rutland
2017-11-03 19:26         ` Mark Rutland
2017-11-03 19:56         ` Sami Tolvanen
2017-11-03 19:56           ` Sami Tolvanen
2017-11-04  2:13           ` Mark Rutland
2017-11-04  2:13             ` Mark Rutland
2017-11-09 10:54             ` AKASHI Takahiro
2017-11-09 10:54               ` AKASHI Takahiro
2017-11-09 11:03               ` Marc Zyngier
2017-11-09 11:03                 ` Marc Zyngier
2017-11-09 16:31               ` Sami Tolvanen
2017-11-09 16:31                 ` Sami Tolvanen
2017-11-03 20:23         ` Ard Biesheuvel
2017-11-03 20:23           ` Ard Biesheuvel
2017-11-03 18:22   ` Sami Tolvanen
2017-11-03 18:22     ` Sami Tolvanen

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=DAE9979D-29B4-4BD3-99E5-0E8273A7F8E0@linaro.org \
    --to=maxim.kuvyrkov@linaro.org \
    --cc=ak@linux.intel.com \
    --cc=alxmtvv@gmail.com \
    --cc=ghackmann@google.com \
    --cc=keescook@chromium.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mka@chromium.org \
    --cc=ndesaulniers@google.com \
    --cc=samitolvanen@google.com \
    --cc=ynorov@caviumnetworks.com \
    /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.