All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 00/10] tcg: Direct block chaining clean-up
@ 2016-04-10 21:45 Sergey Fedorov
  2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 01/10] tcg: Clean up direct block chaining data fields Sergey Fedorov
                   ` (9 more replies)
  0 siblings, 10 replies; 26+ messages in thread
From: Sergey Fedorov @ 2016-04-10 21:45 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alex Bennée, Sergey Fedorov, Paolo Bonzini,
	Peter Crosthwaite, Richard Henderson

From: Sergey Fedorov <serge.fdrv@gmail.com>

This series combines a set of patches which is meant to improve overall code
structure and readability of direct block chaining mechanism. The other point
is to make a step towards thread safety of TB chainig.

The series' tree can be found in a public git repository [1].

[1] https://github.com/sergefdrv/qemu/tree/tb-chaining-cleanup-v3

Summary of changes:
 Changes in v3:
  * New patch to clean up safety checks [PATCH v3 09/10]
  * New patch to eliminate unneeded checks in user-mode [PATCH v3 10/10]
 Changes in v2:
  * Eliminated duplicate dereference of 'ptb' in tb_jmp_remove() [PATCH v2 2/8]
  * Tweaked a comment [PATCH v2 4/8]
  * Complete rewrite [PATCH v2 5/8]
  * Tweaked a comment; eliminated duplicate dereference of 'ptb' in
    tb_jmp_unlink() [PATCH v2 8/8]

Sergey Fedorov (10):
  tcg: Clean up direct block chaining data fields
  tcg: Use uintptr_t type for jmp_list_{next|first} fields of TB
  tcg: Rearrange tb_link_page() to avoid forward declaration
  tcg: Init TB's direct jumps before making it visible
  tcg: Clarify thread safety check in tb_add_jump()
  tcg: Rename tb_jmp_remove() to tb_remove_from_jmp_list()
  tcg: Extract removing of jumps to TB from tb_phys_invalidate()
  tcg: Clean up tb_jmp_unlink()
  tcg: Clean up direct block chaining safety checks
  tcg: Moderate direct block chaining safety checks in user mode

 cpu-exec.c                    |   7 +-
 include/exec/exec-all.h       |  70 ++++++----
 target-alpha/translate.c      |  13 +-
 target-arm/translate-a64.c    |  11 +-
 target-arm/translate.c        |  25 +++-
 target-cris/translate.c       |  24 +++-
 target-i386/translate.c       |  31 +++--
 target-lm32/translate.c       |  29 ++++-
 target-m68k/translate.c       |  26 +++-
 target-microblaze/translate.c |  23 +++-
 target-mips/translate.c       |  28 +++-
 target-moxie/translate.c      |  29 ++++-
 target-openrisc/translate.c   |  28 +++-
 target-ppc/translate.c        |  28 +++-
 target-s390x/translate.c      |  25 +++-
 target-sh4/translate.c        |  29 ++++-
 target-sparc/translate.c      |  32 ++++-
 target-tricore/translate.c    |  28 +++-
 target-unicore32/translate.c  |  24 +++-
 target-xtensa/translate.c     |  20 +++
 tcg/aarch64/tcg-target.inc.c  |   7 +-
 tcg/arm/tcg-target.inc.c      |   8 +-
 tcg/i386/tcg-target.inc.c     |   8 +-
 tcg/ia64/tcg-target.inc.c     |   6 +-
 tcg/mips/tcg-target.inc.c     |   8 +-
 tcg/ppc/tcg-target.inc.c      |   6 +-
 tcg/s390/tcg-target.inc.c     |  11 +-
 tcg/sparc/tcg-target.inc.c    |   9 +-
 tcg/tcg.h                     |   6 +-
 tcg/tci/tcg-target.inc.c      |  10 +-
 translate-all.c               | 292 ++++++++++++++++++++++--------------------
 31 files changed, 605 insertions(+), 296 deletions(-)

-- 
2.8.1

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

end of thread, other threads:[~2016-04-19 15:27 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-10 21:45 [Qemu-devel] [PATCH v3 00/10] tcg: Direct block chaining clean-up Sergey Fedorov
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 01/10] tcg: Clean up direct block chaining data fields Sergey Fedorov
2016-04-19 10:02   ` Alex Bennée
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 02/10] tcg: Use uintptr_t type for jmp_list_{next|first} fields of TB Sergey Fedorov
2016-04-19 10:34   ` Alex Bennée
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 03/10] tcg: Rearrange tb_link_page() to avoid forward declaration Sergey Fedorov
2016-04-18 17:20   ` Alex Bennée
2016-04-18 17:59     ` Sergey Fedorov
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 04/10] tcg: Init TB's direct jumps before making it visible Sergey Fedorov
2016-04-19 10:55   ` Alex Bennée
2016-04-19 12:42     ` Sergey Fedorov
2016-04-19 13:07       ` Alex Bennée
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 05/10] tcg: Clarify thread safety check in tb_add_jump() Sergey Fedorov
2016-04-19 11:01   ` Alex Bennée
2016-04-19 12:49     ` Sergey Fedorov
2016-04-19 15:27       ` Alex Bennée
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 06/10] tcg: Rename tb_jmp_remove() to tb_remove_from_jmp_list() Sergey Fedorov
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 07/10] tcg: Extract removing of jumps to TB from tb_phys_invalidate() Sergey Fedorov
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 08/10] tcg: Clean up tb_jmp_unlink() Sergey Fedorov
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 09/10] tcg: Clean up direct block chaining safety checks Sergey Fedorov
2016-04-19 11:37   ` Alex Bennée
2016-04-19 13:02     ` Sergey Fedorov
2016-04-19 14:53       ` Alex Bennée
2016-04-10 21:45 ` [Qemu-devel] [PATCH v3 10/10] tcg: Moderate direct block chaining safety checks in user mode Sergey Fedorov
2016-04-19 13:10   ` Alex Bennée
2016-04-19 13:17     ` Sergey Fedorov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.