From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52518) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShoOI-0001a9-Pr for qemu-devel@nongnu.org; Thu, 21 Jun 2012 16:54:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ShoOH-00011M-4g for qemu-devel@nongnu.org; Thu, 21 Jun 2012 16:54:10 -0400 Received: from mail-ee0-f45.google.com ([74.125.83.45]:37039) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShoOG-00010h-Sn for qemu-devel@nongnu.org; Thu, 21 Jun 2012 16:54:09 -0400 Received: by eekd41 with SMTP id d41so570672eek.4 for ; Thu, 21 Jun 2012 13:54:06 -0700 (PDT) From: Blue Swirl Date: Thu, 21 Jun 2012 20:53:57 +0000 Message-Id: Subject: [Qemu-devel] [PATCH v4 00/17] x86 AREG0 conversion List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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