qemu-arm.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-arm] [PULL 00/28] Bulk target patches
@ 2018-05-09 17:54 Richard Henderson
  2018-05-09 17:54 ` [Qemu-devel] [PULL 01/28] target/riscv: avoid integer overflow in next_page PC check Richard Henderson
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Richard Henderson @ 2018-05-09 17:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, Sagar Karandikar, David Hildenbrand,
	Palmer Dabbelt, Mark Cave-Ayland, Max Filippov, Michael Clark,
	Guan Xuetao, Yongbok Kim, Alexander Graf, Richard Henderson,
	Artyom Tarasenko, Eduardo Habkost, qemu-s390x, qemu-arm,
	Stafford Horne, David Gibson, Bastian Koppelmann, Cornelia Huck,
	Michael Walle, qemu-ppc, Paolo Bonzini, Aurelien Jarno

This contains two related patch sets from Emilio Cota, both
touching the translation loop for these 13 targets.

I promised Emilio that we'd get these merged early in this
next development cycle to avoid conflicts.


r~


The following changes since commit e5cd695266c5709308aa95b1baae499e4b5d4544:

  Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-05-08 17:05:58 +0100)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/cota-target-pull-request

for you to fetch changes up to 5b4f1d2db9fb0e24549054ee58c7a7d8f84ddd6e:

  target/riscv: convert to TranslatorOps (2018-05-09 10:12:21 -0700)

----------------------------------------------------------------
* Fix all next_page checks for overflow.
* Convert six targets to the translator loop.

----------------------------------------------------------------

Emilio G. Cota (28):
  target/riscv: avoid integer overflow in next_page PC check
  target/cris: avoid integer overflow in next_page PC check
  target/lm32: avoid integer overflow in next_page PC check
  target/xtensa: avoid integer overflow in next_page PC check
  target/unicore32: avoid integer overflow in next_page PC check
  target/tilegx: avoid integer overflow in next_page PC check
  target/microblaze: avoid integer overflow in next_page PC check
  target/arm: avoid integer overflow in next_page PC check
  target/s390x: avoid integer overflow in next_page PC check
  target/mips: avoid integer overflow in next_page PC check
  translator: merge max_insns into DisasContextBase
  target/sh4: convert to TranslatorOps
  target/sparc: convert to DisasJumpType
  target/sparc: convert to DisasContextBase
  target/sparc: convert to TranslatorOps
  target/mips: use lookup_and_goto_ptr on BS_STOP
  target/mips: convert to DisasJumpType
  target/mips: convert to DisasContextBase
  target/mips: use *ctx for DisasContext
  target/mips: convert to TranslatorOps
  target/s390x: convert to DisasJumpType
  target/s390x: convert to DisasContextBase
  target/s390x: convert to TranslatorOps
  target/openrisc: convert to DisasContextBase
  target/openrisc: convert to TranslatorOps
  target/riscv: convert to DisasJumpType
  target/riscv: convert to DisasContextBase
  target/riscv: convert to TranslatorOps

 include/exec/translator.h     |    8 +-
 target/arm/translate.h        |    2 +-
 accel/tcg/translator.c        |   21 +-
 target/alpha/translate.c      |    6 +-
 target/arm/translate-a64.c    |    8 +-
 target/arm/translate.c        |   20 +-
 target/cris/translate.c       |    6 +-
 target/hppa/translate.c       |    7 +-
 target/i386/translate.c       |    5 +-
 target/lm32/translate.c       |    6 +-
 target/microblaze/translate.c |    6 +-
 target/mips/translate.c       |  637 +++++++-------
 target/openrisc/translate.c   |  226 +++--
 target/ppc/translate.c        |    5 +-
 target/riscv/translate.c      |  255 +++---
 target/s390x/translate.c      | 1533 ++++++++++++++++-----------------
 target/sh4/translate.c        |  169 ++--
 target/sparc/translate.c      |  207 +++--
 target/tilegx/translate.c     |    4 +-
 target/unicore32/translate.c  |    6 +-
 target/xtensa/translate.c     |    9 +-
 21 files changed, 1554 insertions(+), 1592 deletions(-)

-- 
2.17.0


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

end of thread, other threads:[~2018-05-11 16:31 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-09 17:54 [Qemu-arm] [PULL 00/28] Bulk target patches Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 01/28] target/riscv: avoid integer overflow in next_page PC check Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 02/28] target/cris: " Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 03/28] target/lm32: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 04/28] target/xtensa: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 05/28] target/unicore32: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 06/28] target/tilegx: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 07/28] target/microblaze: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 08/28] target/arm: " Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 09/28] target/s390x: " Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 10/28] target/mips: " Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 11/28] translator: merge max_insns into DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 12/28] target/sh4: convert to TranslatorOps Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 13/28] target/sparc: convert to DisasJumpType Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 14/28] target/sparc: convert to DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 15/28] target/sparc: convert to TranslatorOps Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 16/28] target/mips: use lookup_and_goto_ptr on BS_STOP Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 17/28] target/mips: convert to DisasJumpType Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 18/28] target/mips: convert to DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 19/28] target/mips: use *ctx for DisasContext Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 20/28] target/mips: convert to TranslatorOps Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 21/28] target/s390x: convert to DisasJumpType Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 22/28] target/s390x: convert to DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 23/28] target/s390x: convert to TranslatorOps Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 24/28] target/openrisc: convert to DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 25/28] target/openrisc: convert to TranslatorOps Richard Henderson
2018-05-09 17:54 ` [Qemu-arm] [PULL 26/28] target/riscv: convert to DisasJumpType Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 27/28] target/riscv: convert to DisasContextBase Richard Henderson
2018-05-09 17:54 ` [Qemu-devel] [PULL 28/28] target/riscv: convert to TranslatorOps Richard Henderson
2018-05-11 16:30 ` [Qemu-arm] [PULL 00/28] Bulk target patches 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).