qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/16] tcg: Remove TARGET_ALIGNED_ONLY
@ 2023-05-02 16:08 Richard Henderson
  2023-05-02 16:08 ` [PATCH 01/16] target/alpha: Use MO_ALIGN for system UNALIGN() Richard Henderson
                   ` (16 more replies)
  0 siblings, 17 replies; 27+ messages in thread
From: Richard Henderson @ 2023-05-02 16:08 UTC (permalink / raw)
  To: qemu-devel; +Cc: philmd, jiaxun.yang, crwulff, marex, ysato, mark.cave-ayland

Based-on: 20230502135741.1158035-1-richard.henderson@linaro.org
("[PATCH 0/9] tcg: Remove compatability helpers for qemu ld/st")

Add MO_ALIGN where required, so that we may remove TARGET_ALIGNED_ONLY.
This is required for building tcg once, because we cannot have multiple
definitions of MO_ALIGN and MO_UNALN.


r~


Richard Henderson (16):
  target/alpha: Use MO_ALIGN for system UNALIGN()
  target/alpha: Use MO_ALIGN where required
  target/alpha: Remove TARGET_ALIGNED_ONLY
  target/hppa: Use MO_ALIGN for system UNALIGN()
  target/hppa: Remove TARGET_ALIGNED_ONLY
  target/mips: Add MO_ALIGN to gen_llwp, gen_scwp
  target/mips: Add missing default_tcg_memop_mask
  target/mips: Use MO_ALIGN instead of 0
  target/mips: Remove TARGET_ALIGNED_ONLY
  target/nios2: Remove TARGET_ALIGNED_ONLY
  target/sh4: Use MO_ALIGN where required
  target/sh4: Remove TARGET_ALIGNED_ONLY
  target/sparc: Use MO_ALIGN where required
  target/sparc: Use cpu_ld*_code_mmu
  target/sparc: Remove TARGET_ALIGNED_ONLY
  tcg: Remove TARGET_ALIGNED_ONLY

 configs/targets/alpha-linux-user.mak       |   1 -
 configs/targets/alpha-softmmu.mak          |   1 -
 configs/targets/hppa-linux-user.mak        |   1 -
 configs/targets/hppa-softmmu.mak           |   1 -
 configs/targets/mips-linux-user.mak        |   1 -
 configs/targets/mips-softmmu.mak           |   1 -
 configs/targets/mips64-linux-user.mak      |   1 -
 configs/targets/mips64-softmmu.mak         |   1 -
 configs/targets/mips64el-linux-user.mak    |   1 -
 configs/targets/mips64el-softmmu.mak       |   1 -
 configs/targets/mipsel-linux-user.mak      |   1 -
 configs/targets/mipsel-softmmu.mak         |   1 -
 configs/targets/mipsn32-linux-user.mak     |   1 -
 configs/targets/mipsn32el-linux-user.mak   |   1 -
 configs/targets/nios2-softmmu.mak          |   1 -
 configs/targets/sh4-linux-user.mak         |   1 -
 configs/targets/sh4-softmmu.mak            |   1 -
 configs/targets/sh4eb-linux-user.mak       |   1 -
 configs/targets/sh4eb-softmmu.mak          |   1 -
 configs/targets/sparc-linux-user.mak       |   1 -
 configs/targets/sparc-softmmu.mak          |   1 -
 configs/targets/sparc32plus-linux-user.mak |   1 -
 configs/targets/sparc64-linux-user.mak     |   1 -
 configs/targets/sparc64-softmmu.mak        |   1 -
 include/exec/memop.h                       |  13 +--
 include/exec/poison.h                      |   1 -
 target/alpha/translate.c                   |  38 ++++----
 target/hppa/translate.c                    |   2 +-
 target/mips/tcg/mxu_translate.c            |   3 +-
 target/nios2/translate.c                   |  10 ++
 target/sh4/translate.c                     | 102 +++++++++++++--------
 target/sparc/ldst_helper.c                 |  10 +-
 target/sparc/translate.c                   |  66 ++++++-------
 tcg/tcg.c                                  |   5 -
 target/mips/tcg/micromips_translate.c.inc  |  24 +++--
 target/mips/tcg/mips16e_translate.c.inc    |  18 ++--
 target/mips/tcg/nanomips_translate.c.inc   |  32 +++----
 37 files changed, 186 insertions(+), 162 deletions(-)

-- 
2.34.1



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

end of thread, other threads:[~2023-05-10 15:12 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-02 16:08 [PATCH 00/16] tcg: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-02 16:08 ` [PATCH 01/16] target/alpha: Use MO_ALIGN for system UNALIGN() Richard Henderson
2023-05-02 16:08 ` [PATCH 02/16] target/alpha: Use MO_ALIGN where required Richard Henderson
2023-05-02 16:08 ` [PATCH 03/16] target/alpha: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-02 16:08 ` [PATCH 04/16] target/hppa: Use MO_ALIGN for system UNALIGN() Richard Henderson
2023-05-02 16:08 ` [PATCH 05/16] target/hppa: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-02 16:08 ` [PATCH 06/16] target/mips: Add MO_ALIGN to gen_llwp, gen_scwp Richard Henderson
2023-05-02 16:08 ` [PATCH 07/16] target/mips: Add missing default_tcg_memop_mask Richard Henderson
2023-05-02 16:08 ` [PATCH 08/16] target/mips: Use MO_ALIGN instead of 0 Richard Henderson
2023-05-10 13:37   ` Philippe Mathieu-Daudé
2023-05-02 16:08 ` [PATCH 09/16] target/mips: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-02 16:08 ` [PATCH 10/16] target/nios2: " Richard Henderson
2023-05-10 14:45   ` Philippe Mathieu-Daudé
2023-05-02 16:08 ` [PATCH 11/16] target/sh4: Use MO_ALIGN where required Richard Henderson
2023-05-10 13:41   ` Philippe Mathieu-Daudé
2023-05-02 16:08 ` [PATCH 12/16] target/sh4: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-10 14:44   ` Philippe Mathieu-Daudé
2023-05-02 16:08 ` [PATCH 13/16] target/sparc: Use MO_ALIGN where required Richard Henderson
2023-05-03 20:26   ` Mark Cave-Ayland
2023-05-02 16:08 ` [PATCH 14/16] target/sparc: Use cpu_ld*_code_mmu Richard Henderson
2023-05-03 20:27   ` Mark Cave-Ayland
2023-05-02 16:08 ` [PATCH 15/16] target/sparc: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-03 20:28   ` Mark Cave-Ayland
2023-05-02 16:08 ` [PATCH 16/16] tcg: " Richard Henderson
2023-05-10 14:43   ` Philippe Mathieu-Daudé
2023-05-10 15:11     ` Richard Henderson
2023-05-10 11:16 ` [PATCH 00/16] " Richard Henderson

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