qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/19] tcg queued patches
@ 2018-06-15 19:43 Richard Henderson
  2018-06-15 19:43 ` [Qemu-devel] [PULL v2 01/19] tcg/i386: Use byte form of xgetbv instruction Richard Henderson
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Richard Henderson @ 2018-06-15 19:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Since last:
  * fix clang build failure in patch 14,
  * include tb code gen overflow fix.


r~


Emilio G. Cota (17):
  qht: require a default comparison function
  qht: return existing entry when qht_insert fails
  tcg: track TBs with per-region BST's
  tcg: move tb_ctx.tb_phys_invalidate_count to tcg_ctx
  translate-all: iterate over TBs in a page with PAGE_FOR_EACH_TB
  translate-all: make l1_map lockless
  translate-all: remove hole in PageDesc
  translate-all: work page-by-page in tb_invalidate_phys_range_1
  translate-all: move tb_invalidate_phys_page_range up in the file
  translate-all: use per-page locking in !user-mode
  translate-all: add page_locked assertions
  translate-all: introduce assert_no_pages_locked
  translate-all: discard TB when tb_link_page returns an existing
    matching TB
  translate-all: protect TB jumps with a per-destination-TB lock
  cputlb: remove tb_lock from tlb_flush functions
  translate-all: remove tb_lock mention from cpu_restore_state_from_tb
  tcg: remove tb_lock

John Arbuckle (1):
  tcg/i386: Use byte form of xgetbv instruction

Richard Henderson (1):
  tcg: Reduce max TB opcode count

 accel/tcg/translate-all.h       |    6 +-
 include/exec/cpu-common.h       |    2 +-
 include/exec/exec-all.h         |   51 +-
 include/exec/memory-internal.h  |    6 +-
 include/exec/tb-context.h       |    4 -
 include/qemu/qht.h              |   32 +-
 tcg/tcg.h                       |   19 +-
 accel/tcg/cpu-exec.c            |   96 ++-
 accel/tcg/cputlb.c              |    8 -
 accel/tcg/translate-all.c       | 1045 +++++++++++++++++++++----------
 exec.c                          |   26 +-
 linux-user/main.c               |    3 -
 tcg/aarch64/tcg-target.inc.c    |    2 +-
 tcg/arm/tcg-target.inc.c        |    2 +-
 tcg/i386/tcg-target.inc.c       |    7 +-
 tcg/mips/tcg-target.inc.c       |    2 +-
 tcg/ppc/tcg-target.inc.c        |    4 +-
 tcg/s390/tcg-target.inc.c       |    2 +-
 tcg/sparc/tcg-target.inc.c      |    4 +-
 tcg/tcg.c                       |  218 ++++++-
 tcg/tci/tcg-target.inc.c        |    2 +-
 tests/qht-bench.c               |   18 +-
 tests/test-qht.c                |   23 +-
 util/qht.c                      |   41 +-
 docs/devel/multi-thread-tcg.txt |   24 +-
 25 files changed, 1157 insertions(+), 490 deletions(-)

-- 
2.17.1

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

end of thread, other threads:[~2018-06-15 19:44 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-15 19:43 [Qemu-devel] [PULL v2 00/19] tcg queued patches Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 01/19] tcg/i386: Use byte form of xgetbv instruction Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 02/19] qht: require a default comparison function Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 03/19] qht: return existing entry when qht_insert fails Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 04/19] tcg: track TBs with per-region BST's Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 05/19] tcg: move tb_ctx.tb_phys_invalidate_count to tcg_ctx Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 06/19] translate-all: iterate over TBs in a page with PAGE_FOR_EACH_TB Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 07/19] translate-all: make l1_map lockless Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 08/19] translate-all: remove hole in PageDesc Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 09/19] translate-all: work page-by-page in tb_invalidate_phys_range_1 Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 10/19] translate-all: move tb_invalidate_phys_page_range up in the file Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 11/19] translate-all: use per-page locking in !user-mode Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 12/19] translate-all: add page_locked assertions Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 13/19] translate-all: introduce assert_no_pages_locked Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 14/19] translate-all: discard TB when tb_link_page returns an existing matching TB Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 15/19] translate-all: protect TB jumps with a per-destination-TB lock Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 16/19] cputlb: remove tb_lock from tlb_flush functions Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 17/19] translate-all: remove tb_lock mention from cpu_restore_state_from_tb Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 18/19] tcg: remove tb_lock Richard Henderson
2018-06-15 19:43 ` [Qemu-devel] [PULL v2 19/19] tcg: Reduce max TB opcode count Richard Henderson

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).