From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47028) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1cEc-00005Y-On for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:48:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1cEZ-0003xH-NJ for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:48:26 -0400 Received: from mail-oi0-x242.google.com ([2607:f8b0:4003:c06::242]:34797) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c1cEZ-0003x9-IG for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:48:23 -0400 Received: by mail-oi0-x242.google.com with SMTP id 62so14883596oif.1 for ; Tue, 01 Nov 2016 09:48:23 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Tue, 1 Nov 2016 10:48:15 -0600 Message-Id: <1478018896-23747-1-git-send-email-rth@twiddle.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL v3 for-2.8 0/9] tcg queued patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Yet another workaround for windows, this time with me actually being able to produce (and run) a mingw32 binary. Only re-sending patch 4/9, as that's the only one that changed. r~ The following changes since commit c46ef897dbb75590af94b6e3dca6a9c5f9a1ea1e: Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2016-11-01 14:27:05 +0000) are available in the git repository at: git://github.com/rth7680/qemu.git tags/pull-tcg-20161101-2 for you to fetch changes up to 3ff91d7e85176f8b4b131163d7fd801757a2c949: tcg: correct 32-bit tcg_gen_ld8s_i64 sign-extension (2016-11-01 10:30:45 -0600) ---------------------------------------------------------------- tcg queued patches ---------------------------------------------------------------- Joseph Myers (1): tcg: correct 32-bit tcg_gen_ld8s_i64 sign-extension Peter Maydell (1): tcg/tcg.h: Improve documentation of TCGv_i32 etc types Pranith Kumar (1): MAINTAINERS: Update PPC status and maintainer Richard Henderson (6): target-cris: Do not dump cpu state with -d in_asm target-microblaze: Do not dump cpu state with -d in_asm target-openrisc: Do not dump cpu state with -d in_asm log: Add locking to large logging blocks tcg: Add tcg_gen_mulsu2_{i32,i64,tl} target-microblaze: Cleanup dec_mul MAINTAINERS | 4 +-- cpu-exec.c | 2 ++ exec.c | 2 ++ include/qemu/log.h | 16 ++++++++++ include/sysemu/os-posix.h | 12 ++++++++ include/sysemu/os-win32.h | 15 +++++++++ target-alpha/translate.c | 2 ++ target-arm/translate-a64.c | 2 ++ target-arm/translate.c | 2 ++ target-cris/translate.c | 27 +++------------- target-i386/translate.c | 4 +++ target-lm32/translate.c | 2 ++ target-m68k/translate.c | 2 ++ target-microblaze/translate.c | 72 ++++++++----------------------------------- target-mips/translate.c | 2 ++ target-openrisc/translate.c | 9 +++--- target-ppc/translate.c | 2 ++ target-s390x/translate.c | 2 ++ target-sh4/translate.c | 2 ++ target-sparc/translate.c | 2 ++ target-tilegx/translate.c | 6 +++- target-tricore/translate.c | 2 ++ target-unicore32/translate.c | 2 ++ target-xtensa/translate.c | 2 ++ tcg/tcg-op.c | 45 ++++++++++++++++++++++++++- tcg/tcg-op.h | 4 +++ tcg/tcg.c | 8 +++++ tcg/tcg.h | 38 ++++++++++++++++++----- translate-all.c | 2 ++ 29 files changed, 192 insertions(+), 100 deletions(-)