From: "Bruno Larsen (billionai)" <bruno.larsen@eldorado.org.br> To: qemu-devel@nongnu.org Cc: lucas.araujo@eldorado.org.br, lagarcia@br.ibm.com, luis.pires@eldorado.org.br, fernando.valle@eldorado.org.br, qemu-ppc@nongnu.org, andre.silva@eldorado.org.br, "Bruno Larsen \(billionai\)" <bruno.larsen@eldorado.org.br>, matheus.ferst@eldorado.org.br Subject: [RFC PATCH 0/4] target/ppc: add disable-tcg option Date: Fri, 9 Apr 2021 12:19:12 -0300 [thread overview] Message-ID: <20210409151916.97326-1-bruno.larsen@eldorado.org.br> (raw) This patch series aims to add the option to build without TCG for the powerpc target. This RFC shows mostly the strategies employed when dealing with compilation problems, and ask for input on the bits we don't quite understand yet. The first patch mostly code motion, as referenced in 2021-04/msg0717. The second patch shows the 2 strategies we've considered, and hope to get feedback on. The third patch contains the stubs we haven't decided on how to deal with yet, but needed to exist to compile the project. The final patch just changes the meson.build rules Bruno Larsen (billionai) (4): target/ppc: Code motion required to build disabling tcg target/ppc: added solutions for problems encountered when building with disable-tcg target/ppc: Add stubs for tcg functions, so it build with disable-tcg target/ppc: updated build rules for disable-tcg option target/ppc/arch_dump.c | 17 + target/ppc/cpu.c | 859 +++++++++++++++++++++++ target/ppc/cpu.h | 15 + target/ppc/gdbstub.c | 253 +++++++ target/ppc/kvm.c | 30 + target/ppc/kvm_ppc.h | 11 + target/ppc/machine.c | 33 +- target/ppc/meson.build | 22 +- target/ppc/tcg-stub.c | 139 ++++ target/ppc/translate_init.c.inc | 1148 +------------------------------ 10 files changed, 1407 insertions(+), 1120 deletions(-) create mode 100644 target/ppc/tcg-stub.c -- 2.17.1
next reply other threads:[~2021-04-09 15:50 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-09 15:19 Bruno Larsen (billionai) [this message] 2021-04-09 15:19 ` [PATCH 1/4] target/ppc: Code motion required to build disabling tcg Bruno Larsen (billionai) 2021-04-09 19:48 ` Fabiano Rosas 2021-04-12 4:34 ` David Gibson 2021-04-09 15:19 ` [PATCH 2/4] target/ppc: added solutions for building with disable-tcg Bruno Larsen (billionai) 2021-04-09 20:40 ` Fabiano Rosas 2021-04-12 5:08 ` David Gibson 2021-04-12 15:40 ` Richard Henderson 2021-04-13 6:42 ` David Gibson 2021-04-09 15:19 ` [PATCH 3/4] target/ppc: Add stubs for tcg functions, so it builds Bruno Larsen (billionai) 2021-04-19 5:28 ` David Gibson 2021-04-09 15:19 ` [PATCH 4/4] target/ppc: updated build rules for disable-tcg option Bruno Larsen (billionai) 2021-04-09 15:57 ` [RFC PATCH 0/4] target/ppc: add " no-reply 2021-04-12 5:13 ` David Gibson 2021-04-12 4:32 ` David Gibson 2021-04-12 11:12 Bruno Piazera Larsen
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=20210409151916.97326-1-bruno.larsen@eldorado.org.br \ --to=bruno.larsen@eldorado.org.br \ --cc=andre.silva@eldorado.org.br \ --cc=fernando.valle@eldorado.org.br \ --cc=lagarcia@br.ibm.com \ --cc=lucas.araujo@eldorado.org.br \ --cc=luis.pires@eldorado.org.br \ --cc=matheus.ferst@eldorado.org.br \ --cc=qemu-devel@nongnu.org \ --cc=qemu-ppc@nongnu.org \ --subject='Re: [RFC PATCH 0/4] target/ppc: add disable-tcg option' \ /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
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).