All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anton Johansson via qemu development <qemu-devel@nongnu.org>
To: Alessandro Di Federico <ale@rev.ng>
Cc: Anton Johansson via qemu development <qemu-devel@nongnu.org>,
	 brian.cain@oss.qualcomm.com, pierrick.bouvier@oss.qualcomm.com,
	philmd@mailo.com
Subject: Re: [PATCH v2 07/50] helper-to-tcg: Introduce get-llvm-ir.py
Date: Tue, 11 Aug 2026 13:35:14 +0200	[thread overview]
Message-ID: <ansIMUUp-gDlwK8Q@hive.localdomain> (raw)
In-Reply-To: <20260804140814.23295a64@spawn>

On 04/08/26, Alessandro Di Federico via qemu development wrote:
> On Thu, 30 Jul 2026 05:09:41 +0200
> Anton Johansson via qemu development <qemu-devel@nongnu.org> wrote:
> 
> > ---
> >  subprojects/helper-to-tcg/get-llvm-ir.py | 145 +++++++++++++++++++++++
> >  subprojects/helper-to-tcg/meson.build    |   8 ++
> >  2 files changed, 153 insertions(+)
> >  create mode 100755 subprojects/helper-to-tcg/get-llvm-ir.py
> > 
> > diff --git a/subprojects/helper-to-tcg/get-llvm-ir.py b/subprojects/helper-to-tcg/get-llvm-ir.py
> > new file mode 100755
> > index 0000000000..982b87f791
> > --- /dev/null
> > +++ b/subprojects/helper-to-tcg/get-llvm-ir.py
> > @@ -0,0 +1,145 @@
> > +#!/usr/bin/env python3
> > +
> > +##
> > +##  Copyright(c) 2026 rev.ng Labs Srl. All Rights Reserved.
> > +##
> > +##  This program is free software; you can redistribute it and/or modify
> > +##  it under the terms of the GNU General Public License as published by
> > +##  the Free Software Foundation; either version 2 of the License, or
> > +##  (at your option) any later version.
> > +##
> > +##  This program is distributed in the hope that it will be useful,
> > +##  but WITHOUT ANY WARRANTY; without even the implied warranty of
> > +##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > +##  GNU General Public License for more details.
> > +##
> > +##  You should have received a copy of the GNU General Public License
> > +##  along with this program; if not, see <http://www.gnu.org/licenses/>.
> > +##
> > +
> > +import argparse
> > +import json
> > +import os
> > +import shlex
> > +import sys
> > +import subprocess
> > +
> > +
> > +def log(msg):
> > +    print(msg, file=sys.stderr)
> > +
> > +
> > +def run_command(command):
> > +    proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
> > +    out = proc.communicate()
> > +    if proc.wait() != 0:
> > +        log(f"Command: {' '.join(command)} exited with {proc.returncode}\n")
> > +        log(f"output:\n{out}\n")
> 
> The whole program should fail if a subcommand fails, printing about it
> is not enough.

makes sense

[...]

> > +def generate_llvm_ir(
> > +    compile_commands_path, clang_path, output_path, input_path, target
> > +):
> > +    command = find_compile_commands(
> > +        compile_commands_path, clang_path, input_path, target
> > +    )
> > +
> > +    flags_to_remove = {
> > +        "-ftrivial-auto-var-init=zero",
> > +        "-fzero-call-used-regs=used-gpr",
> > +        "-Wimplicit-fallthrough=2",
> > +        "-Wold-style-declaration",
> > +        "-Wno-psabi",
> > +        "-Wshadow=local",
> > +        "-c",
> > +    }
> 
> How did you come up with this list?
> We should put some indication to make its maintenance easier.
> For instance, explicitly mention what part of QEMU introduced it, so
> one can easily check if it's still relevant or if it disappeared.

Agree, these are a bit arcane.  I'll double check if they're still
necessary and comment.

[...]

> > +def main():
> > +    parser = argparse.ArgumentParser(
> > +        description="Produce the LLVM IR of a given .c file."
> > +    )
> > +    parser.add_argument(
> > +        "--compile-commands", required=True, help="Path to compile_commands.json"
> > +    )
> 
> I'm not super happy that we use `compile_commands.json`, however:
> 
> 1. `compile_commands.json` is emitted unconditionally by meson at build
>    time.
> 
> 2. There's no good alternative. In rev.ng we configure a dedicated
>    (throwaway) clang QEMU build with `-fembed-bitcode` and then extract
>    the IR downstream.
> 
>    Maybe here we could manage to build a set of sources with
>    `-fembed-bitcode`, but that won't work unless the compiler is clang.
> 
>    We could configure a temporary clang QEMU build in a subdirectory,
>    but that's not very nice.
> 
> So, in the end, this makes sense to me.
> 
> The proper solution would to have `meson` provide the full invocation
> used to produce a certain object file that we can then manipulate, but
> AFAIU there's not such a feature.
> 
> One day we could maybe explore adjusting meson, but I'd say not today.

Yeah compile_commands.json isn't that nice but atleast there's precedent
for it in QEMU (`scripts/modinfo-collect.py`,
`scripts/check_sparse.py`).

> 
> > +    parser.add_argument("--clang", default="clang", help="Path to clang.")
> > +    parser.add_argument("--llvm-link", default="llvm-link", help="Path to llvm-link.")
> > +    parser.add_argument("-o", "--output", required=True, help="Output .ll file path")
> > +    parser.add_argument(
> > +        "--target-path", help="Path to QEMU target dir. (e.q. target/i386)"
> > +    )
> > +    parser.add_argument("inputs", nargs="+", help=".c file inputs")
> > +    args = parser.parse_args()
> > +
> > +    outputs = []
> > +    for input in args.inputs:
> > +        output = os.path.basename(input) + ".ll"
> > +        generate_llvm_ir(
> > +            args.compile_commands, args.clang, output, input, args.target_path
> > +        )
> > +        outputs.append(output)
> > +
> > +    run_command([args.llvm_link] + outputs + ["-S", "-o", args.output])
> 
> Maybe we should emit bitcode (binary form) instead of textual LLVM IR.
> If you go this route, don't forget to rename the output to `.bc`.
> 
> I know this is easy for debugging, but bitcode is what one should use
> "in production" and you're one `opt -S` away from getting the textual
> IR again.

AGH, yes I meant to use bitcode but forgot to change it before sending:)

> 
> > +
> > +
> > +if __name__ == "__main__":
> > +    sys.exit(main())
> > diff --git a/subprojects/helper-to-tcg/meson.build b/subprojects/helper-to-tcg/meson.build
> > index 8ab58adb39..97bce186fe 100644
> > --- a/subprojects/helper-to-tcg/meson.build
> > +++ b/subprojects/helper-to-tcg/meson.build
> > @@ -42,6 +42,14 @@ endif
> >  sources = [
> >  ]
> >  
> > +clang = bindir / 'clang'
> > +llvm_link = bindir / 'llvm-link'
> > +
> > +get_llvm_ir_cmd = [python, meson.current_source_dir() / 'get-llvm-ir.py',
> > +                   '--compile-commands', 'compile_commands.json',
> > +                   '--clang', clang,
> > +                   '--llvm-link', llvm_link]
> > +
> >  # NOTE: Add -Wno-template-id-cdtor for GCC versions >= 14.  This warning is
> >  # related to a change in the C++ standard in C++20, that also applies to C++14
> >  # for some reason. See defect report DR2237 and commit
> > -- 
> > 2.52.0
> 
> Reviewed-by: Alessandro Di Federico <ale@rev.ng>

Thanks

-- 
Anton Johansson
rev.ng Labs Srl.


  reply	other threads:[~2026-08-11 11:30 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-30  3:09 [PATCH v2 00/50] Introduce helper-to-tcg Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 01/50] accel/tcg: Add bitreverse and funnel-shift runtime helper functions Anton Johansson via qemu development
2026-07-30  8:04   ` Philippe Mathieu-Daudé
2026-07-30 14:43   ` Richard Henderson
2026-07-30  3:09 ` [PATCH v2 02/50] accel/tcg: Add getpc helper Anton Johansson via qemu development
2026-07-30 14:48   ` Richard Henderson
2026-07-30  3:09 ` [PATCH v2 03/50] tcg: Introduce tcg-global-mappings Anton Johansson via qemu development
2026-07-30 16:11   ` Richard Henderson
2026-07-30  3:09 ` [PATCH v2 04/50] tcg: Increase maximum TB size Anton Johansson via qemu development
2026-07-30 16:13   ` Richard Henderson
2026-07-30  3:09 ` [PATCH v2 05/50] tcg: Expose tcg_gen_ussub_sat() Anton Johansson via qemu development
2026-07-30  7:52   ` Philippe Mathieu-Daudé
2026-07-30 16:17   ` Richard Henderson
2026-07-30  3:09 ` [PATCH v2 06/50] Add helper-to-tcg subproject Anton Johansson via qemu development
2026-07-30 15:56   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 07/50] helper-to-tcg: Introduce get-llvm-ir.py Anton Johansson via qemu development
2026-08-04 12:08   ` Alessandro Di Federico via qemu development
2026-08-11 11:35     ` Anton Johansson via qemu development [this message]
2026-07-30  3:09 ` [PATCH v2 08/50] helper-to-tcg: Handle LLVM version compatibility Anton Johansson via qemu development
2026-08-11 10:12   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 09/50] helper-to-tcg: Introduce custom LLVM pipeline Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 10/50] helper-to-tcg: Add pipeline --debug and --debug-only Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 11/50] helper-to-tcg: Add simple error creation helper Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 12/50] helper-to-tcg: Introduce PrepareForOptPass Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 13/50] helper-to-tcg: PrepareForOptPass, demangle function names Anton Johansson via qemu development
2026-08-07 16:03   ` Alessandro Di Federico via qemu development
2026-08-11 10:09     ` Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 14/50] helper-to-tcg: PrepareForOptPass, map annotations Anton Johansson via qemu development
2026-08-07 10:26   ` Alessandro Di Federico via qemu development
2026-08-11  9:52     ` Anton Johansson via qemu development
2026-08-11 10:12   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 15/50] helper-to-tcg: PrepareForOptPass, cull unused functions Anton Johansson via qemu development
2026-08-11 10:13   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 16/50] helper-to-tcg: PrepareForOptPass, undef llvm.returnaddress Anton Johansson via qemu development
2026-08-11 10:12   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 17/50] helper-to-tcg: PrepareForOptPass, fixup inline attributes Anton Johansson via qemu development
2026-08-11 10:12   ` Alessandro Di Federico via qemu development
2026-07-30  3:09 ` [PATCH v2 18/50] helper-to-tcg: PrepareForOptPass, collect debuginfo Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 19/50] helper-to-tcg: Pipeline, run optimization pass Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 20/50] helper-to-tcg: Introduce pseudo instructions Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 21/50] helper-to-tcg: Add guest vector layout description Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 22/50] helper-to-tcg: Introduce PrepareForTcgPass Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 23/50] helper-to-tcg: PrepareForTcgPass, remove functions with cycles Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 24/50] helper-to-tcg: PrepareForTcgPass, demote PHI nodes Anton Johansson via qemu development
2026-07-30  3:09 ` [PATCH v2 25/50] helper-to-tcg: PrepareForTcgPass, map TCG globals Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 26/50] helper-to-tcg: PrepareForTcgPass, transform GEPs Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 27/50] helper-to-tcg: PrepareForTcgPass, canonicalize IR Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 28/50] helper-to-tcg: PrepareForTcgPass, identity map trivial expressions Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 29/50] helper-to-tcg: Introduce TcgV structure Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 30/50] helper-to-tcg: Introduce TcgGenPass Anton Johansson via qemu development
2026-08-07 10:27   ` Alessandro Di Federico via qemu development
2026-08-11 10:16     ` Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 31/50] helper-to-tcg: TcgGenPass, linearize basic blocks Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 32/50] helper-to-tcg: TcgGenPass, introduce Value <-> TcgV map Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 33/50] helper-to-tcg: TcgGenPass, add structs for string emission Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 34/50] helper-to-tcg: TcgGenPass, map arguments to TCG Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 35/50] helper-to-tcg: TcgGenPass, propagate constant expresssions Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 36/50] helper-to-tcg: TcgGenPass, allocate TCG registers Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 37/50] helper-to-tcg: TcgGenPass, emit TCG strings Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 38/50] helper-to-tcg: Add README Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 39/50] helper-to-tcg: Add end-to-end tests Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 40/50] test: helper-to-tcg docker tests Anton Johansson via qemu development
2026-07-31 11:46   ` Alessandro Di Federico via qemu development
2026-07-31 11:48   ` Alessandro Di Federico via qemu development
2026-07-31 16:47   ` Pierrick Bouvier
2026-07-30  3:10 ` [PATCH v2 41/50] target/hexagon: Add get_tb_mmu_index() Anton Johansson via qemu development
2026-07-30  7:49   ` Philippe Mathieu-Daudé
2026-07-30  3:10 ` [PATCH v2 42/50] target/hexagon: Increase VECTOR_TEMPS_MAX Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 43/50] target/hexagon: Provide env to tcg global mapping Anton Johansson via qemu development
2026-07-30 16:28   ` Richard Henderson
2026-07-30  3:10 ` [PATCH v2 44/50] target/hexagon: Keep gen_slotval/check_noshuf for helper-to-tcg Anton Johansson via qemu development
2026-07-31 11:46   ` Alessandro Di Federico via qemu development
2026-07-30  3:10 ` [PATCH v2 45/50] target/hexagon: Emit annotations for helpers Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 46/50] target/hexagon: Split probe_and_commit helper Anton Johansson via qemu development
2026-07-30  7:50   ` Philippe Mathieu-Daudé
2026-07-30  3:10 ` [PATCH v2 47/50] target/hexagon: Use helper-to-tcg helper calls Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 48/50] target/hexagon: Manually call generated HVX instructions Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 49/50] target/hexagon: Use idef-parser as a fallback Anton Johansson via qemu development
2026-07-30  3:10 ` [PATCH v2 50/50] target/hexagon: Use helper-to-tcg Anton Johansson via qemu development
2026-08-04 12:08   ` Alessandro Di Federico via qemu development

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=ansIMUUp-gDlwK8Q@hive.localdomain \
    --to=qemu-devel@nongnu.org \
    --cc=ale@rev.ng \
    --cc=anjo@rev.ng \
    --cc=brian.cain@oss.qualcomm.com \
    --cc=philmd@mailo.com \
    --cc=pierrick.bouvier@oss.qualcomm.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.