DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v2] meson: add support for clang LTO
@ 2022-04-01  4:54 Mahdi Rakhshandehroo
  2023-07-06  2:55 ` Stephen Hemminger
  0 siblings, 1 reply; 2+ messages in thread
From: Mahdi Rakhshandehroo @ 2022-04-01  4:54 UTC (permalink / raw)
  To: dev

Currently, building DPDK with clang + LTO is unsupported, which is a
showstopper for cross-language interprocedural optimizations. The root
cause is that pmdinfogen expects to scan through the section headers of
generated ELF object files, but clang's "-flto" flag generates LLVM
bitcode instead. This patch enables LTO builds with clang, provided that
the linker is set to lld.

The mechanism of action is clang's "-fembed-bitcode" flag, which acts
similarly to gcc's "-ffat-lto-objects" - the compiler outputs a normal
ELF object file that keeps pmdinfogen happy, but also embeds IR bitcode
in a special section of the ELF that lld can then use to construct the
final binary.

Signed-off-by: Mahdi Rakhshandehroo <mahdi.rakhshandehroo@gmail.com>
---
Forgot to remove get_linker_id() check from the previous patch - that
function is only available in Meson >= 0.54.

 config/meson.build | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/config/meson.build b/config/meson.build
index 7134e80..5425181 100644
--- a/config/meson.build
+++ b/config/meson.build
@@ -406,16 +406,21 @@ if is_windows
 endif
 
 if get_option('b_lto')
-    if cc.has_argument('-ffat-lto-objects')
+    if cc.get_id() == 'gcc' and cc.has_argument('-ffat-lto-objects')
         add_project_arguments('-ffat-lto-objects', language: 'c')
+
+        # workaround for gcc bug 81440
+        if cc.version().version_compare('<8.0')
+            add_project_arguments('-Wno-lto-type-mismatch', language: 'c')
+            add_project_link_arguments('-Wno-lto-type-mismatch', language: 'c')
+        endif
+    elif cc.get_id() == 'clang' and cc.has_argument('-fembed-bitcode')
+        # TODO: enforce use of lld using cc.get_linker_id() with Meson >= 0.54
+        add_project_arguments('-fno-lto', '-fembed-bitcode', language: 'c')
+        endif
     else
         error('compiler does not support fat LTO objects - please turn LTO off')
     endif
-    # workaround for gcc bug 81440
-    if cc.get_id() == 'gcc' and cc.version().version_compare('<8.0')
-        add_project_arguments('-Wno-lto-type-mismatch', language: 'c')
-        add_project_link_arguments('-Wno-lto-type-mismatch', language: 'c')
-    endif
 endif
 
 if get_option('b_sanitize') == 'address' or get_option('b_sanitize') == 'address,undefined'
-- 
2.25.1


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

* Re: [PATCH v2] meson: add support for clang LTO
  2022-04-01  4:54 [PATCH v2] meson: add support for clang LTO Mahdi Rakhshandehroo
@ 2023-07-06  2:55 ` Stephen Hemminger
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Hemminger @ 2023-07-06  2:55 UTC (permalink / raw)
  To: Mahdi Rakhshandehroo; +Cc: dev

On Thu, 31 Mar 2022 21:54:35 -0700
Mahdi Rakhshandehroo <mahdi.rakhshandehroo@gmail.com> wrote:

> Currently, building DPDK with clang + LTO is unsupported, which is a
> showstopper for cross-language interprocedural optimizations. The root
> cause is that pmdinfogen expects to scan through the section headers of
> generated ELF object files, but clang's "-flto" flag generates LLVM
> bitcode instead. This patch enables LTO builds with clang, provided that
> the linker is set to lld.
> 
> The mechanism of action is clang's "-fembed-bitcode" flag, which acts
> similarly to gcc's "-ffat-lto-objects" - the compiler outputs a normal
> ELF object file that keeps pmdinfogen happy, but also embeds IR bitcode
> in a special section of the ELF that lld can then use to construct the
> final binary.
> 
> Signed-off-by: Mahdi Rakhshandehroo <mahdi.rakhshandehroo@gmail.com>
> ---

This patch still has several build failures such as Intel compiler.
Please resolve and resubmit

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

end of thread, other threads:[~2023-07-06  2:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-01  4:54 [PATCH v2] meson: add support for clang LTO Mahdi Rakhshandehroo
2023-07-06  2:55 ` Stephen Hemminger

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).