Message ID | 20241118172357.475281-6-pierrick.bouvier@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | Enhance documentation for new developers | expand |
On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier <pierrick.bouvier@linaro.org> wrote: > > Present the various parts of QEMU and organization of codebase. > > Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> I like this; it's something I've thought for a while would be good to have, but which I never got round to trying to put together. Thanks for doing this! Mostly my comments below are spelling/typo nits and other minor stuff. > --- > docs/about/emulation.rst | 2 + > docs/codebase/index.rst | 211 +++++++++++++++++++++++++ > docs/devel/decodetree.rst | 2 + > docs/devel/ebpf_rss.rst | 2 + > docs/devel/index-internals.rst | 2 + > docs/devel/migration/main.rst | 2 + > docs/devel/qapi-code-gen.rst | 1 + > docs/devel/testing/main.rst | 9 +- > docs/devel/testing/qtest.rst | 2 + > docs/index.rst | 3 + > docs/interop/qemu-ga.rst | 2 + > docs/system/qemu-block-drivers.rst.inc | 2 + > docs/tools/qemu-storage-daemon.rst | 2 + > docs/user/main.rst | 6 + > 14 files changed, 247 insertions(+), 1 deletion(-) > create mode 100644 docs/codebase/index.rst > > diff --git a/docs/about/emulation.rst b/docs/about/emulation.rst > index 3028d5fff7a..3bc3579434f 100644 > --- a/docs/about/emulation.rst > +++ b/docs/about/emulation.rst > @@ -176,6 +176,8 @@ for that architecture. > - System > - Tensilica ISS SIMCALL > > +.. _tcg-plugins: > + > TCG Plugins > ----------- > > diff --git a/docs/codebase/index.rst b/docs/codebase/index.rst > new file mode 100644 > index 00000000000..353830ef175 > --- /dev/null > +++ b/docs/codebase/index.rst This is developer documentation, so I think it should be in docs/devel/. > @@ -0,0 +1,211 @@ > +======== > +Codebase > +======== > + > +This section present the various parts of QEMU and how codebase is organized. "presents"; "how the codebase" > + > +Beyond giving succint descriptions, the goal is to offer links to various "succinct" > +parts of the documentation/codebase. > + > +Subsystems > +---------- > + > +An exhaustive list of subsystems and files associated can be found in "associated files" "the MAINTAINERS file" > +`MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_ > +file. > + > +Some of the main QEMU subsystems are: > + > +- `Accelerators<Accelerators>` > +- Block devices and `disk images<disk images>` support > +- `CI<ci>` and `Tests<testing>` > +- `Devices<device-emulation>` & Board models > +- `Documentation <documentation-root>` > +- `GDB support<GDB usage>` > +- `Migration<migration>` > +- `Monitor<QEMU monitor>` > +- `QOM (QEMU Object Model)<qom>` > +- `System mode<System emulation>` > +- `TCG (Tiny Code Generator)<tcg>` > +- `User mode<user-mode>` (`Linux<linux-user-mode>` & `BSD<bsd-user-mode>`) > +- User Interfaces > + > +More documentation on QEMU subsystems can be found on :ref:`internal-subsystem` > +page. > + > +The Grand tour > +-------------- > + > +We present briefly here what every folder of the codebase contains. Hop on! I think it would be helpful to mention at the top of this list something like: The folder name links here will take you to that folder in our gitlab repository; other links will take you to more detailed documentation for that subsystem, where we have it. Unfortunately not every subsystem has documentation yet, so sometimes the source code is all you have. just so readers know that if e.g. they have a local source tree already there's no point in clicking on the 'crypto' link etc, but that other links are going to go somewhere with more human-written detail. > + > +* `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_: > + Infrastructure and architecture agnostic code related to the various > + `accelerators <Accelerators>` supported by QEMU > + (TCG, KVM, hvf, whpx, xen, nvmm). > + Contains interfaces for operations that will be implemented per > + `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_. > +* `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_: > + Audio (host) support. > +* `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_: > + `QEMU Authorization framework<client authorization>`. > +* `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_: > + Various backends used for device emulation. > +* `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_: > + Block devices and `image formats<disk images>` implementation. > +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: > + `BSD User mode<bsd-user-mode>`. > +* build: Where the code built goes! The built code doesn't have to be in 'build'. We could say: * build: You can tell the QEMU build system to put the built code anywhere you like. By default it will go into a directory named ``build``. Sometimes documentation will assume this default for convenience when describing command lines; you can always replace it with the path to your build tree. ? > +* `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_: > + Various backends used by char devices. > +* `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_: > + User-mode assembly code for dealing with signals occuring during syscalls. > +* `configs <https://gitlab.com/qemu-project/qemu/-/tree/master/configs>`_: > + Makefiles defining configurations to build QEMU. > +* `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib>`_: > + Community contributed devices/plugins/tools. > +* `crypto <https://gitlab.com/qemu-project/qemu/-/tree/master/crypto>`_: > + Cryptographic algorithms used in QEMU. > +* `disas <https://gitlab.com/qemu-project/qemu/-/tree/master/disas>`_: > + Disassembly functions used by QEMU target code. > +* `docs <https://gitlab.com/qemu-project/qemu/-/tree/master/docs>`_: > + QEMU Documentation. > +* `dump <https://gitlab.com/qemu-project/qemu/-/tree/master/dump>`_: > + Code to dump memory of a running VM. > +* `ebpf <https://gitlab.com/qemu-project/qemu/-/tree/master/ebpf>`_: > + eBPF program support in QEMU. `virtio-net RSS<ebpf-rss>` uses it. > +* `fpu <https://gitlab.com/qemu-project/qemu/-/tree/master/fpu>`_: > + Floating-point software emulation. > +* `fsdev <https://gitlab.com/qemu-project/qemu/-/tree/master/fsdev>`_: > + `VirtFS <https://www.linux-kvm.org/page/VirtFS>`_ support. > +* `gdbstub <https://gitlab.com/qemu-project/qemu/-/tree/master/gdbstub>`_: > + `GDB <GDB usage>` support. > +* `gdb-xml <https://gitlab.com/qemu-project/qemu/-/tree/master/gdb-xml>`_: > + Set of XML files describing architectures and used by `gdbstub <GDB usage>`. > +* `host <https://gitlab.com/qemu-project/qemu/-/tree/master/host>`_: > + Various architecture specific header files (crypto, atomic, memory > + operations). > +* `linux-headers <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-headers>`_: > + A subset of headers imported from Linux kernel and used for implementing > + KVM support and user-mode. We could add here Don't change the files in here by hand; instead you can use the ``scripts/update-linux-headers.sh`` script to update them from a kernel source tree. But maybe that's starting to be a bit much info for an entry in this list. > +* `linux-user <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-user>`_: > + `User mode <user-mode>` implementation. Contains one folder per target > + architecture. > +* `.gitlab-ci.d <https://gitlab.com/qemu-project/qemu/-/tree/master/.gitlab-ci.d>`_: > + `CI <ci>` yaml and scripts. > +* `include <https://gitlab.com/qemu-project/qemu/-/tree/master/include>`_: > + All headers associated to different subsystems in QEMU. Hierachy used mirrors "The hierarchy" > + source code organization and naming. > +* `hw <https://gitlab.com/qemu-project/qemu/-/tree/master/hw>`_: > + `Devices <device-emulation>` and boards emulation. Devices are categorized by > + type/protocol/architecture and located in associated subfolder. > +* `io <https://gitlab.com/qemu-project/qemu/-/tree/master/io>`_: > + QEMU `I/O channels <https://lists.gnu.org/archive/html/qemu-devel/2015-11/msg04208.html>`_. > +* `libdecnumber <https://gitlab.com/qemu-project/qemu/-/tree/master/libdecnumber>`_: > + Import of gcc library, used to implement decimal number arithmetic. > +* `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/migration>`__: > + `Migration framework <migration>`. > +* `monitor <https://gitlab.com/qemu-project/qemu/-/tree/master/monitor>`_: > + `Monitor <QEMU monitor>` implementation (HMP & QMP). > +* `nbd <https://gitlab.com/qemu-project/qemu/-/tree/master/nbd>`_: > + QEMU `NBD (Network Block Device) <nbd>` server. > +* `net <https://gitlab.com/qemu-project/qemu/-/tree/master/net>`_: > + Network (host) support. > +* `pc-bios <https://gitlab.com/qemu-project/qemu/-/tree/master/pc-bios>`_: > + Contains pre-built firmware binaries and boot images, ready to use in > + QEMU without compilation. > +* `plugins <https://gitlab.com/qemu-project/qemu/-/tree/master/plugins>`_: > + `TCG plugins <tcg-plugins>` core implementation. Plugins can be found in > + `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg/plugins>`__ > + and `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib/plugins>`__ > + folders. > +* `po <https://gitlab.com/qemu-project/qemu/-/tree/master/po>`_: > + Translation files. > +* `python <https://gitlab.com/qemu-project/qemu/-/tree/master/python>`_: > + Python part of our build/test system. > +* `qapi <https://gitlab.com/qemu-project/qemu/-/tree/master/qapi>`_: > + `QAPI <qapi>` implementation. > +* `qobject <https://gitlab.com/qemu-project/qemu/-/tree/master/qobject>`_: > + QEMU Object implementation. > +* `qga <https://gitlab.com/qemu-project/qemu/-/tree/master/qga>`_: > + QEMU `Guest agent <qemu-ga>` implementation. > +* `qom <https://gitlab.com/qemu-project/qemu/-/tree/master/qom>`_: > + QEMU `Object model <qom>` implementation, with monitor associated commands. > +* `replay <https://gitlab.com/qemu-project/qemu/-/tree/master/replay>`_: > + QEMU `record/replay <replay>` implementation. > +* `roms <https://gitlab.com/qemu-project/qemu/-/tree/master/roms>`_: > + Contains source code for various firmware and ROMs, which can be compiled if > + custom or updated versions are needed. > +* `rust <https://gitlab.com/qemu-project/qemu/-/tree/master/rust>`_: > + Rust integration in QEMU. It contains the new interfaces defined and > + associated devices using it. > +* `scripts <https://gitlab.com/qemu-project/qemu/-/tree/master/scripts>`_: > + Collection of scripts used in build and test systems, and various > + tools for QEMU codebase and execution traces. > +* `scsi <https://gitlab.com/qemu-project/qemu/-/tree/master/scsi>`_: > + Code related to SCSI support, used by SCSI devices. > +* `semihosting <https://gitlab.com/qemu-project/qemu/-/tree/master/semihosting>`_: > + QEMU `Semihosting <Semihosting>` implementation. > +* `stats <https://gitlab.com/qemu-project/qemu/-/tree/master/stats>`_: > + `Monitor <QEMU monitor>` stats commands implementation. > +* `storage-daemon <https://gitlab.com/qemu-project/qemu/-/tree/master/storage-daemon>`_: > + QEMU `Storage daemon <storage-daemon>` implementation. > +* `stubs <https://gitlab.com/qemu-project/qemu/-/tree/master/stubs>`_: > + Various stubs (empty functions) used to compile QEMU with specific > + configurations. > +* `subprojects <https://gitlab.com/qemu-project/qemu/-/tree/master/subprojects>`_: > + QEMU submodules used by QEMU build system. > +* `system <https://gitlab.com/qemu-project/qemu/-/tree/master/system>`_: > + QEMU `system mode <System emulation>` implementation (cpu, mmu, boot support). > +* `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_: > + Contains code for all target architectures supported (one subfolder > + per arch). For every architecture, you can find accelerator specific > + implementations. > +* `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tcg>`_: > + `TCG <tcg>` related code. > + Contains one subfolder per host supported architecture. > +* `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests>`_: > + QEMU `test <testing>` suite > + > + - `avocado <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/avocado>`_: > + Functional tests booting full VM using `Avocado framework <checkavocado-ref>`. > + Those tests will be transformed and moved into > + `tests/functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_ > + in the future. > + - `data <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/data>`_: > + Data for various tests. > + - `decode <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/decode>`_: > + Testsuite for `decodetree <decodetree>` implementation. > + - `docker <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/docker>`_: > + Code and scripts to create `containers <container-ref>` used in `CI <ci>`. > + - `fp <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/fp>`_: > + QEMU testsuite for soft float implementation. > + - `functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_: > + `Functional tests <checkfunctional-ref>` (full VM boot). > + - `lcitool <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/lcitool>`_: > + Generate dockerfiles for CI containers. > + - `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/migration>`_: > + Test scripts and data for `Migration framework <migration>`. > + - `multiboot <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/multiboot>`_: > + Test multiboot functionality for x86_64/i386. > + - `qapi-schema <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qapi-schema>`_: > + Test scripts and data for `QAPI <qapi-tests>`. > + - `qemu-iotests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qemu-iotests>`_: > + `Disk image and block tests <qemu-iotests>`. > + - `qtest <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qtest>`_: > + `Device emulation testing <qtest>`. > + - `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg>`__: > + `TCG related tests <checktcg-ref>`. Contains code per architecture > + (subfolder) and multiarch tests as well. > + - `tsan <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tsan>`_: > + `Suppressions <tsan-suppressions>` for thread sanitizer. > + - `uefi-test-tools <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/uefi-test-tools>`_: > + Test tool for UEFI support. > + - `unit <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/unit>`_: > + QEMU `Unit tests <unit-tests>`. > +* `trace <https://gitlab.com/qemu-project/qemu/-/tree/master/trace>`_: > + `Tracing framework <tracing>`. Used to print information associated to various > + events during execution. > +* `ui <https://gitlab.com/qemu-project/qemu/-/tree/master/ui>`_: > + QEMU User interfaces. > +* `util <https://gitlab.com/qemu-project/qemu/-/tree/master/util>`_: > + Utility code used by other parts of QEMU. thanks -- PMM
Peter Maydell <peter.maydell@linaro.org> writes: > On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier > <pierrick.bouvier@linaro.org> wrote: >> >> Present the various parts of QEMU and organization of codebase. >> >> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> > > I like this; it's something I've thought for a while would > be good to have, but which I never got round to trying to > put together. Thanks for doing this! > > Mostly my comments below are spelling/typo nits and > other minor stuff. > >> --- >> docs/about/emulation.rst | 2 + >> docs/codebase/index.rst | 211 +++++++++++++++++++++++++ >> docs/devel/decodetree.rst | 2 + >> docs/devel/ebpf_rss.rst | 2 + >> docs/devel/index-internals.rst | 2 + >> docs/devel/migration/main.rst | 2 + >> docs/devel/qapi-code-gen.rst | 1 + >> docs/devel/testing/main.rst | 9 +- >> docs/devel/testing/qtest.rst | 2 + >> docs/index.rst | 3 + >> docs/interop/qemu-ga.rst | 2 + >> docs/system/qemu-block-drivers.rst.inc | 2 + >> docs/tools/qemu-storage-daemon.rst | 2 + >> docs/user/main.rst | 6 + >> 14 files changed, 247 insertions(+), 1 deletion(-) >> create mode 100644 docs/codebase/index.rst >> <snip> >> + Block devices and `image formats<disk images>` implementation. >> +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: >> + `BSD User mode<bsd-user-mode>`. >> +* build: Where the code built goes! > > The built code doesn't have to be in 'build'. We could say: > > * build: You can tell the QEMU build system to put the built code > anywhere you like. By default it will go into a directory named > ``build``. Sometimes documentation will assume this default > for convenience when describing command lines; you can always > replace it with the path to your build tree. > > ? I always recommend creating a builds directory and having multiple build trees under it: π17:22:02 alex@draig:qemu.git on ξ testing/next [$!?] β tree -L 1 builds builds βββ all βββ all.clang βββ all.disabled βββ arm64-system.crossbuild βββ arm.afl βββ arm.all βββ arm.debug βββ arm.gcovr βββ arm.user.32bit βββ bisect βββ debug βββ debug.clang βββ deprecated βββ disable-misc βββ disable.plugins βββ disable-tcg βββ disable-user βββ extra.libs βββ gcov βββ gcov2 βββ lto βββ profiling βββ qemu-system-arm βββ rust βββ sanitisers βββ sanitizer.clang βββ system βββ system.i386 βββ system.nodefaults βββ system.threadsan βββ tcg βββ tci βββ tools-and-docs βββ trs.debug βββ tsan βββ user βββ user.static βββ virtio-gpu βββ xen
On Tue, 3 Dec 2024 at 17:22, Alex BennΓ©e <alex.bennee@linaro.org> wrote: > > Peter Maydell <peter.maydell@linaro.org> writes: > > > On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier > > <pierrick.bouvier@linaro.org> wrote: > >> > >> Present the various parts of QEMU and organization of codebase. > >> > >> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> > > > > I like this; it's something I've thought for a while would > > be good to have, but which I never got round to trying to > > put together. Thanks for doing this! > > > > Mostly my comments below are spelling/typo nits and > > other minor stuff. > > > >> --- > >> docs/about/emulation.rst | 2 + > >> docs/codebase/index.rst | 211 +++++++++++++++++++++++++ > >> docs/devel/decodetree.rst | 2 + > >> docs/devel/ebpf_rss.rst | 2 + > >> docs/devel/index-internals.rst | 2 + > >> docs/devel/migration/main.rst | 2 + > >> docs/devel/qapi-code-gen.rst | 1 + > >> docs/devel/testing/main.rst | 9 +- > >> docs/devel/testing/qtest.rst | 2 + > >> docs/index.rst | 3 + > >> docs/interop/qemu-ga.rst | 2 + > >> docs/system/qemu-block-drivers.rst.inc | 2 + > >> docs/tools/qemu-storage-daemon.rst | 2 + > >> docs/user/main.rst | 6 + > >> 14 files changed, 247 insertions(+), 1 deletion(-) > >> create mode 100644 docs/codebase/index.rst > >> > <snip> > >> + Block devices and `image formats<disk images>` implementation. > >> +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: > >> + `BSD User mode<bsd-user-mode>`. > >> +* build: Where the code built goes! > > > > The built code doesn't have to be in 'build'. We could say: > > > > * build: You can tell the QEMU build system to put the built code > > anywhere you like. By default it will go into a directory named > > ``build``. Sometimes documentation will assume this default > > for convenience when describing command lines; you can always > > replace it with the path to your build tree. > > > > ? > > I always recommend creating a builds directory and having multiple build > trees under it: Indeed, that's what I like to do too, but I don't think this document is the right place to make that kind of recommendation. -- PMM
On 12/3/24 09:46, Peter Maydell wrote: > On Tue, 3 Dec 2024 at 17:22, Alex BennΓ©e <alex.bennee@linaro.org> wrote: >> >> Peter Maydell <peter.maydell@linaro.org> writes: >> >>> On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier >>> <pierrick.bouvier@linaro.org> wrote: >>>> >>>> Present the various parts of QEMU and organization of codebase. >>>> >>>> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> >>> >>> I like this; it's something I've thought for a while would >>> be good to have, but which I never got round to trying to >>> put together. Thanks for doing this! >>> >>> Mostly my comments below are spelling/typo nits and >>> other minor stuff. >>> >>>> --- >>>> docs/about/emulation.rst | 2 + >>>> docs/codebase/index.rst | 211 +++++++++++++++++++++++++ >>>> docs/devel/decodetree.rst | 2 + >>>> docs/devel/ebpf_rss.rst | 2 + >>>> docs/devel/index-internals.rst | 2 + >>>> docs/devel/migration/main.rst | 2 + >>>> docs/devel/qapi-code-gen.rst | 1 + >>>> docs/devel/testing/main.rst | 9 +- >>>> docs/devel/testing/qtest.rst | 2 + >>>> docs/index.rst | 3 + >>>> docs/interop/qemu-ga.rst | 2 + >>>> docs/system/qemu-block-drivers.rst.inc | 2 + >>>> docs/tools/qemu-storage-daemon.rst | 2 + >>>> docs/user/main.rst | 6 + >>>> 14 files changed, 247 insertions(+), 1 deletion(-) >>>> create mode 100644 docs/codebase/index.rst >>>> >> <snip> >>>> + Block devices and `image formats<disk images>` implementation. >>>> +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: >>>> + `BSD User mode<bsd-user-mode>`. >>>> +* build: Where the code built goes! >>> >>> The built code doesn't have to be in 'build'. We could say: >>> >>> * build: You can tell the QEMU build system to put the built code >>> anywhere you like. By default it will go into a directory named >>> ``build``. Sometimes documentation will assume this default >>> for convenience when describing command lines; you can always >>> replace it with the path to your build tree. >>> >>> ? >> >> I always recommend creating a builds directory and having multiple build >> trees under it: > > Indeed, that's what I like to do too, but I don't think this > document is the right place to make that kind of recommendation. > I agree with Peter. People who understand this need already know how to do it, and it's not the best place to mention that. As well, using several folders can be error prone (using "old" binaries by mistake happens quickly), and it's something I usually don't advise for beginners. Using a symlink that points to the right folder is less error prone, but it opens the path to another (custom and personal) layer to the build command. Another (more simple) solution is to use a single folder, and simply rely on ccache for quick rebuilds. There are probably as many solutions and opinions as there are developers on this thread, so it's better to simply mention one build folder, and nothing else. > -- PMM
On 12/3/24 07:53, Peter Maydell wrote: > On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier > <pierrick.bouvier@linaro.org> wrote: >> >> Present the various parts of QEMU and organization of codebase. >> >> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> > > I like this; it's something I've thought for a while would > be good to have, but which I never got round to trying to > put together. Thanks for doing this! > > Mostly my comments below are spelling/typo nits and > other minor stuff. > >> --- >> docs/about/emulation.rst | 2 + >> docs/codebase/index.rst | 211 +++++++++++++++++++++++++ >> docs/devel/decodetree.rst | 2 + >> docs/devel/ebpf_rss.rst | 2 + >> docs/devel/index-internals.rst | 2 + >> docs/devel/migration/main.rst | 2 + >> docs/devel/qapi-code-gen.rst | 1 + >> docs/devel/testing/main.rst | 9 +- >> docs/devel/testing/qtest.rst | 2 + >> docs/index.rst | 3 + >> docs/interop/qemu-ga.rst | 2 + >> docs/system/qemu-block-drivers.rst.inc | 2 + >> docs/tools/qemu-storage-daemon.rst | 2 + >> docs/user/main.rst | 6 + >> 14 files changed, 247 insertions(+), 1 deletion(-) >> create mode 100644 docs/codebase/index.rst >> >> diff --git a/docs/about/emulation.rst b/docs/about/emulation.rst >> index 3028d5fff7a..3bc3579434f 100644 >> --- a/docs/about/emulation.rst >> +++ b/docs/about/emulation.rst >> @@ -176,6 +176,8 @@ for that architecture. >> - System >> - Tensilica ISS SIMCALL >> >> +.. _tcg-plugins: >> + >> TCG Plugins >> ----------- >> >> diff --git a/docs/codebase/index.rst b/docs/codebase/index.rst >> new file mode 100644 >> index 00000000000..353830ef175 >> --- /dev/null >> +++ b/docs/codebase/index.rst > > This is developer documentation, so I think it should > be in docs/devel/. > >> @@ -0,0 +1,211 @@ >> +======== >> +Codebase >> +======== >> + >> +This section present the various parts of QEMU and how codebase is organized. > > "presents"; "how the codebase" > >> + >> +Beyond giving succint descriptions, the goal is to offer links to various > > "succinct" > >> +parts of the documentation/codebase. >> + >> +Subsystems >> +---------- >> + >> +An exhaustive list of subsystems and files associated can be found in > > "associated files" > > "the MAINTAINERS file" > >> +`MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_ >> +file. >> + >> +Some of the main QEMU subsystems are: >> + >> +- `Accelerators<Accelerators>` >> +- Block devices and `disk images<disk images>` support >> +- `CI<ci>` and `Tests<testing>` >> +- `Devices<device-emulation>` & Board models >> +- `Documentation <documentation-root>` >> +- `GDB support<GDB usage>` >> +- `Migration<migration>` >> +- `Monitor<QEMU monitor>` >> +- `QOM (QEMU Object Model)<qom>` >> +- `System mode<System emulation>` >> +- `TCG (Tiny Code Generator)<tcg>` >> +- `User mode<user-mode>` (`Linux<linux-user-mode>` & `BSD<bsd-user-mode>`) >> +- User Interfaces >> + >> +More documentation on QEMU subsystems can be found on :ref:`internal-subsystem` >> +page. >> + >> +The Grand tour >> +-------------- >> + >> +We present briefly here what every folder of the codebase contains. Hop on! > > > I think it would be helpful to mention at the top of this list something > like: > > The folder name links here will take you to that folder in our > gitlab repository; other links will take you to more detailed > documentation for that subsystem, where we have it. Unfortunately > not every subsystem has documentation yet, so sometimes the > source code is all you have. > > just so readers know that if e.g. they have a local source tree > already there's no point in clicking on the 'crypto' link etc, > but that other links are going to go somewhere with more > human-written detail. > >> + >> +* `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_: >> + Infrastructure and architecture agnostic code related to the various >> + `accelerators <Accelerators>` supported by QEMU >> + (TCG, KVM, hvf, whpx, xen, nvmm). >> + Contains interfaces for operations that will be implemented per >> + `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_. >> +* `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_: >> + Audio (host) support. >> +* `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_: >> + `QEMU Authorization framework<client authorization>`. >> +* `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_: >> + Various backends used for device emulation. >> +* `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_: >> + Block devices and `image formats<disk images>` implementation. >> +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: >> + `BSD User mode<bsd-user-mode>`. >> +* build: Where the code built goes! > > The built code doesn't have to be in 'build'. We could say: > > * build: You can tell the QEMU build system to put the built code > anywhere you like. By default it will go into a directory named > ``build``. Sometimes documentation will assume this default > for convenience when describing command lines; you can always > replace it with the path to your build tree. > > ? I'm ok with the first two sentences but the third one (Sometimes.*) adds little value, and much more verbosity. > >> +* `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_: >> + Various backends used by char devices. >> +* `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_: >> + User-mode assembly code for dealing with signals occuring during syscalls. >> +* `configs <https://gitlab.com/qemu-project/qemu/-/tree/master/configs>`_: >> + Makefiles defining configurations to build QEMU. >> +* `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib>`_: >> + Community contributed devices/plugins/tools. >> +* `crypto <https://gitlab.com/qemu-project/qemu/-/tree/master/crypto>`_: >> + Cryptographic algorithms used in QEMU. >> +* `disas <https://gitlab.com/qemu-project/qemu/-/tree/master/disas>`_: >> + Disassembly functions used by QEMU target code. >> +* `docs <https://gitlab.com/qemu-project/qemu/-/tree/master/docs>`_: >> + QEMU Documentation. >> +* `dump <https://gitlab.com/qemu-project/qemu/-/tree/master/dump>`_: >> + Code to dump memory of a running VM. >> +* `ebpf <https://gitlab.com/qemu-project/qemu/-/tree/master/ebpf>`_: >> + eBPF program support in QEMU. `virtio-net RSS<ebpf-rss>` uses it. >> +* `fpu <https://gitlab.com/qemu-project/qemu/-/tree/master/fpu>`_: >> + Floating-point software emulation. >> +* `fsdev <https://gitlab.com/qemu-project/qemu/-/tree/master/fsdev>`_: >> + `VirtFS <https://www.linux-kvm.org/page/VirtFS>`_ support. >> +* `gdbstub <https://gitlab.com/qemu-project/qemu/-/tree/master/gdbstub>`_: >> + `GDB <GDB usage>` support. >> +* `gdb-xml <https://gitlab.com/qemu-project/qemu/-/tree/master/gdb-xml>`_: >> + Set of XML files describing architectures and used by `gdbstub <GDB usage>`. >> +* `host <https://gitlab.com/qemu-project/qemu/-/tree/master/host>`_: >> + Various architecture specific header files (crypto, atomic, memory >> + operations). >> +* `linux-headers <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-headers>`_: >> + A subset of headers imported from Linux kernel and used for implementing >> + KVM support and user-mode. > > We could add here > > Don't change the files in here by hand; instead you can use the > ``scripts/update-linux-headers.sh`` script to update them from a > kernel source tree. > > But maybe that's starting to be a bit much info for an entry in this list. > Yes, it's a very specific detail and I doubt someone will try to update this after reading this doc page. They can still try and see what happens on the mailing list :) >> +* `linux-user <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-user>`_: >> + `User mode <user-mode>` implementation. Contains one folder per target >> + architecture. >> +* `.gitlab-ci.d <https://gitlab.com/qemu-project/qemu/-/tree/master/.gitlab-ci.d>`_: >> + `CI <ci>` yaml and scripts. >> +* `include <https://gitlab.com/qemu-project/qemu/-/tree/master/include>`_: >> + All headers associated to different subsystems in QEMU. Hierachy used mirrors > > "The hierarchy" > >> + source code organization and naming. >> +* `hw <https://gitlab.com/qemu-project/qemu/-/tree/master/hw>`_: >> + `Devices <device-emulation>` and boards emulation. Devices are categorized by >> + type/protocol/architecture and located in associated subfolder. >> +* `io <https://gitlab.com/qemu-project/qemu/-/tree/master/io>`_: >> + QEMU `I/O channels <https://lists.gnu.org/archive/html/qemu-devel/2015-11/msg04208.html>`_. >> +* `libdecnumber <https://gitlab.com/qemu-project/qemu/-/tree/master/libdecnumber>`_: >> + Import of gcc library, used to implement decimal number arithmetic. >> +* `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/migration>`__: >> + `Migration framework <migration>`. >> +* `monitor <https://gitlab.com/qemu-project/qemu/-/tree/master/monitor>`_: >> + `Monitor <QEMU monitor>` implementation (HMP & QMP). >> +* `nbd <https://gitlab.com/qemu-project/qemu/-/tree/master/nbd>`_: >> + QEMU `NBD (Network Block Device) <nbd>` server. >> +* `net <https://gitlab.com/qemu-project/qemu/-/tree/master/net>`_: >> + Network (host) support. >> +* `pc-bios <https://gitlab.com/qemu-project/qemu/-/tree/master/pc-bios>`_: >> + Contains pre-built firmware binaries and boot images, ready to use in >> + QEMU without compilation. >> +* `plugins <https://gitlab.com/qemu-project/qemu/-/tree/master/plugins>`_: >> + `TCG plugins <tcg-plugins>` core implementation. Plugins can be found in >> + `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg/plugins>`__ >> + and `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib/plugins>`__ >> + folders. >> +* `po <https://gitlab.com/qemu-project/qemu/-/tree/master/po>`_: >> + Translation files. >> +* `python <https://gitlab.com/qemu-project/qemu/-/tree/master/python>`_: >> + Python part of our build/test system. >> +* `qapi <https://gitlab.com/qemu-project/qemu/-/tree/master/qapi>`_: >> + `QAPI <qapi>` implementation. >> +* `qobject <https://gitlab.com/qemu-project/qemu/-/tree/master/qobject>`_: >> + QEMU Object implementation. >> +* `qga <https://gitlab.com/qemu-project/qemu/-/tree/master/qga>`_: >> + QEMU `Guest agent <qemu-ga>` implementation. >> +* `qom <https://gitlab.com/qemu-project/qemu/-/tree/master/qom>`_: >> + QEMU `Object model <qom>` implementation, with monitor associated commands. >> +* `replay <https://gitlab.com/qemu-project/qemu/-/tree/master/replay>`_: >> + QEMU `record/replay <replay>` implementation. >> +* `roms <https://gitlab.com/qemu-project/qemu/-/tree/master/roms>`_: >> + Contains source code for various firmware and ROMs, which can be compiled if >> + custom or updated versions are needed. >> +* `rust <https://gitlab.com/qemu-project/qemu/-/tree/master/rust>`_: >> + Rust integration in QEMU. It contains the new interfaces defined and >> + associated devices using it. >> +* `scripts <https://gitlab.com/qemu-project/qemu/-/tree/master/scripts>`_: >> + Collection of scripts used in build and test systems, and various >> + tools for QEMU codebase and execution traces. >> +* `scsi <https://gitlab.com/qemu-project/qemu/-/tree/master/scsi>`_: >> + Code related to SCSI support, used by SCSI devices. >> +* `semihosting <https://gitlab.com/qemu-project/qemu/-/tree/master/semihosting>`_: >> + QEMU `Semihosting <Semihosting>` implementation. >> +* `stats <https://gitlab.com/qemu-project/qemu/-/tree/master/stats>`_: >> + `Monitor <QEMU monitor>` stats commands implementation. >> +* `storage-daemon <https://gitlab.com/qemu-project/qemu/-/tree/master/storage-daemon>`_: >> + QEMU `Storage daemon <storage-daemon>` implementation. >> +* `stubs <https://gitlab.com/qemu-project/qemu/-/tree/master/stubs>`_: >> + Various stubs (empty functions) used to compile QEMU with specific >> + configurations. >> +* `subprojects <https://gitlab.com/qemu-project/qemu/-/tree/master/subprojects>`_: >> + QEMU submodules used by QEMU build system. >> +* `system <https://gitlab.com/qemu-project/qemu/-/tree/master/system>`_: >> + QEMU `system mode <System emulation>` implementation (cpu, mmu, boot support). >> +* `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_: >> + Contains code for all target architectures supported (one subfolder >> + per arch). For every architecture, you can find accelerator specific >> + implementations. >> +* `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tcg>`_: >> + `TCG <tcg>` related code. >> + Contains one subfolder per host supported architecture. >> +* `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests>`_: >> + QEMU `test <testing>` suite >> + >> + - `avocado <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/avocado>`_: >> + Functional tests booting full VM using `Avocado framework <checkavocado-ref>`. >> + Those tests will be transformed and moved into >> + `tests/functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_ >> + in the future. >> + - `data <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/data>`_: >> + Data for various tests. >> + - `decode <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/decode>`_: >> + Testsuite for `decodetree <decodetree>` implementation. >> + - `docker <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/docker>`_: >> + Code and scripts to create `containers <container-ref>` used in `CI <ci>`. >> + - `fp <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/fp>`_: >> + QEMU testsuite for soft float implementation. >> + - `functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_: >> + `Functional tests <checkfunctional-ref>` (full VM boot). >> + - `lcitool <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/lcitool>`_: >> + Generate dockerfiles for CI containers. >> + - `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/migration>`_: >> + Test scripts and data for `Migration framework <migration>`. >> + - `multiboot <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/multiboot>`_: >> + Test multiboot functionality for x86_64/i386. >> + - `qapi-schema <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qapi-schema>`_: >> + Test scripts and data for `QAPI <qapi-tests>`. >> + - `qemu-iotests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qemu-iotests>`_: >> + `Disk image and block tests <qemu-iotests>`. >> + - `qtest <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qtest>`_: >> + `Device emulation testing <qtest>`. >> + - `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg>`__: >> + `TCG related tests <checktcg-ref>`. Contains code per architecture >> + (subfolder) and multiarch tests as well. >> + - `tsan <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tsan>`_: >> + `Suppressions <tsan-suppressions>` for thread sanitizer. >> + - `uefi-test-tools <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/uefi-test-tools>`_: >> + Test tool for UEFI support. >> + - `unit <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/unit>`_: >> + QEMU `Unit tests <unit-tests>`. >> +* `trace <https://gitlab.com/qemu-project/qemu/-/tree/master/trace>`_: >> + `Tracing framework <tracing>`. Used to print information associated to various >> + events during execution. >> +* `ui <https://gitlab.com/qemu-project/qemu/-/tree/master/ui>`_: >> + QEMU User interfaces. >> +* `util <https://gitlab.com/qemu-project/qemu/-/tree/master/util>`_: >> + Utility code used by other parts of QEMU. > > thanks > -- PMM Thanks for all the suggestions, I'll integrate those. Pierrick
On Tue, Dec 03, 2024 at 05:22:50PM +0000, Alex BennΓ©e wrote: > Peter Maydell <peter.maydell@linaro.org> writes: > > > On Mon, 18 Nov 2024 at 17:24, Pierrick Bouvier > > <pierrick.bouvier@linaro.org> wrote: > >> > >> Present the various parts of QEMU and organization of codebase. > >> > >> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> > > > > I like this; it's something I've thought for a while would > > be good to have, but which I never got round to trying to > > put together. Thanks for doing this! > > > > Mostly my comments below are spelling/typo nits and > > other minor stuff. > > > >> --- > >> docs/about/emulation.rst | 2 + > >> docs/codebase/index.rst | 211 +++++++++++++++++++++++++ > >> docs/devel/decodetree.rst | 2 + > >> docs/devel/ebpf_rss.rst | 2 + > >> docs/devel/index-internals.rst | 2 + > >> docs/devel/migration/main.rst | 2 + > >> docs/devel/qapi-code-gen.rst | 1 + > >> docs/devel/testing/main.rst | 9 +- > >> docs/devel/testing/qtest.rst | 2 + > >> docs/index.rst | 3 + > >> docs/interop/qemu-ga.rst | 2 + > >> docs/system/qemu-block-drivers.rst.inc | 2 + > >> docs/tools/qemu-storage-daemon.rst | 2 + > >> docs/user/main.rst | 6 + > >> 14 files changed, 247 insertions(+), 1 deletion(-) > >> create mode 100644 docs/codebase/index.rst > >> > <snip> > >> + Block devices and `image formats<disk images>` implementation. > >> +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: > >> + `BSD User mode<bsd-user-mode>`. > >> +* build: Where the code built goes! > > > > The built code doesn't have to be in 'build'. We could say: > > > > * build: You can tell the QEMU build system to put the built code > > anywhere you like. By default it will go into a directory named > > ``build``. Sometimes documentation will assume this default > > for convenience when describing command lines; you can always > > replace it with the path to your build tree. > > > > ? > > I always recommend creating a builds directory and having multiple build > trees under it: I can understand why you do that, but I'm doubtful the need to have many parallel build directories is the common case. IOW, I expect that for the majority of contributors the default single 'build' directory is sufficient. With regards, Daniel
diff --git a/docs/about/emulation.rst b/docs/about/emulation.rst index 3028d5fff7a..3bc3579434f 100644 --- a/docs/about/emulation.rst +++ b/docs/about/emulation.rst @@ -176,6 +176,8 @@ for that architecture. - System - Tensilica ISS SIMCALL +.. _tcg-plugins: + TCG Plugins ----------- diff --git a/docs/codebase/index.rst b/docs/codebase/index.rst new file mode 100644 index 00000000000..353830ef175 --- /dev/null +++ b/docs/codebase/index.rst @@ -0,0 +1,211 @@ +======== +Codebase +======== + +This section present the various parts of QEMU and how codebase is organized. + +Beyond giving succint descriptions, the goal is to offer links to various +parts of the documentation/codebase. + +Subsystems +---------- + +An exhaustive list of subsystems and files associated can be found in +`MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_ +file. + +Some of the main QEMU subsystems are: + +- `Accelerators<Accelerators>` +- Block devices and `disk images<disk images>` support +- `CI<ci>` and `Tests<testing>` +- `Devices<device-emulation>` & Board models +- `Documentation <documentation-root>` +- `GDB support<GDB usage>` +- `Migration<migration>` +- `Monitor<QEMU monitor>` +- `QOM (QEMU Object Model)<qom>` +- `System mode<System emulation>` +- `TCG (Tiny Code Generator)<tcg>` +- `User mode<user-mode>` (`Linux<linux-user-mode>` & `BSD<bsd-user-mode>`) +- User Interfaces + +More documentation on QEMU subsystems can be found on :ref:`internal-subsystem` +page. + +The Grand tour +-------------- + +We present briefly here what every folder of the codebase contains. Hop on! + +* `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_: + Infrastructure and architecture agnostic code related to the various + `accelerators <Accelerators>` supported by QEMU + (TCG, KVM, hvf, whpx, xen, nvmm). + Contains interfaces for operations that will be implemented per + `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_. +* `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_: + Audio (host) support. +* `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_: + `QEMU Authorization framework<client authorization>`. +* `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_: + Various backends used for device emulation. +* `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_: + Block devices and `image formats<disk images>` implementation. +* `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: + `BSD User mode<bsd-user-mode>`. +* build: Where the code built goes! +* `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_: + Various backends used by char devices. +* `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_: + User-mode assembly code for dealing with signals occuring during syscalls. +* `configs <https://gitlab.com/qemu-project/qemu/-/tree/master/configs>`_: + Makefiles defining configurations to build QEMU. +* `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib>`_: + Community contributed devices/plugins/tools. +* `crypto <https://gitlab.com/qemu-project/qemu/-/tree/master/crypto>`_: + Cryptographic algorithms used in QEMU. +* `disas <https://gitlab.com/qemu-project/qemu/-/tree/master/disas>`_: + Disassembly functions used by QEMU target code. +* `docs <https://gitlab.com/qemu-project/qemu/-/tree/master/docs>`_: + QEMU Documentation. +* `dump <https://gitlab.com/qemu-project/qemu/-/tree/master/dump>`_: + Code to dump memory of a running VM. +* `ebpf <https://gitlab.com/qemu-project/qemu/-/tree/master/ebpf>`_: + eBPF program support in QEMU. `virtio-net RSS<ebpf-rss>` uses it. +* `fpu <https://gitlab.com/qemu-project/qemu/-/tree/master/fpu>`_: + Floating-point software emulation. +* `fsdev <https://gitlab.com/qemu-project/qemu/-/tree/master/fsdev>`_: + `VirtFS <https://www.linux-kvm.org/page/VirtFS>`_ support. +* `gdbstub <https://gitlab.com/qemu-project/qemu/-/tree/master/gdbstub>`_: + `GDB <GDB usage>` support. +* `gdb-xml <https://gitlab.com/qemu-project/qemu/-/tree/master/gdb-xml>`_: + Set of XML files describing architectures and used by `gdbstub <GDB usage>`. +* `host <https://gitlab.com/qemu-project/qemu/-/tree/master/host>`_: + Various architecture specific header files (crypto, atomic, memory + operations). +* `linux-headers <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-headers>`_: + A subset of headers imported from Linux kernel and used for implementing + KVM support and user-mode. +* `linux-user <https://gitlab.com/qemu-project/qemu/-/tree/master/linux-user>`_: + `User mode <user-mode>` implementation. Contains one folder per target + architecture. +* `.gitlab-ci.d <https://gitlab.com/qemu-project/qemu/-/tree/master/.gitlab-ci.d>`_: + `CI <ci>` yaml and scripts. +* `include <https://gitlab.com/qemu-project/qemu/-/tree/master/include>`_: + All headers associated to different subsystems in QEMU. Hierachy used mirrors + source code organization and naming. +* `hw <https://gitlab.com/qemu-project/qemu/-/tree/master/hw>`_: + `Devices <device-emulation>` and boards emulation. Devices are categorized by + type/protocol/architecture and located in associated subfolder. +* `io <https://gitlab.com/qemu-project/qemu/-/tree/master/io>`_: + QEMU `I/O channels <https://lists.gnu.org/archive/html/qemu-devel/2015-11/msg04208.html>`_. +* `libdecnumber <https://gitlab.com/qemu-project/qemu/-/tree/master/libdecnumber>`_: + Import of gcc library, used to implement decimal number arithmetic. +* `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/migration>`__: + `Migration framework <migration>`. +* `monitor <https://gitlab.com/qemu-project/qemu/-/tree/master/monitor>`_: + `Monitor <QEMU monitor>` implementation (HMP & QMP). +* `nbd <https://gitlab.com/qemu-project/qemu/-/tree/master/nbd>`_: + QEMU `NBD (Network Block Device) <nbd>` server. +* `net <https://gitlab.com/qemu-project/qemu/-/tree/master/net>`_: + Network (host) support. +* `pc-bios <https://gitlab.com/qemu-project/qemu/-/tree/master/pc-bios>`_: + Contains pre-built firmware binaries and boot images, ready to use in + QEMU without compilation. +* `plugins <https://gitlab.com/qemu-project/qemu/-/tree/master/plugins>`_: + `TCG plugins <tcg-plugins>` core implementation. Plugins can be found in + `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg/plugins>`__ + and `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib/plugins>`__ + folders. +* `po <https://gitlab.com/qemu-project/qemu/-/tree/master/po>`_: + Translation files. +* `python <https://gitlab.com/qemu-project/qemu/-/tree/master/python>`_: + Python part of our build/test system. +* `qapi <https://gitlab.com/qemu-project/qemu/-/tree/master/qapi>`_: + `QAPI <qapi>` implementation. +* `qobject <https://gitlab.com/qemu-project/qemu/-/tree/master/qobject>`_: + QEMU Object implementation. +* `qga <https://gitlab.com/qemu-project/qemu/-/tree/master/qga>`_: + QEMU `Guest agent <qemu-ga>` implementation. +* `qom <https://gitlab.com/qemu-project/qemu/-/tree/master/qom>`_: + QEMU `Object model <qom>` implementation, with monitor associated commands. +* `replay <https://gitlab.com/qemu-project/qemu/-/tree/master/replay>`_: + QEMU `record/replay <replay>` implementation. +* `roms <https://gitlab.com/qemu-project/qemu/-/tree/master/roms>`_: + Contains source code for various firmware and ROMs, which can be compiled if + custom or updated versions are needed. +* `rust <https://gitlab.com/qemu-project/qemu/-/tree/master/rust>`_: + Rust integration in QEMU. It contains the new interfaces defined and + associated devices using it. +* `scripts <https://gitlab.com/qemu-project/qemu/-/tree/master/scripts>`_: + Collection of scripts used in build and test systems, and various + tools for QEMU codebase and execution traces. +* `scsi <https://gitlab.com/qemu-project/qemu/-/tree/master/scsi>`_: + Code related to SCSI support, used by SCSI devices. +* `semihosting <https://gitlab.com/qemu-project/qemu/-/tree/master/semihosting>`_: + QEMU `Semihosting <Semihosting>` implementation. +* `stats <https://gitlab.com/qemu-project/qemu/-/tree/master/stats>`_: + `Monitor <QEMU monitor>` stats commands implementation. +* `storage-daemon <https://gitlab.com/qemu-project/qemu/-/tree/master/storage-daemon>`_: + QEMU `Storage daemon <storage-daemon>` implementation. +* `stubs <https://gitlab.com/qemu-project/qemu/-/tree/master/stubs>`_: + Various stubs (empty functions) used to compile QEMU with specific + configurations. +* `subprojects <https://gitlab.com/qemu-project/qemu/-/tree/master/subprojects>`_: + QEMU submodules used by QEMU build system. +* `system <https://gitlab.com/qemu-project/qemu/-/tree/master/system>`_: + QEMU `system mode <System emulation>` implementation (cpu, mmu, boot support). +* `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_: + Contains code for all target architectures supported (one subfolder + per arch). For every architecture, you can find accelerator specific + implementations. +* `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tcg>`_: + `TCG <tcg>` related code. + Contains one subfolder per host supported architecture. +* `tests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests>`_: + QEMU `test <testing>` suite + + - `avocado <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/avocado>`_: + Functional tests booting full VM using `Avocado framework <checkavocado-ref>`. + Those tests will be transformed and moved into + `tests/functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_ + in the future. + - `data <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/data>`_: + Data for various tests. + - `decode <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/decode>`_: + Testsuite for `decodetree <decodetree>` implementation. + - `docker <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/docker>`_: + Code and scripts to create `containers <container-ref>` used in `CI <ci>`. + - `fp <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/fp>`_: + QEMU testsuite for soft float implementation. + - `functional <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/functional>`_: + `Functional tests <checkfunctional-ref>` (full VM boot). + - `lcitool <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/lcitool>`_: + Generate dockerfiles for CI containers. + - `migration <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/migration>`_: + Test scripts and data for `Migration framework <migration>`. + - `multiboot <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/multiboot>`_: + Test multiboot functionality for x86_64/i386. + - `qapi-schema <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qapi-schema>`_: + Test scripts and data for `QAPI <qapi-tests>`. + - `qemu-iotests <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qemu-iotests>`_: + `Disk image and block tests <qemu-iotests>`. + - `qtest <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/qtest>`_: + `Device emulation testing <qtest>`. + - `tcg <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tcg>`__: + `TCG related tests <checktcg-ref>`. Contains code per architecture + (subfolder) and multiarch tests as well. + - `tsan <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/tsan>`_: + `Suppressions <tsan-suppressions>` for thread sanitizer. + - `uefi-test-tools <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/uefi-test-tools>`_: + Test tool for UEFI support. + - `unit <https://gitlab.com/qemu-project/qemu/-/tree/master/tests/unit>`_: + QEMU `Unit tests <unit-tests>`. +* `trace <https://gitlab.com/qemu-project/qemu/-/tree/master/trace>`_: + `Tracing framework <tracing>`. Used to print information associated to various + events during execution. +* `ui <https://gitlab.com/qemu-project/qemu/-/tree/master/ui>`_: + QEMU User interfaces. +* `util <https://gitlab.com/qemu-project/qemu/-/tree/master/util>`_: + Utility code used by other parts of QEMU. diff --git a/docs/devel/decodetree.rst b/docs/devel/decodetree.rst index e3392aa7057..98ad33a4870 100644 --- a/docs/devel/decodetree.rst +++ b/docs/devel/decodetree.rst @@ -1,3 +1,5 @@ +.. _decodetree: + ======================== Decodetree Specification ======================== diff --git a/docs/devel/ebpf_rss.rst b/docs/devel/ebpf_rss.rst index 4a68682b31a..ed5d33767bd 100644 --- a/docs/devel/ebpf_rss.rst +++ b/docs/devel/ebpf_rss.rst @@ -1,3 +1,5 @@ +.. _ebpf-rss: + =========================== eBPF RSS virtio-net support =========================== diff --git a/docs/devel/index-internals.rst b/docs/devel/index-internals.rst index ab9fbc44826..bca597c6589 100644 --- a/docs/devel/index-internals.rst +++ b/docs/devel/index-internals.rst @@ -1,3 +1,5 @@ +.. _internal-subsystem: + Internal Subsystem Information ------------------------------ diff --git a/docs/devel/migration/main.rst b/docs/devel/migration/main.rst index c2857fc2446..cdd4f4a6d7e 100644 --- a/docs/devel/migration/main.rst +++ b/docs/devel/migration/main.rst @@ -1,3 +1,5 @@ +.. _migration: + =================== Migration framework =================== diff --git a/docs/devel/qapi-code-gen.rst b/docs/devel/qapi-code-gen.rst index 583207a8ec2..3e26d2d1047 100644 --- a/docs/devel/qapi-code-gen.rst +++ b/docs/devel/qapi-code-gen.rst @@ -9,6 +9,7 @@ How to use the QAPI code generator This work is licensed under the terms of the GNU GPL, version 2 or later. See the COPYING file in the top-level directory. +.. _qapi: Introduction ============ diff --git a/docs/devel/testing/main.rst b/docs/devel/testing/main.rst index 91f4dc61fb5..9869bcf0341 100644 --- a/docs/devel/testing/main.rst +++ b/docs/devel/testing/main.rst @@ -39,6 +39,8 @@ Before running tests, it is best to build QEMU programs first. Some tests expect the executables to exist and will fail with obscure messages if they cannot find them. +.. _unit-tests: + Unit tests ~~~~~~~~~~ @@ -126,6 +128,8 @@ successfully on various hosts. The following list shows some best practices: #ifdef in the codes. If the whole test suite cannot run on Windows, disable the build in the meson.build file. +.. _qapi-tests: + QAPI schema tests ~~~~~~~~~~~~~~~~~ @@ -160,6 +164,8 @@ check-block are in the "auto" group). See the "QEMU iotests" section below for more information. +.. _qemu-iotests: + QEMU iotests ------------ @@ -679,6 +685,8 @@ The above exitcode=0 has TSan continue without error if any warnings are found. This allows for running the test and then checking the warnings afterwards. If you want TSan to stop and exit with error on warnings, use exitcode=66. +.. _tsan-suppressions: + TSan Suppressions ~~~~~~~~~~~~~~~~~ Keep in mind that for any data race warning, although there might be a data race @@ -901,7 +909,6 @@ You can run the avocado tests simply by executing: See :ref:`checkavocado-ref` for more details. - .. _checktcg-ref: Testing with "make check-tcg" diff --git a/docs/devel/testing/qtest.rst b/docs/devel/testing/qtest.rst index c5b8546b3eb..73ef7702b7b 100644 --- a/docs/devel/testing/qtest.rst +++ b/docs/devel/testing/qtest.rst @@ -1,3 +1,5 @@ +.. _qtest: + ======================================== QTest Device Emulation Testing Framework ======================================== diff --git a/docs/index.rst b/docs/index.rst index 0b9ee9901d9..cb5e5098b65 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -3,6 +3,8 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. +.. _documentation-root: + ================================ Welcome to QEMU's documentation! ================================ @@ -18,3 +20,4 @@ Welcome to QEMU's documentation! interop/index specs/index devel/index + codebase/index diff --git a/docs/interop/qemu-ga.rst b/docs/interop/qemu-ga.rst index 11f7bae4600..d16cc1b9f07 100644 --- a/docs/interop/qemu-ga.rst +++ b/docs/interop/qemu-ga.rst @@ -1,3 +1,5 @@ +.. _qemu-ga: + QEMU Guest Agent ================ diff --git a/docs/system/qemu-block-drivers.rst.inc b/docs/system/qemu-block-drivers.rst.inc index 384e95ba765..cfe1acb78ae 100644 --- a/docs/system/qemu-block-drivers.rst.inc +++ b/docs/system/qemu-block-drivers.rst.inc @@ -500,6 +500,8 @@ What you should *never* do: - expect it to work when loadvm'ing - write to the FAT directory on the host system while accessing it with the guest system +.. _nbd: + NBD access ~~~~~~~~~~ diff --git a/docs/tools/qemu-storage-daemon.rst b/docs/tools/qemu-storage-daemon.rst index ea00149a63a..35ab2d78074 100644 --- a/docs/tools/qemu-storage-daemon.rst +++ b/docs/tools/qemu-storage-daemon.rst @@ -1,3 +1,5 @@ +.. _storage-daemon: + =================== QEMU Storage Daemon =================== diff --git a/docs/user/main.rst b/docs/user/main.rst index 7a126ee8093..80a77f0a0c9 100644 --- a/docs/user/main.rst +++ b/docs/user/main.rst @@ -1,3 +1,5 @@ +.. _user-mode: + QEMU User space emulator ======================== @@ -42,6 +44,8 @@ QEMU was conceived so that ultimately it can emulate itself. Although it is not very useful, it is an important test to show the power of the emulator. +.. _linux-user-mode: + Linux User space emulator ------------------------- @@ -175,6 +179,8 @@ Other binaries * ``qemu-sparc64`` can execute some Sparc64 (Sparc64 CPU, 64 bit ABI) and SPARC32PLUS binaries (Sparc64 CPU, 32 bit ABI). +.. _bsd-user-mode: + BSD User space emulator -----------------------
Present the various parts of QEMU and organization of codebase. Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> --- docs/about/emulation.rst | 2 + docs/codebase/index.rst | 211 +++++++++++++++++++++++++ docs/devel/decodetree.rst | 2 + docs/devel/ebpf_rss.rst | 2 + docs/devel/index-internals.rst | 2 + docs/devel/migration/main.rst | 2 + docs/devel/qapi-code-gen.rst | 1 + docs/devel/testing/main.rst | 9 +- docs/devel/testing/qtest.rst | 2 + docs/index.rst | 3 + docs/interop/qemu-ga.rst | 2 + docs/system/qemu-block-drivers.rst.inc | 2 + docs/tools/qemu-storage-daemon.rst | 2 + docs/user/main.rst | 6 + 14 files changed, 247 insertions(+), 1 deletion(-) create mode 100644 docs/codebase/index.rst