Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-03-04 Thread Peter Maydell
On Thu, 1 Feb 2024 at 18:52, Thomas Huth wrote: > > On 01/02/2024 15.17, Peter Maydell wrote: > > On Mon, 29 Jan 2024 at 08:18, Thomas Huth wrote: > >> diff --git a/target/arm/meson.build b/target/arm/meson.build > >> index 46b5a21eb3..2e10464dbb 100644 > >> --- a/target/arm/meson.build > >> +++

Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-02-22 Thread Thomas Huth
On 01/02/2024 19.52, Thomas Huth wrote: On 01/02/2024 15.17, Peter Maydell wrote: On Mon, 29 Jan 2024 at 08:18, Thomas Huth wrote: Move the code to a separate file so that we do not have to compile it anymore if CONFIG_ARM_V7M is not set. Signed-off-by: Thomas Huth ---   target/arm/tcg/cpu-

Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-02-01 Thread Thomas Huth
On 01/02/2024 15.17, Peter Maydell wrote: On Mon, 29 Jan 2024 at 08:18, Thomas Huth wrote: Move the code to a separate file so that we do not have to compile it anymore if CONFIG_ARM_V7M is not set. Signed-off-by: Thomas Huth --- target/arm/tcg/cpu-v7m.c | 290 +++

Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-02-01 Thread Peter Maydell
On Mon, 29 Jan 2024 at 08:18, Thomas Huth wrote: > > Move the code to a separate file so that we do not have to compile > it anymore if CONFIG_ARM_V7M is not set. > > Signed-off-by: Thomas Huth > --- > target/arm/tcg/cpu-v7m.c | 290 + > target/arm/tcg/cpu32

Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-01-29 Thread Peter Maydell
On Mon, 29 Jan 2024 at 08:54, Paolo Bonzini wrote: > > On 1/29/24 09:18, Thomas Huth wrote: > > +static const ARMCPUInfo arm_v7m_cpus[] = { > > +{ .name = "cortex-m0", .initfn = cortex_m0_initfn, > > + .class_init = arm_v7m_class_init }, > > +{ .name = "cortex

Re: [PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-01-29 Thread Paolo Bonzini
On 1/29/24 09:18, Thomas Huth wrote: Move the code to a separate file so that we do not have to compile it anymore if CONFIG_ARM_V7M is not set. Signed-off-by: Thomas Huth --- target/arm/tcg/cpu-v7m.c | 290 + target/arm/tcg/cpu32.c | 261 ---

[PATCH v2 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file

2024-01-29 Thread Thomas Huth
Move the code to a separate file so that we do not have to compile it anymore if CONFIG_ARM_V7M is not set. Signed-off-by: Thomas Huth --- target/arm/tcg/cpu-v7m.c | 290 + target/arm/tcg/cpu32.c | 261 - target/arm/meson.