From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIf2B-0005oM-3j for qemu-devel@nongnu.org; Mon, 11 Jan 2016 11:09:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aIf29-000809-Si for qemu-devel@nongnu.org; Mon, 11 Jan 2016 11:09:31 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIf29-0007zX-LH for qemu-devel@nongnu.org; Mon, 11 Jan 2016 11:09:29 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aIf28-0006hY-CW for qemu-devel@nongnu.org; Mon, 11 Jan 2016 16:09:28 +0000 From: Peter Maydell Date: Mon, 11 Jan 2016 16:09:28 +0000 Message-Id: <1452528568-25734-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL v2 0/4] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org v2, dropping the xlnx high ram regions patch. -- PMM The following changes since commit ac0d9dbf33608d0b178e0bd414ec7397ada17834: Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20160111' into staging (2016-01-11 14:22:04 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160111-1 for you to fetch changes up to fea9b3ca9cc4685f89e0b929a61e51098fbb4f49: hw/arm/virt: Support legacy -nic command line syntax (2016-01-11 16:04:50 +0000) ---------------------------------------------------------------- target-arm queue: * i.MX: move i.MX31 CCM object to register array * xilinx_axidma: remove dead code * disas/libvixl: Update to upstream VIXL 1.12 * virt: Support legacy -nic command line syntax ---------------------------------------------------------------- Andrew Jones (1): hw/dma/xilinx_axidma: remove dead code Ashok Kumar (1): hw/arm/virt: Support legacy -nic command line syntax Jean-Christophe DUBOIS (1): i.MX: move i.MX31 CCM object to register array Peter Maydell (1): disas/libvixl: Update to upstream VIXL 1.12 disas/arm-a64.cc | 2 +- disas/libvixl/Makefile.objs | 9 +- disas/libvixl/README | 3 +- disas/libvixl/a64/assembler-a64.h | 2353 ---------- disas/libvixl/a64/disasm-a64.cc | 1954 --------- disas/libvixl/a64/instructions-a64.cc | 314 -- disas/libvixl/a64/instructions-a64.h | 384 -- disas/libvixl/vixl/a64/assembler-a64.h | 4624 ++++++++++++++++++++ disas/libvixl/{ => vixl}/a64/constants-a64.h | 967 +++- disas/libvixl/{ => vixl}/a64/cpu-a64.h | 6 +- disas/libvixl/{ => vixl}/a64/decoder-a64.cc | 210 +- disas/libvixl/{ => vixl}/a64/decoder-a64.h | 58 +- disas/libvixl/vixl/a64/disasm-a64.cc | 3487 +++++++++++++++ disas/libvixl/{ => vixl}/a64/disasm-a64.h | 17 +- disas/libvixl/vixl/a64/instructions-a64.cc | 622 +++ disas/libvixl/vixl/a64/instructions-a64.h | 757 ++++ disas/libvixl/{ => vixl}/code-buffer.h | 2 +- .../{utils.cc => vixl/compiler-intrinsics.cc} | 137 +- disas/libvixl/vixl/compiler-intrinsics.h | 155 + disas/libvixl/{ => vixl}/globals.h | 82 +- disas/libvixl/vixl/invalset.h | 775 ++++ disas/libvixl/{ => vixl}/platform.h | 2 +- disas/libvixl/vixl/utils.cc | 142 + disas/libvixl/{ => vixl}/utils.h | 115 +- hw/arm/virt.c | 14 + hw/dma/xilinx_axidma.c | 10 - hw/misc/imx31_ccm.c | 188 +- include/hw/misc/imx31_ccm.h | 38 +- 28 files changed, 12118 insertions(+), 5309 deletions(-) delete mode 100644 disas/libvixl/a64/assembler-a64.h delete mode 100644 disas/libvixl/a64/disasm-a64.cc delete mode 100644 disas/libvixl/a64/instructions-a64.cc delete mode 100644 disas/libvixl/a64/instructions-a64.h create mode 100644 disas/libvixl/vixl/a64/assembler-a64.h rename disas/libvixl/{ => vixl}/a64/constants-a64.h (51%) rename disas/libvixl/{ => vixl}/a64/cpu-a64.h (96%) rename disas/libvixl/{ => vixl}/a64/decoder-a64.cc (81%) rename disas/libvixl/{ => vixl}/a64/decoder-a64.h (82%) create mode 100644 disas/libvixl/vixl/a64/disasm-a64.cc rename disas/libvixl/{ => vixl}/a64/disasm-a64.h (94%) create mode 100644 disas/libvixl/vixl/a64/instructions-a64.cc create mode 100644 disas/libvixl/vixl/a64/instructions-a64.h rename disas/libvixl/{ => vixl}/code-buffer.h (99%) rename disas/libvixl/{utils.cc => vixl/compiler-intrinsics.cc} (60%) create mode 100644 disas/libvixl/vixl/compiler-intrinsics.h rename disas/libvixl/{ => vixl}/globals.h (52%) create mode 100644 disas/libvixl/vixl/invalset.h rename disas/libvixl/{ => vixl}/platform.h (98%) create mode 100644 disas/libvixl/vixl/utils.cc rename disas/libvixl/{ => vixl}/utils.h (68%)