qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/23] Queued TCG patches
@ 2017-10-10  0:55 Richard Henderson
  2017-10-10  0:55 ` [Qemu-devel] [PULL 01/23] cputlb: bring back tlb_flush_count under !TLB_DEBUG Richard Henderson
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Richard Henderson @ 2017-10-10  0:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

One trivial cleanup from Jiang.  Cherry-picking half of Emilio's
patch set that has been reviewed.


r~


The following changes since commit 530049bc1dcc24c1178a29d99ca08b6dd08413e0:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2017-10-06 17:43:02 +0100)

are available in the git repository at:

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

for you to fetch changes up to 5de8a6a471ba6b86c6b4fb681e5a3c594ed5a684:

  tcg/mips: delete commented out extern keyword. (2017-10-09 17:07:32 -0700)

----------------------------------------------------------------
Queued tcg patches

----------------------------------------------------------------
Emilio G. Cota (22):
      cputlb: bring back tlb_flush_count under !TLB_DEBUG
      tcg: fix corruption of code_time profiling counter upon tb_flush
      exec-all: fix typos in TranslationBlock's documentation
      translate-all: make have_tb_lock static
      cpu-exec: rename have_tb_lock to acquired_tb_lock in tb_find
      tcg/i386: constify tcg_target_callee_save_regs
      tcg/mips: constify tcg_target_callee_save_regs
      tcg: remove addr argument from lookup_tb_ptr
      tcg: consolidate TB lookups in tb_lookup__cpu_state
      exec-all: bring tb->invalid into tb->cflags
      translate-all: define and use DEBUG_TB_FLUSH_GATE
      exec-all: introduce TB_PAGE_ADDR_FMT
      translate-all: define and use DEBUG_TB_INVALIDATE_GATE
      translate-all: define and use DEBUG_TB_CHECK_GATE
      exec-all: extract tb->tc_* into a separate struct tc_tb
      tci: move tci_regs to tcg_qemu_tb_exec's stack
      tcg: take .helpers out of TCGContext
      tcg: allocate optimizer temps with tcg_malloc
      util: move qemu_real_host_page_size/mask to osdep.h
      osdep: introduce qemu_mprotect_rwx/none
      translate-all: use qemu_protect_rwx/none helpers
      tcg: define TCG_HIGHWATER

Jiang Biao (1):
      tcg/mips: delete commented out extern keyword.

 accel/tcg/tcg-runtime.h    |   2 +-
 include/exec/cpu-all.h     |   2 -
 include/exec/cpu-defs.h    |   1 +
 include/exec/cputlb.h      |   3 +-
 include/exec/exec-all.h    |  19 +-
 include/exec/tb-lookup.h   |  49 ++++
 include/qemu/osdep.h       |   8 +
 tcg/tcg-op.h               |   4 +-
 tcg/tcg.h                  |   2 -
 accel/tcg/cpu-exec.c       |  73 +++---
 accel/tcg/cputlb.c         |  17 +-
 accel/tcg/tcg-runtime.c    |  34 +--
 accel/tcg/translate-all.c  | 157 ++++++-------
 exec.c                     |   4 -
 target/alpha/translate.c   |   2 +-
 target/arm/translate-a64.c |   4 +-
 target/arm/translate.c     |   5 +-
 target/hppa/translate.c    |   6 +-
 target/i386/translate.c    |  17 +-
 target/mips/translate.c    |   4 +-
 target/s390x/translate.c   |   2 +-
 target/sh4/translate.c     |   4 +-
 tcg/i386/tcg-target.inc.c  |   2 +-
 tcg/mips/tcg-target.inc.c  |   4 +-
 tcg/optimize.c             | 306 +++++++++++++------------
 tcg/tcg-op.c               |   4 +-
 tcg/tcg.c                  |  18 +-
 tcg/tci.c                  | 552 +++++++++++++++++++++++----------------------
 util/osdep.c               |  41 ++++
 util/pagesize.c            |  18 ++
 util/Makefile.objs         |   1 +
 31 files changed, 738 insertions(+), 627 deletions(-)
 create mode 100644 include/exec/tb-lookup.h
 create mode 100644 util/pagesize.c

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2017-10-10 12:23 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-10  0:55 [Qemu-devel] [PULL 00/23] Queued TCG patches Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 01/23] cputlb: bring back tlb_flush_count under !TLB_DEBUG Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 02/23] tcg: fix corruption of code_time profiling counter upon tb_flush Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 03/23] exec-all: fix typos in TranslationBlock's documentation Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 04/23] translate-all: make have_tb_lock static Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 05/23] cpu-exec: rename have_tb_lock to acquired_tb_lock in tb_find Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 06/23] tcg/i386: constify tcg_target_callee_save_regs Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 07/23] tcg/mips: " Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 08/23] tcg: remove addr argument from lookup_tb_ptr Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 09/23] tcg: consolidate TB lookups in tb_lookup__cpu_state Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 10/23] exec-all: bring tb->invalid into tb->cflags Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 11/23] translate-all: define and use DEBUG_TB_FLUSH_GATE Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 12/23] exec-all: introduce TB_PAGE_ADDR_FMT Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 13/23] translate-all: define and use DEBUG_TB_INVALIDATE_GATE Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 14/23] translate-all: define and use DEBUG_TB_CHECK_GATE Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 15/23] exec-all: extract tb->tc_* into a separate struct tc_tb Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 16/23] tci: move tci_regs to tcg_qemu_tb_exec's stack Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 17/23] tcg: take .helpers out of TCGContext Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 18/23] tcg: allocate optimizer temps with tcg_malloc Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 19/23] util: move qemu_real_host_page_size/mask to osdep.h Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 20/23] osdep: introduce qemu_mprotect_rwx/none Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 21/23] translate-all: use qemu_protect_rwx/none helpers Richard Henderson
2017-10-10  0:55 ` [Qemu-devel] [PULL 22/23] tcg: define TCG_HIGHWATER Richard Henderson
2017-10-10  0:56 ` [Qemu-devel] [PULL 23/23] tcg/mips: delete commented out extern keyword Richard Henderson
2017-10-10  1:30 ` [Qemu-devel] [PULL 00/23] Queued TCG patches no-reply
2017-10-10  1:30 ` no-reply
2017-10-10 12:23 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).