qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/29] target/arm: AdvSIMD decodetree conversion, part 4
@ 2024-09-12  2:40 Richard Henderson
  2024-09-12  2:40 ` [PATCH v3 01/29] target/arm: Replace tcg_gen_dupi_vec with constants in gengvec.c Richard Henderson
                   ` (29 more replies)
  0 siblings, 30 replies; 32+ messages in thread
From: Richard Henderson @ 2024-09-12  2:40 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-arm

Changes for v3:
  - Zero-extend results in Widen NeonGenNarrowEnvFn return to 64 bits

Only patch 26 needs review.

r~

Richard Henderson (29):
  target/arm: Replace tcg_gen_dupi_vec with constants in gengvec.c
  target/arm: Replace tcg_gen_dupi_vec with constants in translate-sve.c
  target/arm: Use cmpsel in gen_ushl_vec
  target/arm: Use cmpsel in gen_sshl_vec
  target/arm: Use tcg_gen_extract2_i64 for EXT
  target/arm: Convert EXT to decodetree
  target/arm: Convert TBL, TBX to decodetree
  target/arm: Convert UZP, TRN, ZIP to decodetree
  target/arm: Simplify do_reduction_op
  target/arm: Convert ADDV, *ADDLV, *MAXV, *MINV to decodetree
  target/arm: Convert FMAXNMV, FMINNMV, FMAXV, FMINV to decodetree
  target/arm: Convert FMOVI (scalar, immediate) to decodetree
  target/arm: Convert MOVI, FMOV, ORR, BIC (vector immediate) to
    decodetree
  target/arm: Introduce gen_gvec_sshr, gen_gvec_ushr
  target/arm: Fix whitespace near gen_srshr64_i64
  target/arm: Convert handle_vec_simd_shri to decodetree
  target/arm: Convert handle_vec_simd_shli to decodetree
  target/arm: Use {,s}extract in handle_vec_simd_wshli
  target/arm: Convert SSHLL, USHLL to decodetree
  target/arm: Push tcg_rnd into handle_shri_with_rndacc
  target/arm: Split out subroutines of handle_shri_with_rndacc
  target/arm: Convert SHRN, RSHRN to decodetree
  target/arm: Convert handle_scalar_simd_shri to decodetree
  target/arm: Convert handle_scalar_simd_shli to decodetree
  target/arm: Convert VQSHL, VQSHLU to gvec
  target/arm: Widen NeonGenNarrowEnvFn return to 64 bits
  target/arm: Convert SQSHL, UQSHL, SQSHLU (immediate) to decodetree
  target/arm: Convert vector [US]QSHRN, [US]QRSHRN, SQSHRUN to
    decodetree
  target/arm: Convert scalar [US]QSHRN, [US]QRSHRN, SQSHRUN to
    decodetree

 target/arm/helper.h             |   34 +-
 target/arm/tcg/translate.h      |   14 +-
 target/arm/tcg/gengvec.c        |  121 +-
 target/arm/tcg/neon_helper.c    |   76 +-
 target/arm/tcg/translate-a64.c  | 2081 +++++++++++++------------------
 target/arm/tcg/translate-neon.c |  179 +--
 target/arm/tcg/translate-sve.c  |  128 +-
 target/arm/tcg/a64.decode       |  257 ++++
 target/arm/tcg/neon-dp.decode   |    6 +-
 9 files changed, 1393 insertions(+), 1503 deletions(-)

-- 
2.43.0



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

end of thread, other threads:[~2024-09-16 14:25 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-12  2:40 [PATCH v3 00/29] target/arm: AdvSIMD decodetree conversion, part 4 Richard Henderson
2024-09-12  2:40 ` [PATCH v3 01/29] target/arm: Replace tcg_gen_dupi_vec with constants in gengvec.c Richard Henderson
2024-09-12  2:40 ` [PATCH v3 02/29] target/arm: Replace tcg_gen_dupi_vec with constants in translate-sve.c Richard Henderson
2024-09-12  2:40 ` [PATCH v3 03/29] target/arm: Use cmpsel in gen_ushl_vec Richard Henderson
2024-09-12  2:40 ` [PATCH v3 04/29] target/arm: Use cmpsel in gen_sshl_vec Richard Henderson
2024-09-12  2:40 ` [PATCH v3 05/29] target/arm: Use tcg_gen_extract2_i64 for EXT Richard Henderson
2024-09-12  2:40 ` [PATCH v3 06/29] target/arm: Convert EXT to decodetree Richard Henderson
2024-09-12  2:40 ` [PATCH v3 07/29] target/arm: Convert TBL, TBX " Richard Henderson
2024-09-12  2:40 ` [PATCH v3 08/29] target/arm: Convert UZP, TRN, ZIP " Richard Henderson
2024-09-12  2:40 ` [PATCH v3 09/29] target/arm: Simplify do_reduction_op Richard Henderson
2024-09-12  2:40 ` [PATCH v3 10/29] target/arm: Convert ADDV, *ADDLV, *MAXV, *MINV to decodetree Richard Henderson
2024-09-12  2:40 ` [PATCH v3 11/29] target/arm: Convert FMAXNMV, FMINNMV, FMAXV, FMINV " Richard Henderson
2024-09-12  2:40 ` [PATCH v3 12/29] target/arm: Convert FMOVI (scalar, immediate) " Richard Henderson
2024-09-12  2:40 ` [PATCH v3 13/29] target/arm: Convert MOVI, FMOV, ORR, BIC (vector " Richard Henderson
2024-09-12  2:40 ` [PATCH v3 14/29] target/arm: Introduce gen_gvec_sshr, gen_gvec_ushr Richard Henderson
2024-09-12  2:41 ` [PATCH v3 15/29] target/arm: Fix whitespace near gen_srshr64_i64 Richard Henderson
2024-09-12  2:41 ` [PATCH v3 16/29] target/arm: Convert handle_vec_simd_shri to decodetree Richard Henderson
2024-09-12  2:41 ` [PATCH v3 17/29] target/arm: Convert handle_vec_simd_shli " Richard Henderson
2024-09-12  2:41 ` [PATCH v3 18/29] target/arm: Use {, s}extract in handle_vec_simd_wshli Richard Henderson
2024-09-12  2:41 ` [PATCH v3 19/29] target/arm: Convert SSHLL, USHLL to decodetree Richard Henderson
2024-09-12  2:41 ` [PATCH v3 20/29] target/arm: Push tcg_rnd into handle_shri_with_rndacc Richard Henderson
2024-09-12  2:41 ` [PATCH v3 21/29] target/arm: Split out subroutines of handle_shri_with_rndacc Richard Henderson
2024-09-12  2:41 ` [PATCH v3 22/29] target/arm: Convert SHRN, RSHRN to decodetree Richard Henderson
2024-09-12  2:41 ` [PATCH v3 23/29] target/arm: Convert handle_scalar_simd_shri " Richard Henderson
2024-09-12  2:41 ` [PATCH v3 24/29] target/arm: Convert handle_scalar_simd_shli " Richard Henderson
2024-09-12  2:41 ` [PATCH v3 25/29] target/arm: Convert VQSHL, VQSHLU to gvec Richard Henderson
2024-09-12  2:41 ` [PATCH v3 26/29] target/arm: Widen NeonGenNarrowEnvFn return to 64 bits Richard Henderson
2024-09-12 12:46   ` Peter Maydell
2024-09-12  2:41 ` [PATCH v3 27/29] target/arm: Convert SQSHL, UQSHL, SQSHLU (immediate) to decodetree Richard Henderson
2024-09-12  2:41 ` [PATCH v3 28/29] target/arm: Convert vector [US]QSHRN, [US]QRSHRN, SQSHRUN " Richard Henderson
2024-09-12  2:41 ` [PATCH v3 29/29] target/arm: Convert scalar " Richard Henderson
2024-09-16 14:25 ` [PATCH v3 00/29] target/arm: AdvSIMD decodetree conversion, part 4 Peter Maydell

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