qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC PATCH v2 0/6] translate: [tcg] Generic translation framework
@ 2016-09-09 13:03 Lluís Vilanova
  2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 1/6] Pass generic CPUState to gen_intermediate_code() Lluís Vilanova
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: Lluís Vilanova @ 2016-09-09 13:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson, Peter Crosthwaite, Paolo Bonzini

This series proposes a generic (target-agnostic) instruction translation
framework.

It basically provides a generic main loop for instruction disassembly, which
calls target-specific functions when necessary. This generalization makes
inserting new code in the main loop easier, and helps in keeping all targets in
synch as to the contents of it.

I've only ported i386 as an example to get some feedback, but I'm planning on
porting ARM next to see how well it fits into the current organization.

Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---

Changes in v2
=============

* Port ARM and AARCH64 targets.
* Fold single-stepping checks into "max_insns" [Richard Henderson].
* Move instruction start marks to target code [Richard Henderson].
* Add target hook for TB start.
* Check for TCG temporary leaks.
* Move instruction disassembly into a target hook.
* Make breakpoint_hit() return an enum to accomodate target's needs (ARM).


Lluís Vilanova (6):
      Pass generic CPUState to gen_intermediate_code()
      queue: Add macro for incremental traversal
      target: [tcg] Add generic translation framework
      target: [tcg] Redefine DISAS_* onto the generic translation framework (DJ_*)
      target: [tcg,i386] Port to generic translation framework
      target: [tcg,arm] Port to generic translation framework


 include/exec/exec-all.h               |   13 -
 include/exec/gen-icount.h             |    2 
 include/exec/translate-all_template.h |   76 +++
 include/qemu/queue.h                  |    5 
 include/qom/cpu.h                     |   21 +
 target-alpha/translate.c              |   11 -
 target-arm/translate-a64.c            |  342 ++++++++--------
 target-arm/translate.c                |  718 +++++++++++++++++----------------
 target-arm/translate.h                |   41 +-
 target-cris/translate.c               |   20 -
 target-i386/translate.c               |  307 +++++++-------
 target-lm32/translate.c               |   22 +
 target-m68k/translate.c               |   18 -
 target-microblaze/translate.c         |   24 +
 target-mips/translate.c               |   15 -
 target-moxie/translate.c              |   14 -
 target-openrisc/translate.c           |   24 +
 target-ppc/translate.c                |   15 -
 target-s390x/translate.c              |   16 -
 target-sh4/translate.c                |   15 -
 target-sparc/translate.c              |   11 -
 target-tilegx/translate.c             |    7 
 target-tricore/translate.c            |    9 
 target-unicore32/translate.c          |   20 -
 target-xtensa/translate.c             |   13 -
 translate-all.c                       |    2 
 translate-all_template.h              |  200 +++++++++
 27 files changed, 1130 insertions(+), 851 deletions(-)
 create mode 100644 include/exec/translate-all_template.h
 create mode 100644 translate-all_template.h


To: qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Cc: Richard Henderson <rth@twiddle.net>

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

end of thread, other threads:[~2017-01-29 12:27 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-09 13:03 [Qemu-devel] [RFC PATCH v2 0/6] translate: [tcg] Generic translation framework Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 1/6] Pass generic CPUState to gen_intermediate_code() Lluís Vilanova
2016-09-16 23:01   ` Richard Henderson
2016-09-19 12:14     ` Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 2/6] queue: Add macro for incremental traversal Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 3/6] target: [tcg] Add generic translation framework Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 4/6] target: [tcg] Redefine DISAS_* onto the generic translation framework (DJ_*) Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 5/6] target: [tcg, i386] Port to generic translation framework Lluís Vilanova
2016-09-09 13:03 ` [Qemu-devel] [PATCH v2 6/6] target: [tcg, arm] " Lluís Vilanova
2016-09-12  3:56 ` [Qemu-devel] [RFC PATCH v2 0/6] translate: [tcg] Generic " no-reply
2016-09-12  5:05 ` no-reply
2016-09-13 16:09 ` Lluís Vilanova
2016-09-26 16:23 ` Lluís Vilanova
2017-01-27 17:12   ` Alex Bennée
2017-01-29 12:27     ` Lluís Vilanova

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