mbox

[PULL,v2,00/13] TCG patch queue

Message ID 1454976074-29220-1-git-send-email-rth@twiddle.net
State New
Headers show

Pull-request

git://github.com/rth7680/qemu.git tags/pull-tcg-20160209

Message

Richard Henderson Feb. 9, 2016, 12:01 a.m. UTC
This adjusts the previous pull request with a new patch (6/13) to
work around a clang bug that affects -Werror.  I'm not resending
any of the other patches in this pull request.


r~


The following changes since commit e4a096b1cd4350eeca5dcdc391ab333d2083d7fd:

  ui/cocoa.m: Include qemu/osdep.h (2016-02-08 13:14:40 +0000)

are available in the git repository at:

  git://github.com/rth7680/qemu.git tags/pull-tcg-20160209

for you to fetch changes up to 40ae5c62ebaaf7d9d3b93b88c2d32bf6342f7889:

  tcg: Introduce temp_load (2016-02-09 10:45:34 +1100)

----------------------------------------------------------------
Queued TCG patches

----------------------------------------------------------------
Richard Henderson (13):
      tcg: Respect highwater in tcg_out_tb_finalize
      tcg: Remove lingering references to gen_opc_buf
      tcg: Change tcg_global_mem_new_* to take a TCGv_ptr
      tcg: Change ts->mem_reg to ts->mem_base
      tcg: Tidy temporary allocation
      tcg: Work around clang bug wrt enum ranges
      tcg: More use of TCGReg where appropriate
      tcg: Remove tcg_get_arg_str_i32/64
      tcg: Change reg_to_temp to TCGTemp pointer
      tcg: Change temp_dead argument to TCGTemp
      tcg: Change temp_sync argument to TCGTemp
      tcg: Change temp_save argument to TCGTemp
      tcg: Introduce temp_load

 target-alpha/translate.c      |   8 +-
 target-arm/translate-a64.c    |   6 +-
 target-arm/translate.c        |  21 +-
 target-cris/translate.c       |  24 +-
 target-cris/translate_v10.c   |  82 +++---
 target-i386/translate.c       |  13 +-
 target-lm32/translate.c       |  24 +-
 target-m68k/translate.c       |  30 ++-
 target-microblaze/translate.c |  18 +-
 target-mips/translate.c       |  25 +-
 target-moxie/translate.c      |   8 +-
 target-openrisc/translate.c   |  26 +-
 target-ppc/translate.c        |  44 ++--
 target-s390x/translate.c      |  18 +-
 target-sh4/translate.c        |  48 ++--
 target-sparc/translate.c      |  60 ++---
 target-tilegx/translate.c     |   4 +-
 target-tricore/translate.c    |  22 +-
 target-unicore32/translate.c  |   5 +-
 target-xtensa/translate.c     |  10 +-
 tcg/ia64/tcg-target.c         |  11 +-
 tcg/tcg-be-ldst.h             |  11 +-
 tcg/tcg-be-null.h             |   3 +-
 tcg/tcg.c                     | 562 +++++++++++++++++++-----------------------
 tcg/tcg.h                     |  49 ++--
 25 files changed, 564 insertions(+), 568 deletions(-)

Comments

Peter Maydell Feb. 9, 2016, 10:43 a.m. UTC | #1
On 9 February 2016 at 00:01, Richard Henderson <rth@twiddle.net> wrote:
> This adjusts the previous pull request with a new patch (6/13) to
> work around a clang bug that affects -Werror.  I'm not resending
> any of the other patches in this pull request.
>
>
> r~
>
>
> The following changes since commit e4a096b1cd4350eeca5dcdc391ab333d2083d7fd:
>
>   ui/cocoa.m: Include qemu/osdep.h (2016-02-08 13:14:40 +0000)
>
> are available in the git repository at:
>
>   git://github.com/rth7680/qemu.git tags/pull-tcg-20160209
>
> for you to fetch changes up to 40ae5c62ebaaf7d9d3b93b88c2d32bf6342f7889:
>
>   tcg: Introduce temp_load (2016-02-09 10:45:34 +1100)
>
> ----------------------------------------------------------------
> Queued TCG patches
>

Applied, thanks.

-- PMM