qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/16] target-arm queue
@ 2018-05-15 14:06 Peter Maydell
  2018-05-15 14:06 ` [Qemu-devel] [PULL 01/16] fpu/softfloat: int_to_float ensure r fully initialised Peter Maydell
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Peter Maydell @ 2018-05-15 14:06 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit ad1b4ec39caa5b3f17cbd8160283a03a3dcfe2ae:

  Merge remote-tracking branch 'remotes/kraxel/tags/input-20180515-pull-request' into staging (2018-05-15 12:50:06 +0100)

are available in the Git repository at:

  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20180515

for you to fetch changes up to ae7651804748c6b479d5ae09aeac4edb9c44f76e:

  tcg: Optionally log FPU state in TCG -d cpu logging (2018-05-15 14:58:44 +0100)

----------------------------------------------------------------
target-arm queue:
 * Fix coverity nit in int_to_float code
 * Don't set Invalid for float-to-int(MAXINT)
 * Fix fp_status_f16 tininess before rounding
 * Add various missing insns from the v8.2-FP16 extension
 * Fix sqrt_f16 exception raising
 * sdcard: Correct CRC16 offset in sd_function_switch()
 * tcg: Optionally log FPU state in TCG -d cpu logging

----------------------------------------------------------------
Alex Bennée (5):
      fpu/softfloat: int_to_float ensure r fully initialised
      target/arm: Implement FCMP for fp16
      target/arm: Implement FCSEL for fp16
      target/arm: Implement FMOV (immediate) for fp16
      target/arm: Fix sqrt_f16 exception raising

Peter Maydell (3):
      fpu/softfloat: Don't set Invalid for float-to-int(MAXINT)
      target/arm: Fix fp_status_f16 tininess before rounding
      tcg: Optionally log FPU state in TCG -d cpu logging

Philippe Mathieu-Daudé (1):
      sdcard: Correct CRC16 offset in sd_function_switch()

Richard Henderson (7):
      target/arm: Implement FMOV (general) for fp16
      target/arm: Early exit after unallocated_encoding in disas_fp_int_conv
      target/arm: Implement FCVT (scalar, integer) for fp16
      target/arm: Implement FCVT (scalar, fixed-point) for fp16
      target/arm: Introduce and use read_fp_hreg
      target/arm: Implement FP data-processing (2 source) for fp16
      target/arm: Implement FP data-processing (3 source) for fp16

 include/qemu/log.h         |   1 +
 target/arm/helper-a64.h    |   2 +
 target/arm/helper.h        |   6 +
 accel/tcg/cpu-exec.c       |   9 +-
 fpu/softfloat.c            |   6 +-
 hw/sd/sd.c                 |   2 +-
 target/arm/cpu.c           |   2 +
 target/arm/helper-a64.c    |  10 ++
 target/arm/helper.c        |  38 +++-
 target/arm/translate-a64.c | 421 ++++++++++++++++++++++++++++++++++++++-------
 util/log.c                 |   2 +
 11 files changed, 428 insertions(+), 71 deletions(-)

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

end of thread, other threads:[~2018-05-15 15:00 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-15 14:06 [Qemu-devel] [PULL 00/16] target-arm queue Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 01/16] fpu/softfloat: int_to_float ensure r fully initialised Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 02/16] fpu/softfloat: Don't set Invalid for float-to-int(MAXINT) Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 03/16] target/arm: Fix fp_status_f16 tininess before rounding Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 04/16] target/arm: Implement FMOV (general) for fp16 Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 05/16] target/arm: Early exit after unallocated_encoding in disas_fp_int_conv Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 06/16] target/arm: Implement FCVT (scalar, integer) for fp16 Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 07/16] target/arm: Implement FCVT (scalar, fixed-point) " Peter Maydell
2018-05-15 14:06 ` [Qemu-devel] [PULL 08/16] target/arm: Introduce and use read_fp_hreg Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 09/16] target/arm: Implement FP data-processing (2 source) for fp16 Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 10/16] target/arm: Implement FP data-processing (3 " Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 11/16] target/arm: Implement FCMP " Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 12/16] target/arm: Implement FCSEL " Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 13/16] target/arm: Implement FMOV (immediate) " Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 14/16] target/arm: Fix sqrt_f16 exception raising Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 15/16] sdcard: Correct CRC16 offset in sd_function_switch() Peter Maydell
2018-05-15 14:07 ` [Qemu-devel] [PULL 16/16] tcg: Optionally log FPU state in TCG -d cpu logging Peter Maydell
2018-05-15 15:00 ` [Qemu-devel] [PULL 00/16] target-arm queue 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).