Re: [RFC PATCH v1 09/43] helper-to-tcg: Introduce get-llvm-ir.py

2024-12-03 Thread Anton Johansson via
On 22/11/24, Richard Henderson wrote: > On 11/20/24 19:49, Anton Johansson wrote: > > Introduces a new python helper script to convert a set of QEMU .c files to > > LLVM IR .ll using clang. Compile flags are found by looking at > > compile_commands.json, and llvm-link is used to link together all

Re: [RFC PATCH v1 09/43] helper-to-tcg: Introduce get-llvm-ir.py

2024-11-22 Thread Richard Henderson
On 11/20/24 19:49, Anton Johansson wrote: Introduces a new python helper script to convert a set of QEMU .c files to LLVM IR .ll using clang. Compile flags are found by looking at compile_commands.json, and llvm-link is used to link together all LLVM modules into a single module. Signed-off-by:

[RFC PATCH v1 09/43] helper-to-tcg: Introduce get-llvm-ir.py

2024-11-20 Thread Anton Johansson via
Introduces a new python helper script to convert a set of QEMU .c files to LLVM IR .ll using clang. Compile flags are found by looking at compile_commands.json, and llvm-link is used to link together all LLVM modules into a single module. Signed-off-by: Anton Johansson --- subprojects/helper-to