qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v15 00/32] Generic translation framework
@ 2017-07-24 20:26 Richard Henderson
  2017-07-24 20:26 ` [Qemu-devel] [PATCH v15 01/32] tcg: Add generic DISAS_NORETURN Richard Henderson
                   ` (31 more replies)
  0 siblings, 32 replies; 35+ messages in thread
From: Richard Henderson @ 2017-07-24 20:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: cota, vilanova

I believe I've incorporated all of the feedback from v14.

Several bugs in the ARM transition: extra temp free, thumb
condexec label emission (Emilio).

Lots of comments updated (Emilio, Lluis).


r~


Lluís Vilanova (24):
  target: [tcg] Use a generic enum for DISAS_ values
  tcg: Add generic translation framework
  target/i386: [tcg] Port to DisasContextBase
  target/i386: [tcg] Port to init_disas_context
  target/i386: [tcg] Port to insn_start
  target/i386: [tcg] Port to breakpoint_check
  target/i386: [tcg] Port to translate_insn
  target/i386: [tcg] Port to tb_stop
  target/i386: [tcg] Port to disas_log
  target/i386: [tcg] Port to generic translation framework
  target/arm: [tcg] Port to DisasContextBase
  target/arm: [tcg] Port to init_disas_context
  target/arm: [tcg,a64] Port to init_disas_context
  target/arm: [tcg] Port to tb_start
  target/arm: [tcg] Port to insn_start
  target/arm: [tcg,a64] Port to insn_start
  target/arm: [tcg,a64] Port to breakpoint_check
  target/arm: [tcg] Port to translate_insn
  target/arm: [tcg,a64] Port to translate_insn
  target/arm: [tcg] Port to tb_stop
  target/arm: [tcg,a64] Port to tb_stop
  target/arm: [tcg] Port to disas_log
  target/arm: [tcg,a64] Port to disas_log
  target/arm: [tcg] Port to generic translation framework

Richard Henderson (8):
  tcg: Add generic DISAS_NORETURN
  target/i386: Use generic DISAS_* enumerators
  target/arm: Use DISAS_NORETURN
  target/arm: Delay check for magic kernel page
  target/arm: [a64] Move page and ss checks to init_disas_context
  target/arm: Move ss check to init_disas_context
  target/arm: Split out thumb_tr_translate_insn
  target/arm: Perform per-insn cross-page check only for Thumb

 include/exec/exec-all.h       |  29 ---
 include/exec/translator.h     | 144 +++++++++++++
 target/arm/translate.h        |  39 ++--
 accel/tcg/translator.c        | 138 ++++++++++++
 target/arm/translate-a64.c    | 300 +++++++++++++-------------
 target/arm/translate.c        | 478 +++++++++++++++++++++++-------------------
 target/cris/translate.c       |   7 +-
 target/i386/translate.c       | 298 +++++++++++++-------------
 target/lm32/translate.c       |   6 +
 target/m68k/translate.c       |   7 +-
 target/microblaze/translate.c |   6 +
 target/nios2/translate.c      |   6 +
 target/openrisc/translate.c   |   6 +
 target/s390x/translate.c      |   3 +-
 target/unicore32/translate.c  |   7 +-
 target/xtensa/translate.c     |   4 +
 accel/tcg/Makefile.objs       |   1 +
 17 files changed, 909 insertions(+), 570 deletions(-)
 create mode 100644 include/exec/translator.h
 create mode 100644 accel/tcg/translator.c

-- 
2.13.3

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

end of thread, other threads:[~2017-07-24 21:01 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-24 20:26 [Qemu-devel] [PATCH v15 00/32] Generic translation framework Richard Henderson
2017-07-24 20:26 ` [Qemu-devel] [PATCH v15 01/32] tcg: Add generic DISAS_NORETURN Richard Henderson
2017-07-24 20:26 ` [Qemu-devel] [PATCH v15 02/32] target/i386: Use generic DISAS_* enumerators Richard Henderson
2017-07-24 20:26 ` [Qemu-devel] [PATCH v15 03/32] target/arm: Use DISAS_NORETURN Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 04/32] target: [tcg] Use a generic enum for DISAS_ values Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 05/32] target/arm: Delay check for magic kernel page Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 06/32] tcg: Add generic translation framework Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 07/32] target/i386: [tcg] Port to DisasContextBase Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 08/32] target/i386: [tcg] Port to init_disas_context Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 09/32] target/i386: [tcg] Port to insn_start Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 10/32] target/i386: [tcg] Port to breakpoint_check Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 11/32] target/i386: [tcg] Port to translate_insn Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 12/32] target/i386: [tcg] Port to tb_stop Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 13/32] target/i386: [tcg] Port to disas_log Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 14/32] target/i386: [tcg] Port to generic translation framework Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 15/32] target/arm: [tcg] Port to DisasContextBase Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 16/32] target/arm: [tcg] Port to init_disas_context Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 17/32] target/arm: [tcg, a64] " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 18/32] target/arm: [tcg] Port to tb_start Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 19/32] target/arm: [tcg] Port to insn_start Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 20/32] target/arm: [tcg, a64] " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 21/32] target/arm: [tcg, a64] Port to breakpoint_check Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 22/32] target/arm: [tcg] Port to translate_insn Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 23/32] target/arm: [tcg, a64] " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 24/32] target/arm: [tcg] Port to tb_stop Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 25/32] target/arm: [tcg, a64] " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 26/32] target/arm: [tcg] Port to disas_log Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 27/32] target/arm: [tcg, a64] " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 28/32] target/arm: [tcg] Port to generic translation framework Richard Henderson
2017-07-24 21:00   ` Emilio G. Cota
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 29/32] target/arm: [a64] Move page and ss checks to init_disas_context Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 30/32] target/arm: Move ss check " Richard Henderson
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 31/32] target/arm: Split out thumb_tr_translate_insn Richard Henderson
2017-07-24 21:01   ` Emilio G. Cota
2017-07-24 20:27 ` [Qemu-devel] [PATCH v15 32/32] target/arm: Perform per-insn cross-page check only for Thumb 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).