qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] target/arm: Allow compilation without CONFIG_ARM_V7M
@ 2024-01-26  8:39 Thomas Huth
  2024-01-26  8:39 ` [PATCH 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file Thomas Huth
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Thomas Huth @ 2024-01-26  8:39 UTC (permalink / raw)
  To: qemu-arm, qemu-devel
  Cc: Peter Maydell, Fabiano Rosas, Philippe Mathieu-Daudé

We've got a switch to disable v7m code since a long time - but it
currently cannot be disabled since linking then fails due to missing
functions. But thanks to the clean-ups that have been done during the
past years, it's not that difficult anymore to finally make it possible
to disable CONFIG_ARM_V7M: We just have to move some v7m-related code
out of cpu32.c to a separate file (that we only compile if the switch
CONFIG_ARM_V7M is enabled) and make sure to use the stub functions in
m_helper.c if it is disabled. Then we can finally remove the hard-coded
"select ARM_V7M" from the Kconfig file.

Thomas Huth (3):
  target/arm: Move v7m-related code from cpu32.c into a separate file
  target/arm/tcg/m_helper.c: Include the full helpers only with
    CONFIG_ARM_V7M
  target/arm/Kconfig: Stop requiring CONFIG_ARM_V7M

 target/arm/tcg/cpu-v7m.c   | 292 +++++++++++++++++++++++++++++++++++++
 target/arm/tcg/cpu32.c     | 261 ---------------------------------
 target/arm/tcg/m_helper.c  |   3 +-
 target/arm/Kconfig         |   4 -
 target/arm/tcg/meson.build |   4 +
 5 files changed, 298 insertions(+), 266 deletions(-)
 create mode 100644 target/arm/tcg/cpu-v7m.c

-- 
2.43.0



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-01-26 17:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-26  8:39 [PATCH 0/3] target/arm: Allow compilation without CONFIG_ARM_V7M Thomas Huth
2024-01-26  8:39 ` [PATCH 1/3] target/arm: Move v7m-related code from cpu32.c into a separate file Thomas Huth
2024-01-26 10:44   ` Philippe Mathieu-Daudé
2024-01-26 17:02     ` Thomas Huth
2024-01-26  8:40 ` [PATCH 2/3] target/arm/tcg/m_helper.c: Include the full helpers only with CONFIG_ARM_V7M Thomas Huth
2024-01-26  8:40 ` [PATCH 3/3] target/arm/Kconfig: Stop requiring CONFIG_ARM_V7M Thomas Huth
2024-01-26 13:44 ` [PATCH 0/3] target/arm: Allow compilation without CONFIG_ARM_V7M Fabiano Rosas

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).