[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 09/29] tcg/module: add tcg-module.[ch] infrastructure
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [PATCH 09/29] tcg/module: add tcg-module.[ch] infrastructure |
Date: |
Tue, 28 Sep 2021 13:47:01 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.1.0 |
On 8/31/21 14:15, Gerd Hoffmann wrote:
> Add TCGModuleOps struct, empty for now, followup patches will fill it.
> This struct has pointers for tcg functions which are called by core
> qemu.
>
> The struct is initialized (at compile time) with pointers to stub
> functions. When the tcg module loads it will update the function
> pointers to point to the real functions instead.
>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
> include/tcg/tcg-module.h | 8 ++++++++
> accel/tcg/tcg-module.c | 5 +++++
> accel/tcg/meson.build | 4 ++++
> 3 files changed, 17 insertions(+)
> create mode 100644 include/tcg/tcg-module.h
> create mode 100644 accel/tcg/tcg-module.c
>
> diff --git a/include/tcg/tcg-module.h b/include/tcg/tcg-module.h
> new file mode 100644
> index 000000000000..7e87aecb2357
> --- /dev/null
> +++ b/include/tcg/tcg-module.h
> @@ -0,0 +1,8 @@
> +#ifndef TCG_MODULE_H
> +#define TCG_MODULE_H
> +
> +struct TCGModuleOps {
> +};
> +extern struct TCGModuleOps tcg;
TCG functions taking a CPUState argument should reside in
CPUClass's AccelCPUClass/TCGCPUOps, not a global struct.
- Re: [PATCH 09/29] tcg/module: add tcg-module.[ch] infrastructure,
Philippe Mathieu-Daudé <=