From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USq9z-0005Wq-Q8 for qemu-devel@nongnu.org; Thu, 18 Apr 2013 10:50:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USq9y-0007Nv-L6 for qemu-devel@nongnu.org; Thu, 18 Apr 2013 10:50:03 -0400 Received: from mail-ea0-x22f.google.com ([2a00:1450:4013:c01::22f]:54983) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USq9y-0007Ke-Ei for qemu-devel@nongnu.org; Thu, 18 Apr 2013 10:50:02 -0400 Received: by mail-ea0-f175.google.com with SMTP id f15so313218eak.34 for ; Thu, 18 Apr 2013 07:50:01 -0700 (PDT) Date: Thu, 18 Apr 2013 16:49:56 +0200 From: "Edgar E. Iglesias" Message-ID: <20130418144956.GL4915@smtp.vpn> References: <1366208807-4433-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1366208807-4433-1-git-send-email-pbonzini@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 00/13] TARGET_*_ALIGNMENT cleanup, and config-target.mak trimming List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: peter.maydell@linaro.org, qemu-devel@nongnu.org On Wed, Apr 17, 2013 at 04:26:34PM +0200, Paolo Bonzini wrote: > This series expands on the one I sent yesterday, but also fixes some > confusion between target (CPU) and ABI types in linux-user/elfload.c. > > target_short/int/llong and the corresponding unsigned types are renamed > to abi_short/int/llong, and TARGET_*_ALIGNMENT is similarly renamed to > ABI_*_ALIGNMENT. target_long/ulong, which identify the register width > in the CPU, do not have special alignment anymore. Core dumps are > changed to use the new types, with fixes to include the full 64-bit > contents of mipsn32 registers. Applied all, thanks Paolo. > Paolo Bonzini (13): > configure: QEMU_INCLUDES are the same for all subtargets > elfload: fix size of ABI-dependent fields in core dumps > elfload: fix size of registers for N32 > elfload: use tswapreg consistently in elf_core_copy_regs > elfload: use abi_short/ushort instead of target_short/ushort > elfload: use abi_int/uint instead of target_int/uint > elfload: only give abi_long/ulong the alignment specified by the target > elfload: use abi_llong/ullong instead of target_llong/ullong > configure: move CONFIG_QEMU_LDST_OPTIMIZATION to config-host.mak > configure: move common libraries to config-host.mak > configure: eliminate target_libs_softmmu > configure: CONFIG_NO_XEN is duplicated > configure: remove duplicate test > > Makefile.target | 10 +-- > configure | 129 ++++++++++++----------------- > default-configs/lm32-softmmu.mak | 1 + > hw/display/Makefile.objs | 5 +- > include/exec/cpu-defs.h | 14 +--- > include/exec/user/abitypes.h | 46 ++++++++-- > include/hw/xen/xen.h | 2 +- > linux-user/elfload.c | 175 ++++++++++++++++++++------------------- > 8 files changed, 196 insertions(+), 186 deletions(-) > > -- > 1.8.1.4 >