[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260130233439.647447-1-irogers@google.com>
Date: Fri, 30 Jan 2026 15:34:36 -0800
From: Ian Rogers <irogers@...gle.com>
To: Peter Zijlstra <peterz@...radead.org>, Ingo Molnar <mingo@...hat.com>,
Namhyung Kim <namhyung@...nel.org>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>, Jiri Olsa <jolsa@...nel.org>,
Adrian Hunter <adrian.hunter@...el.com>, Nathan Chancellor <nathan@...nel.org>,
Nick Desaulniers <nick.desaulniers+lkml@...il.com>, Bill Wendling <morbo@...gle.com>,
Justin Stitt <justinstitt@...gle.com>, Charlie Jenkins <charlie@...osinc.com>,
"Masami Hiramatsu (Google)" <mhiramat@...nel.org>, James Clark <james.clark@...aro.org>,
Collin Funk <collin.funk1@...il.com>, Dmitry Vyukov <dvyukov@...gle.com>,
linux-perf-users@...r.kernel.org, linux-kernel@...r.kernel.org,
llvm@...ts.linux.dev
Cc: Ian Rogers <irogers@...gle.com>
Subject: [PATCH v10 0/3] perf capstone/llvm dlopen support
Linking against libcapstone and libLLVM can be a significant increase
in dependencies and file size if building statically. The dependencies
are also quite cumbersome if bringing perf into a distribution. For
something like `perf record` the disassembler and addr2line
functionality of libcapstone and libLLVM won't be used. These patches
support dynamically loading these libraries using dlopen and then
calling the appropriate functions found using dlsym. Using dlopen
allows libcapstone and libLLVM to be installed separately to perf and
when that's done the performance will improve as separate commands for
objdump and addr2line won't be invoked.
The patch series adds perf_ variants of the capstone/llvm functions
that will either directly call the function or use dlopen/dlsym to
discover and then call the function.
For capstone if there is no capstone.h then the feature test will
fail, there is no capstone support and HAVE_LIBCAPSTONE_SUPPORT won't
be defined. This is necessary as the libcapstone structs and enum
constants vary across releases and perf cannot know what to use
without having the header file. If HAVE_LIBCAPSTONE_SUPPORT is defined
and the build made with LIBCAPSTONE_DLOPEN=1 then dlopen is used to
open libcapstone.so, etc. If LIBCAPSTONE_DLOPEN isn't given to the
build then the build will try to link against libcapstone (as with
before these changes).
For LLVM if the feature test succeeded then HAVE_LIBLLVM_SUPPORT is
defined and libLLVM is linked against. If the feature test fails, or
NO_LIBLLVM=1 given, then dlopen is used to open the library. Five
constants and three pointer types are declared to avoid having a
header file dependency - ie there is no case where the LLVM support
won't try to at least dlopen libLLVM.so.
The LLVM addr2line ABIs are written in C++ with no C counterpart. When
!HAVE_LIBLLVM_SUPPORT the LLVM addr2line support is compiled out
except when a new LIBLLVM_DYNAMIC build option is given. This option
builds a libperf-llvm.so that contains the LLVM addr2line
implementation and that creates the dlopen/dlsym calls to use this in
the regular code. Ideally LLVM would extend their C API to avoid this.
v10: Make the libcapstone code use capstone.h and conditionally use
dlopen as the constants and structs libcapstone declares vary
across releases.
v9: Rebase.
https://lore.kernel.org/lkml/20260127062302.544809-1-irogers@google.com/
v8: Rebase down to 3 patches. Update commit and cover messages.
v7: Refactor now the first 5 patches, that largely moved code around,
have landed. Move the dlopen code to the end of the series so that
the first 8 patches can be picked improving capstone/LLVM support
without adding the dlopen code. Rename the cover letter and
disassembler cleanup patches.
v6: Refactor the libbfd along with capstone and LLVM, previous patch
series had tried to avoid this by just removing the deprecated
BUILD_NONDISTRO code. Remove the libtracefs removal into its own
patch.
v5: Rebase and comment typo fix.
v4: Rebase and addition of a patch removing an unused struct variable.
v3: Add srcline addr2line fallback trying LLVM first then forking a
process. This came up in conversation with Steinar Gunderson
<sesse@...gle.com>.
Tweak the cover letter message to try to address Andi Kleen's
<ak@...ux.intel.com> feedback that the series doesn't really
achieve anything.
v2: Add mangling of the function names in libperf-llvm.so to avoid
potential infinite recursion. Add BPF JIT disassembly support to
LLVM and capstone. Add/rebase the BUILD_NONDISTRO cleanup onto the
series from:
https://lore.kernel.org/lkml/20250111202851.1075338-1-irogers@google.com/
Some other minor additional clean up.
Ian Rogers (3):
perf capstone: Support for dlopen-ing libcapstone.so
perf llvm: Support for dlopen-ing libLLVM.so
perf llvm: Mangle libperf-llvm.so function names
tools/perf/Makefile.config | 21 ++-
tools/perf/Makefile.perf | 24 ++-
tools/perf/tests/make | 4 +
tools/perf/util/Build | 4 +-
tools/perf/util/capstone.c | 176 ++++++++++++++-----
tools/perf/util/capstone.h | 33 ++++
tools/perf/util/llvm-c-helpers.cpp | 120 ++++++++++++-
tools/perf/util/llvm-c-helpers.h | 24 ++-
tools/perf/util/llvm.c | 273 +++++++++++++++++++++++++----
9 files changed, 591 insertions(+), 88 deletions(-)
--
2.53.0.rc1.225.gd81095ad13-goog
Powered by blists - more mailing lists