From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKpXH-0002BU-R7 for qemu-devel@nongnu.org; Wed, 06 Jul 2016 12:18:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bKpXF-0008Ao-1n for qemu-devel@nongnu.org; Wed, 06 Jul 2016 12:18:51 -0400 Received: from mail-yw0-x22b.google.com ([2607:f8b0:4002:c05::22b]:34915) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKpXE-0008Ad-TT for qemu-devel@nongnu.org; Wed, 06 Jul 2016 12:18:48 -0400 Received: by mail-yw0-x22b.google.com with SMTP id l125so91287080ywb.2 for ; Wed, 06 Jul 2016 09:18:48 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Wed, 6 Jul 2016 09:18:12 -0700 Message-Id: <1467821896-32616-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL v2 0/4] tcg-ish updates List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Three tcg patches, and a build change so that we can still use --cpu=i686 on a x86_64 host, now that linux-user has the syscall assembly thunks. Change from v1 to v2 is a one-line revert to patch 3, the spilling of constants, which affected arm32. I had thought that I could move the clearing of mem_coherent from temp_load (where it just seems odd), to tcg_reg_alloc_movi (where it makes more sense). I don't yet know what path was missed, but the change left some registers out of sync, and thus later containing garbage. Anyway, reverting it is good enough for now. r~ The following changes since commit 791b7d2340cfafcac9af7864343cf23504d57804: Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2016-07-05 16:48:24 +0100) are available in the git repository at: git://github.com/rth7680/qemu.git tags/pull-tcg-20160706 for you to fetch changes up to 1f00b27f17518a1bcb4cedca49eaec96a4d560bd: tcg: Improve the alignment check infrastructure (2016-07-05 20:50:13 -0700) ---------------------------------------------------------------- misc updates ---------------------------------------------------------------- Richard Henderson (3): build: Use $(CCAS) for compiling .S files tcg: Fix name for high-half register tcg: Optimize spills of constants Sergey Sorokin (1): tcg: Improve the alignment check infrastructure configure | 13 ++- include/exec/cpu-all.h | 16 +++- rules.mak | 7 +- softmmu_template.h | 88 ++++++-------------- tcg/aarch64/tcg-target.inc.c | 19 ++++- tcg/arm/tcg-target.inc.c | 6 ++ tcg/i386/tcg-target.inc.c | 36 +++++--- tcg/ia64/tcg-target.inc.c | 10 +++ tcg/mips/tcg-target.inc.c | 10 +++ tcg/ppc/tcg-target.inc.c | 20 +++-- tcg/s390/tcg-target.inc.c | 15 +++- tcg/sparc/tcg-target.inc.c | 10 +++ tcg/tcg-op.c | 3 + tcg/tcg.c | 193 ++++++++++++++++++++++++------------------- tcg/tcg.h | 87 ++++++++++++++++--- tcg/tci/tcg-target.inc.c | 6 ++ 16 files changed, 341 insertions(+), 198 deletions(-)