mbox

[PULL,for-2.7,0/7] tcg: fix indirect register lowering

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

Pull-request

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

Message

Richard Henderson Aug. 6, 2016, 1:47 a.m. UTC
This fixes i686 host / sparc64 guest problem that we have
introduced during the 2.7 cycle.


r~


The following changes since commit 51009170d8fc263cfdcd5a60fe3ba213daa3d15b:

  tests: Rename qtests which have names ending "error" (2016-08-05 15:27:15 +0100)

are available in the git repository at:

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

for you to fetch changes up to 5a18407f55ade924aa6397c9a043a9ffd59645fe:

  tcg: Lower indirect registers in a separate pass (2016-08-05 21:44:40 +0530)

----------------------------------------------------------------
indirect register lowering

----------------------------------------------------------------
Richard Henderson (7):
      tcg: Compress liveness data to 16 bits
      tcg: Reorg TCGOp chaining
      tcg: Fold life data into TCGOp
      tcg: Compress dead_temps and mem_temps into a single array
      tcg: Include liveness info in the dumps
      tcg: Require liveness analysis
      tcg: Lower indirect registers in a separate pass

 include/exec/gen-icount.h |   2 +-
 include/qemu/log.h        |   3 +-
 tcg/optimize.c            |  37 +--
 tcg/tcg-op.c              |   2 +-
 tcg/tcg.c                 | 588 ++++++++++++++++++++++++++++++----------------
 tcg/tcg.h                 |  52 ++--
 util/log.c                |  24 +-
 7 files changed, 441 insertions(+), 267 deletions(-)

Comments

Peter Maydell Aug. 8, 2016, 10:31 a.m. UTC | #1
On 6 August 2016 at 02:47, Richard Henderson <rth@twiddle.net> wrote:
> This fixes i686 host / sparc64 guest problem that we have
> introduced during the 2.7 cycle.
>
>
> r~
>
>
> The following changes since commit 51009170d8fc263cfdcd5a60fe3ba213daa3d15b:
>
>   tests: Rename qtests which have names ending "error" (2016-08-05 15:27:15 +0100)
>
> are available in the git repository at:
>
>   git://github.com/rth7680/qemu.git tags/pull-tcg-20160805
>
> for you to fetch changes up to 5a18407f55ade924aa6397c9a043a9ffd59645fe:
>
>   tcg: Lower indirect registers in a separate pass (2016-08-05 21:44:40 +0530)
>
> ----------------------------------------------------------------
> indirect register lowering
>
> ----------------------------------------------------------------
> Richard Henderson (7):
>       tcg: Compress liveness data to 16 bits
>       tcg: Reorg TCGOp chaining
>       tcg: Fold life data into TCGOp
>       tcg: Compress dead_temps and mem_temps into a single array
>       tcg: Include liveness info in the dumps
>       tcg: Require liveness analysis
>       tcg: Lower indirect registers in a separate pass

Applied, thanks.

-- PMM