From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37458) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBUBb-0004Qn-Kl for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SBUBZ-00054m-VW for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:27 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:51044) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBUBZ-00054b-Mu for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:25 -0400 Received: by pbcuo5 with SMTP id uo5so4534836pbc.4 for ; Sat, 24 Mar 2012 09:51:22 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Sat, 24 Mar 2012 09:51:05 -0700 Message-Id: <1332607875-18895-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v2 00/10] Alpha updates List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com Changes v1->v2: * Formatting fixed during the move to new files. It might have been cleaner to fix it before the move, but it was easier to run the existing patches through checkpatch.pl. * Add noreturn marker, now that it's available. r~ Richard Henderson (10): alpha-linux-user: Initialize fpu to round-to-normal. target-alpha: Move integer helpers to int_helper.c. target-alpha: Move exception helpers to helper.c. target-alpha: Move floating-point helpers to fpu_helper.c. target-alpha: Move fpcr helpers from op_helper.c to helper.c. target-alpha: Move integer overflow helpers to int_helper.c. target-alpha: Move palcode support helpers to sys_helper.c. target-alpha: Move memory helpers to mem_helper.c. target-alpha: Make use of fp_status.flush_inputs_to_zero. target-alpha: Use noreturn marker in helper.h. Makefile.target | 3 + configure | 2 +- target-alpha/cpu.h | 4 +- target-alpha/fpu_helper.c | 822 +++++++++++++++++++++++++++ target-alpha/helper.c | 61 ++- target-alpha/helper.h | 143 +++--- target-alpha/int_helper.c | 320 +++++++++++ target-alpha/mem_helper.c | 151 +++++ target-alpha/op_helper.c | 1379 --------------------------------------------- target-alpha/sys_helper.c | 87 +++ target-alpha/translate.c | 222 +++++--- 11 files changed, 1643 insertions(+), 1551 deletions(-) create mode 100644 target-alpha/fpu_helper.c create mode 100644 target-alpha/int_helper.c create mode 100644 target-alpha/mem_helper.c delete mode 100644 target-alpha/op_helper.c create mode 100644 target-alpha/sys_helper.c -- 1.7.7.6