All of lore.kernel.org
 help / color / mirror / Atom feed
From: Blue Swirl <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH v4 00/17] x86 AREG0 conversion
Date: Thu, 21 Jun 2012 20:53:57 +0000	[thread overview]
Message-ID: <cover.1340311897.git.blauwirbel@gmail.com> (raw)

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

             reply	other threads:[~2012-06-21 20:54 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-21 20:53 Blue Swirl [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1340311897.git.blauwirbel@gmail.com \
    --to=blauwirbel@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.