qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4 00/17] x86 AREG0 conversion
@ 2012-06-21 20:53 Blue Swirl
  2012-06-21 20:53 ` [Qemu-devel] [PATCH 01/17] x86: prepare op_helper.c for splitting Blue Swirl
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Blue Swirl @ 2012-06-21 20:53 UTC (permalink / raw)
  To: qemu-devel

This series actually does not do much conversion.

These should be safe, so I'd like to apply them soon.

Further AREG0 conversions need more work.

Blue Swirl (17):
  x86: prepare op_helper.c for splitting
  x86: avoid AREG0 for exceptions
  x86: split off exception handlers
  x86: avoid an extern declaration
  x86: fix coding style in ops_sse.h
  x86: split off FPU helpers
  x86: improve SSE table type safety
  x86: fix coding style in helper_template.h
  x86: split condition code and shift templates
  x86: prepare eflags helpers for general use
  x86: split off condition code helpers
  x86: split off integer helpers
  x86: split off SVM helpers
  x86: split off SMM helpers
  x86: split off misc helpers
  x86: split off memory access helpers
  x86: rename op_helper.c to seg_helper.c

 cpu-exec.c                          |   12 +-
 target-i386/Makefile.objs           |   13 +-
 target-i386/cc_helper.c             |  387 +++
 target-i386/cc_helper_template.h    |  277 ++
 target-i386/cpu.h                   |   62 +-
 target-i386/excp_helper.c           |  129 +
 target-i386/fpu_helper.c            | 1304 ++++++++
 target-i386/helper.c                |    4 +-
 target-i386/helper.h                |    4 +-
 target-i386/helper_template.h       |  334 --
 target-i386/int_helper.c            |  500 +++
 target-i386/mem_helper.c            |  161 +
 target-i386/misc_helper.c           |  603 ++++
 target-i386/op_helper.c             | 5923 -----------------------------------
 target-i386/ops_sse.h               | 1049 ++++---
 target-i386/seg_helper.c            | 2475 +++++++++++++++
 target-i386/shift_helper_template.h |  110 +
 target-i386/smm_helper.c            |  307 ++
 target-i386/svm_helper.c            |  716 +++++
 target-i386/translate.c             |  138 +-
 user-exec.c                         |    2 +-
 21 files changed, 7717 insertions(+), 6793 deletions(-)
 create mode 100644 target-i386/cc_helper.c
 create mode 100644 target-i386/cc_helper_template.h
 create mode 100644 target-i386/excp_helper.c
 create mode 100644 target-i386/fpu_helper.c
 delete mode 100644 target-i386/helper_template.h
 create mode 100644 target-i386/int_helper.c
 create mode 100644 target-i386/mem_helper.c
 create mode 100644 target-i386/misc_helper.c
 delete mode 100644 target-i386/op_helper.c
 create mode 100644 target-i386/seg_helper.c
 create mode 100644 target-i386/shift_helper_template.h
 create mode 100644 target-i386/smm_helper.c
 create mode 100644 target-i386/svm_helper.c

-- 
1.7.2.5

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

end of thread, other threads:[~2012-07-03 19:01 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-21 20:53 [Qemu-devel] [PATCH v4 00/17] x86 AREG0 conversion Blue Swirl
2012-06-21 20:53 ` [Qemu-devel] [PATCH 01/17] x86: prepare op_helper.c for splitting Blue Swirl
2012-06-21 20:53 ` [Qemu-devel] [PATCH 02/17] x86: avoid AREG0 for exceptions Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 03/17] x86: split off exception handlers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 04/17] x86: avoid an extern declaration Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 05/17] x86: fix coding style in ops_sse.h Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 06/17] x86: split off FPU helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 07/17] x86: improve SSE table type safety Blue Swirl
2012-07-02  8:53   ` Markus Armbruster
2012-07-03 19:00     ` Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 08/17] x86: fix coding style in helper_template.h Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 09/17] x86: split condition code and shift templates Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 10/17] x86: prepare eflags helpers for general use Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 11/17] x86: split off condition code helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 12/17] x86: split off integer helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 13/17] x86: split off SVM helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 14/17] x86: split off SMM helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 15/17] x86: split off misc helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 16/17] x86: split off memory access helpers Blue Swirl
2012-06-21 20:54 ` [Qemu-devel] [PATCH 17/17] x86: rename op_helper.c to seg_helper.c Blue Swirl

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