mbox

[PULL,00/12] TCG queued patches

Message ID 20170619181839.25249-1-rth@twiddle.net
State New
Headers show

Pull-request

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

Message

Richard Henderson June 19, 2017, 6:18 p.m. UTC
This contains Emilio's moving the TB struct into code_gen_buffer,
my taking advantage of that in the aa64 and aa32 tcg backends,
and the communal fixes for the goto_ptr hangs.

I've droppped the target/mips goto_ptr patch from Paolo, as Aurelien
has said he'd come up with a more complete fix.

I've dropped the "-accel tcg,thread=*" fix as it is apparently also
in Paolo's misc patches tree.


r~


The following changes since commit cef8fd68364ad754d4f0050a215376cdf0ec744a:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20170614-1' into staging (2017-06-19 17:54:30 +0100)

are available in the git repository at:

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

for you to fetch changes up to 8da54b2507c1cabf60c2de904cf0383b23239231:

  target/arm: Exit after clearing aarch64 interrupt mask (2017-06-19 11:11:26 -0700)

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

----------------------------------------------------------------
Emilio G. Cota (3):
      util: add cacheinfo
      tcg: allocate TB structs before the corresponding translated code
      translate-all: consolidate tb init in tb_gen_code

Richard Henderson (9):
      tcg/aarch64: Use ADR in tcg_out_movi
      tcg/arm: Use indirect branch for goto_tb
      tcg/arm: Remove limit on code buffer size
      tcg/arm: Try pc-relative addresses for movi
      tcg/arm: Use ldr (literal) for goto_tb
      tcg: Increase hit rate of lookup_tb_ptr
      target/alpha: Use tcg_gen_lookup_and_goto_ptr
      target/s390x: Exit after changing PSW mask
      target/arm: Exit after clearing aarch64 interrupt mask

 include/exec/exec-all.h      |   5 +-
 include/exec/tb-context.h    |   3 +-
 include/qemu/osdep.h         |   3 +
 target/alpha/translate.c     |  27 +++++--
 target/arm/translate-a64.c   |   7 +-
 target/s390x/translate.c     |  14 +++-
 tcg-runtime.c                |  28 +++----
 tcg/aarch64/tcg-target.inc.c |   7 +-
 tcg/arm/tcg-target.inc.c     |  78 ++++++++++--------
 tcg/ppc/tcg-target.inc.c     |  71 +----------------
 tcg/tcg.c                    |  20 +++++
 tcg/tcg.h                    |   2 +-
 translate-all.c              |  46 ++++++-----
 util/Makefile.objs           |   1 +
 util/cacheinfo.c             | 185 +++++++++++++++++++++++++++++++++++++++++++
 15 files changed, 345 insertions(+), 152 deletions(-)
 create mode 100644 util/cacheinfo.c

Comments

Peter Maydell June 22, 2017, 10:34 a.m. UTC | #1
On 19 June 2017 at 19:18, Richard Henderson <rth@twiddle.net> wrote:
> This contains Emilio's moving the TB struct into code_gen_buffer,
> my taking advantage of that in the aa64 and aa32 tcg backends,
> and the communal fixes for the goto_ptr hangs.
>
> I've droppped the target/mips goto_ptr patch from Paolo, as Aurelien
> has said he'd come up with a more complete fix.
>
> I've dropped the "-accel tcg,thread=*" fix as it is apparently also
> in Paolo's misc patches tree.
>
>
> r~
>
>
> The following changes since commit cef8fd68364ad754d4f0050a215376cdf0ec744a:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20170614-1' into staging (2017-06-19 17:54:30 +0100)
>
> are available in the git repository at:
>
>   git://github.com/rth7680/qemu.git tags/pull-tcg-20170619
>
> for you to fetch changes up to 8da54b2507c1cabf60c2de904cf0383b23239231:
>
>   target/arm: Exit after clearing aarch64 interrupt mask (2017-06-19 11:11:26 -0700)
>
> ----------------------------------------------------------------
> Queued TCG patches
>

Applied, thanks.

-- PMM