From: Kohei Tokunaga <ktokunaga.mail@gmail.com>
To: qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Thomas Huth" <thuth@redhat.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Daniel P . Berrangé" <berrange@redhat.com>,
"WANG Xuerui" <git@xen0n.name>,
"Aurelien Jarno" <aurelien@aurel32.net>,
"Huacai Chen" <chenhuacai@kernel.org>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Aleksandar Rikalo" <arikalo@gmail.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Alistair Francis" <Alistair.Francis@wdc.com>,
"Stefan Weil" <sw@weilnetz.de>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Pierrick Bouvier" <pierrick.bouvier@linaro.org>,
"Kohei Tokunaga" <ktokunaga.mail@gmail.com>,
qemu-arm@nongnu.org, qemu-riscv@nongnu.org
Subject: [PATCH 00/33] tcg: Add WebAssembly backend
Date: Tue, 20 May 2025 21:51:02 +0900 [thread overview]
Message-ID: <cover.1747744132.git.ktokunaga.mail@gmail.com> (raw)
This patch series is split from the original "Enable QEMU to run on
browsers" series, focusing solely on introducing a TCG backend for
WebAssembly. This implemention is based on the latest master which already
includes the essential changes required to compile QEMU (in 32bit TCI mode)
using Emscripten.
# New TCG Backend for Browsers
A new TCG backend translates IR instructions into Wasm instructions and runs
them using the browser's WebAssembly APIs (WebAssembly.Module and
WebAssembly.instantiate). To minimize compilation overhead and avoid hitting
the browser's limitation of the number of instances, this backend integrates
a forked TCI. TBs run on TCI by default, with frequently executed TBs
compiled into WebAssembly.
# Workaround for Running 64bit Guests
The current implementation uses Wasm's 32bit memory model. This series
explores supporting TCG 64bit instructions while relying on SoftMMU for
address translation. To enable 64bit guest support in Wasm today, it was
necessary to partially revert recent changes that removed support for 64bit
guests on 32bit hosts (e.g. commits a70af12addd9060fdf8f3dbd42b42e3072c3914f
and bf455ec50b6fea15b4d2493059365bf94c706273) when compiling with
Emscripten. The reverting is partial and addresses only pointer width
differences between hosts and guests since the Wasm backend supports 64bit
word operations. While this serves as a temporary workaround, a long-term
solution could involve migrating to Wasm's 64bit memory model once it gains
broader support, as it is currently not widely adopted (e.g. unsupported by
Safari and libffi).
# Overview of build process
This section provides an overview of the build process for compiling QEMU
using Emscripten. Full instructions are available in the sample
repository[1].
To compile QEMU with Emscripten, the following dependencies are required.
The emsdk-wasm32-cross.docker environment includes all necessary components
and can be used as the build environment:
- Emscripten SDK (emsdk) v3.1.50
- Libraries cross-compiled with Emscripten (refer to
emsdk-wasm32-cross.docker for build steps)
- GLib v2.84.0
- zlib v1.3.1
- libffi v3.4.7
- Pixman v0.44.2
QEMU can be compiled using Emscripten's emconfigure and emmake, which
automatically set environment variables such as CC for targeting Emscripten.
emconfigure configure --static --disable-tools --target-list=x86_64-softmmu
emmake make -j$(nproc)
This process generates the following files:
- qemu-system-x86_64.js
- qemu-system-x86_64.wasm
- qemu-system-x86_64.worker.js
Guest images can be packaged using Emscripten's file_packager.py tool.
For example, if the images are stored in a directory named "pack", the
following command packages them, allowing QEMU to access them through
Emscripten's virtual filesystem:
/path/to/file_packager.py qemu-system-x86_64.data --preload pack > load.js
This process generates the following files:
- qemu-system-x86_64.data
- load.js
Emscripten allows passing arguments to the QEMU command via the Module
object in JavaScript:
Module['arguments'] = [
'-nographic', '-m', '512M', '-accel', 'tcg,tb-size=500',
'-L', 'pack/',
'-drive', 'if=virtio,format=raw,file=pack/rootfs.bin',
'-kernel', 'pack/bzImage',
'-append', 'earlyprintk=ttyS0 console=ttyS0 root=/dev/vda loglevel=7',
];
The sample repository[1] provides a complete setup, including an HTML file
that implements a terminal UI.
[1] https://github.com/ktock/qemu-wasm-sample
# Additional references
- A talk at FOSDEM 2025:
https://fosdem.org/2025/schedule/event/fosdem-2025-6290-running-qemu-inside-browser/
- Demo page on GitHub Pages: https://ktock.github.io/qemu-wasm-demo/
Kohei Tokunaga (33):
tcg: Fork TCI for wasm32 backend
tcg/wasm32: Do not use TCI disassembler in Wasm backend
meson: Enable to build wasm backend
tcg/wasm32: Set TCG_TARGET_INSN_UNIT_SIZE to 1
tcg/wasm32: Add and/or/xor instructions
tcg/wasm32: Add add/sub/mul instructions
tcg/wasm32: Add shl/shr/sar instructions
tcg/wasm32: Add setcond/negsetcond/movcond instructions
tcg/wasm32: Add deposit/sextract/extract instrcutions
tcg/wasm32: Add load and store instructions
tcg/wasm32: Add mov/movi instructions
tcg/wasm32: Add ext instructions
tcg/wasm32: Add bswap instructions
tcg/wasm32: Add rem/div instructions
tcg/wasm32: Add andc/orc/eqv/nand/nor instructions
tcg/wasm32: Add neg/not/ctpop instructions
tcg/wasm32: Add rot/clz/ctz instructions
tcg/wasm32: Add addc/subb instructions
tcg/wasm32: Add br/brcond instructions
tcg/wasm32: Add exit_tb/goto_tb/goto_ptr instructions
tcg/wasm32: Add call instruction
tcg/wasm32: Add qemu_ld/qemu_st instructions
include/exec: Allow using 64bit guest addresses on emscripten
tcg/wasm32: Set TCG_TARGET_REG_BITS to 64
tcg/wasm32: Set mulu2/muls2 as unimplemented
tcg/wasm32: Add initialization of fundamental registers
tcg/wasm32: Write wasm binary to TB
tcg/wasm32: Implement instantiation of Wasm binary
tcg/wasm32: Allow Asyncify unwinding from TB
tcg/wasm32: Enable instantiation of TBs executed many times
tcg/wasm32: Enable TLB lookup
meson: Propagate optimization flag for linking on Emscripten
.gitlab-ci.d: build wasm backend in CI
.gitlab-ci.d/buildtest.yml | 2 +-
MAINTAINERS | 7 +
accel/tcg/cputlb.c | 8 +-
include/accel/tcg/getpc.h | 2 +-
include/exec/helper-head.h.inc | 6 +
include/exec/tlb-common.h | 14 +-
include/exec/vaddr.h | 11 +
include/qemu/atomic.h | 4 +
include/tcg/helper-info.h | 4 +-
include/tcg/tcg.h | 6 +-
meson.build | 16 +-
tcg/aarch64/tcg-target.c.inc | 11 +
tcg/arm/tcg-target.c.inc | 11 +
tcg/i386/tcg-target.c.inc | 11 +
tcg/loongarch64/tcg-target.c.inc | 11 +
tcg/meson.build | 5 +
tcg/mips/tcg-target.c.inc | 11 +
tcg/ppc/tcg-target.c.inc | 11 +
tcg/region.c | 10 +-
tcg/riscv/tcg-target.c.inc | 11 +
tcg/s390x/tcg-target.c.inc | 11 +
tcg/sparc64/tcg-target.c.inc | 11 +
tcg/tcg.c | 23 +-
tcg/tci/tcg-target.c.inc | 11 +
tcg/wasm32.c | 1096 ++++++++
tcg/wasm32.h | 119 +
tcg/wasm32/tcg-target-con-set.h | 21 +
tcg/wasm32/tcg-target-con-str.h | 11 +
tcg/wasm32/tcg-target-has.h | 22 +
tcg/wasm32/tcg-target-mo.h | 17 +
tcg/wasm32/tcg-target-opc.h.inc | 15 +
tcg/wasm32/tcg-target-reg-bits.h | 12 +
tcg/wasm32/tcg-target.c.inc | 3985 ++++++++++++++++++++++++++++++
tcg/wasm32/tcg-target.h | 76 +
34 files changed, 5569 insertions(+), 33 deletions(-)
create mode 100644 tcg/wasm32.c
create mode 100644 tcg/wasm32.h
create mode 100644 tcg/wasm32/tcg-target-con-set.h
create mode 100644 tcg/wasm32/tcg-target-con-str.h
create mode 100644 tcg/wasm32/tcg-target-has.h
create mode 100644 tcg/wasm32/tcg-target-mo.h
create mode 100644 tcg/wasm32/tcg-target-opc.h.inc
create mode 100644 tcg/wasm32/tcg-target-reg-bits.h
create mode 100644 tcg/wasm32/tcg-target.c.inc
create mode 100644 tcg/wasm32/tcg-target.h
--
2.43.0
next reply other threads:[~2025-05-20 12:57 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-20 12:51 Kohei Tokunaga [this message]
2025-05-20 12:51 ` [PATCH 01/33] tcg: Fork TCI for wasm32 backend Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 02/33] tcg/wasm32: Do not use TCI disassembler in Wasm backend Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 03/33] meson: Enable to build wasm backend Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 04/33] tcg/wasm32: Set TCG_TARGET_INSN_UNIT_SIZE to 1 Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 05/33] tcg/wasm32: Add and/or/xor instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 06/33] tcg/wasm32: Add add/sub/mul instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 07/33] tcg/wasm32: Add shl/shr/sar instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 08/33] tcg/wasm32: Add setcond/negsetcond/movcond instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 09/33] tcg/wasm32: Add deposit/sextract/extract instrcutions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 10/33] tcg/wasm32: Add load and store instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 11/33] tcg/wasm32: Add mov/movi instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 12/33] tcg/wasm32: Add ext instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 13/33] tcg/wasm32: Add bswap instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 14/33] tcg/wasm32: Add rem/div instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 15/33] tcg/wasm32: Add andc/orc/eqv/nand/nor instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 16/33] tcg/wasm32: Add neg/not/ctpop instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 17/33] tcg/wasm32: Add rot/clz/ctz instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 18/33] tcg/wasm32: Add addc/subb instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 19/33] tcg/wasm32: Add br/brcond instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 20/33] tcg/wasm32: Add exit_tb/goto_tb/goto_ptr instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 21/33] tcg/wasm32: Add call instruction Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 22/33] tcg/wasm32: Add qemu_ld/qemu_st instructions Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 23/33] include/exec: Allow using 64bit guest addresses on emscripten Kohei Tokunaga
2025-05-20 14:32 ` Paolo Bonzini
2025-05-21 8:29 ` Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 24/33] tcg/wasm32: Set TCG_TARGET_REG_BITS to 64 Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 25/33] tcg/wasm32: Set mulu2/muls2 as unimplemented Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 26/33] tcg/wasm32: Add initialization of fundamental registers Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 27/33] tcg/wasm32: Write wasm binary to TB Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 28/33] tcg/wasm32: Implement instantiation of Wasm binary Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 29/33] tcg/wasm32: Allow Asyncify unwinding from TB Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 30/33] tcg/wasm32: Enable instantiation of TBs executed many times Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 31/33] tcg/wasm32: Enable TLB lookup Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 32/33] meson: Propagate optimization flag for linking on Emscripten Kohei Tokunaga
2025-05-20 12:51 ` [PATCH 33/33] .gitlab-ci.d: build wasm backend in CI Kohei Tokunaga
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=cover.1747744132.git.ktokunaga.mail@gmail.com \
--to=ktokunaga.mail@gmail.com \
--cc=Alistair.Francis@wdc.com \
--cc=alex.bennee@linaro.org \
--cc=arikalo@gmail.com \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=chenhuacai@kernel.org \
--cc=git@xen0n.name \
--cc=jiaxun.yang@flygoat.com \
--cc=marcandre.lureau@redhat.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=pierrick.bouvier@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=stefanha@redhat.com \
--cc=sw@weilnetz.de \
--cc=thuth@redhat.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.