qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/16] tcg patch queue
@ 2019-09-25 18:45 Richard Henderson
  2019-09-25 18:45 ` [PULL 01/16] exec: Use TARGET_PAGE_BITS_MIN for TLB flags Richard Henderson
                   ` (16 more replies)
  0 siblings, 17 replies; 22+ messages in thread
From: Richard Henderson @ 2019-09-25 18:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

This is v4 of my notdirty + rom patch set with two suggested name
changes (qemu_build_not_reached, TLB_DISCARD_WRITE) from David and Alex.


r~


The following changes since commit 240ab11fb72049d6373cbbec8d788f8e411a00bc:

  Merge remote-tracking branch 'remotes/aperard/tags/pull-xen-20190924' into staging (2019-09-24 15:36:31 +0100)

are available in the Git repository at:

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

for you to fetch changes up to ae57db63acf5a0399232f852acc5c1d83ef63400:

  cputlb: Pass retaddr to tb_check_watchpoint (2019-09-25 10:56:28 -0700)

----------------------------------------------------------------
Fixes for TLB_BSWAP
Coversion of NOTDIRTY and ROM handling to cputlb
Followup cleanups to cputlb

----------------------------------------------------------------
Richard Henderson (16):
      exec: Use TARGET_PAGE_BITS_MIN for TLB flags
      cputlb: Disable __always_inline__ without optimization
      qemu/compiler.h: Add qemu_build_not_reached
      cputlb: Use qemu_build_not_reached in load/store_helpers
      cputlb: Split out load/store_memop
      cputlb: Introduce TLB_BSWAP
      exec: Adjust notdirty tracing
      cputlb: Move ROM handling from I/O path to TLB path
      cputlb: Move NOTDIRTY handling from I/O path to TLB path
      cputlb: Partially inline memory_region_section_get_iotlb
      cputlb: Merge and move memory_notdirty_write_{prepare,complete}
      cputlb: Handle TLB_NOTDIRTY in probe_access
      cputlb: Remove cpu->mem_io_vaddr
      cputlb: Remove tb_invalidate_phys_page_range is_cpu_write_access
      cputlb: Pass retaddr to tb_invalidate_phys_page_fast
      cputlb: Pass retaddr to tb_check_watchpoint

 accel/tcg/translate-all.h      |   8 +-
 include/exec/cpu-all.h         |  23 ++-
 include/exec/cpu-common.h      |   3 -
 include/exec/exec-all.h        |   6 +-
 include/exec/memory-internal.h |  65 --------
 include/hw/core/cpu.h          |   2 -
 include/qemu/compiler.h        |  26 +++
 accel/tcg/cputlb.c             | 348 +++++++++++++++++++++++++----------------
 accel/tcg/translate-all.c      |  51 +++---
 exec.c                         | 158 +------------------
 hw/core/cpu.c                  |   1 -
 memory.c                       |  20 ---
 trace-events                   |   4 +-
 13 files changed, 288 insertions(+), 427 deletions(-)


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PULL 00/16] tcg patch queue
@ 2020-01-22  2:49 Richard Henderson
  2020-01-23 13:41 ` Peter Maydell
  0 siblings, 1 reply; 22+ messages in thread
From: Richard Henderson @ 2020-01-22  2:49 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 3e08b2b9cb64bff2b73fa9128c0e49bfcde0dd40:

  Merge remote-tracking branch 'remotes/philmd-gitlab/tags/edk2-next-20200121' into staging (2020-01-21 15:29:25 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 75fa376cdab5e5db2c7fdd107358e16f95503ac6:

  scripts/git.orderfile: Display decodetree before C source (2020-01-21 15:26:09 -1000)

----------------------------------------------------------------
Remove another limit to NB_MMU_MODES.
Fix compilation using uclibc.
Fix defaulting of -accel parameters.
Tidy cputlb basic routines.
Adjust git.orderfile for decodetree.

----------------------------------------------------------------
Carlos Santos (1):
      util/cacheinfo: fix crash when compiling with uClibc

Philippe Mathieu-Daudé (1):
      scripts/git.orderfile: Display decodetree before C source

Richard Henderson (14):
      cputlb: Handle NB_MMU_MODES > TARGET_PAGE_BITS_MIN
      vl: Remove unused variable in configure_accelerators
      vl: Reduce scope of variables in configure_accelerators
      vl: Remove useless test in configure_accelerators
      vl: Only choose enabled accelerators in configure_accelerators
      cputlb: Merge tlb_table_flush_by_mmuidx into tlb_flush_one_mmuidx_locked
      cputlb: Make tlb_n_entries private to cputlb.c
      cputlb: Pass CPUTLBDescFast to tlb_n_entries and sizeof_tlb
      cputlb: Hoist tlb portions in tlb_mmu_resize_locked
      cputlb: Hoist tlb portions in tlb_flush_one_mmuidx_locked
      cputlb: Split out tlb_mmu_flush_locked
      cputlb: Partially merge tlb_dyn_init into tlb_init
      cputlb: Initialize tlbs as flushed
      cputlb: Hoist timestamp outside of loops over tlbs

 include/exec/cpu_ldst.h |   5 -
 accel/tcg/cputlb.c      | 287 +++++++++++++++++++++++++++++++++---------------
 util/cacheinfo.c        |  10 +-
 vl.c                    |  27 +++--
 scripts/git.orderfile   |   3 +
 5 files changed, 223 insertions(+), 109 deletions(-)


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PULL 00/16] tcg patch queue
@ 2023-06-20  8:25 Richard Henderson
  2023-06-20  9:52 ` Richard Henderson
  0 siblings, 1 reply; 22+ messages in thread
From: Richard Henderson @ 2023-06-20  8:25 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 48ab886d3da4f3ab94f79f6c0f8b4535b446bbfd:

  Merge tag 'pull-target-arm-20230619' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-06-19 16:32:25 +0200)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20230620

for you to fetch changes up to d7ee93e24359703debf4137f4cc632563aa4e8d1:

  cputlb: Restrict SavedIOTLB to system emulation (2023-06-20 10:02:14 +0200)

----------------------------------------------------------------
tcg: Define _CALL_AIX for clang on ppc64
accel/tcg: Build fix for macos catalina
accel/tcg: Handle MO_ATOM_WITHIN16 in do_st16_leN
accel/tcg: Restrict SavedIOTLB to system emulation
accel/tcg: Use generic 'helper-proto-common.h' header
plugins: Remove unused 'exec/helper-proto.h' header
*: Check for CONFIG_USER_ONLY instead of CONFIG_SOFTMMU

----------------------------------------------------------------
Philippe Mathieu-Daudé (13):
      target/i386: Simplify i386_tr_init_disas_context()
      target/tricore: Remove pointless CONFIG_SOFTMMU guard
      target/m68k: Check for USER_ONLY definition instead of SOFTMMU one
      target/ppc: Check for USER_ONLY definition instead of SOFTMMU one
      hw/core/cpu: Check for USER_ONLY definition instead of SOFTMMU one
      accel/tcg: Check for USER_ONLY definition instead of SOFTMMU one
      meson: Alias CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY
      meson: Replace CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY
      meson: Replace softmmu_ss -> system_ss
      plugins: Remove unused 'exec/helper-proto.h' header
      accel/tcg/cpu-exec: Use generic 'helper-proto-common.h' header
      exec/cpu-defs: Check for SOFTMMU instead of !USER_ONLY
      cputlb: Restrict SavedIOTLB to system emulation

Richard Henderson (3):
      host/include/x86_64: Use __m128i for "x" constraints
      accel/tcg: Handle MO_ATOM_WITHIN16 in do_st16_leN
      tcg/ppc: Define _CALL_AIX for clang on ppc64(be)

 docs/devel/build-system.rst                      |  14 +--
 meson.build                                      |  15 +--
 accel/tcg/internal.h                             |   6 +-
 host/include/x86_64/host/atomic128-ldst.h        |  25 ++--
 host/include/x86_64/host/load-extract-al16-al8.h |   8 +-
 include/exec/cpu-defs.h                          |  12 +-
 include/hw/core/cpu.h                            |  10 +-
 include/hw/core/tcg-cpu-ops.h                    | 102 ++++++++--------
 target/m68k/helper.h                             |   2 +-
 accel/tcg/cpu-exec.c                             |   6 +-
 accel/tcg/cputlb.c                               |   1 +
 plugins/core.c                                   |   1 -
 target/i386/tcg/translate.c                      |   3 -
 target/m68k/cpu.c                                |  14 +--
 target/m68k/helper.c                             |   4 +-
 target/m68k/translate.c                          |  28 ++---
 target/ppc/cpu_init.c                            |  20 +--
 target/ppc/helper_regs.c                         |   6 +-
 target/tricore/helper.c                          |   2 -
 tcg/ppc/tcg-target.c.inc                         |  23 ++--
 accel/meson.build                                |   4 +-
 accel/qtest/meson.build                          |   2 +-
 accel/stubs/meson.build                          |   2 +-
 accel/tcg/meson.build                            |   6 +-
 audio/meson.build                                |   8 +-
 backends/meson.build                             |  20 +--
 backends/tpm/meson.build                         |   8 +-
 block/meson.build                                |   6 +-
 block/monitor/meson.build                        |   2 +-
 chardev/meson.build                              |   2 +-
 disas/meson.build                                |   2 +-
 dump/meson.build                                 |   4 +-
 ebpf/meson.build                                 |   2 +-
 fsdev/meson.build                                |   4 +-
 gdbstub/meson.build                              |  10 +-
 hw/9pfs/meson.build                              |   2 +-
 hw/acpi/meson.build                              |  10 +-
 hw/adc/meson.build                               |  10 +-
 hw/arm/meson.build                               |   8 +-
 hw/audio/meson.build                             |  28 ++---
 hw/block/meson.build                             |  28 ++---
 hw/char/meson.build                              |  70 +++++------
 hw/core/meson.build                              |  22 ++--
 hw/cpu/meson.build                               |   6 +-
 hw/cxl/meson.build                               |   4 +-
 hw/display/meson.build                           |  76 ++++++------
 hw/dma/meson.build                               |  32 ++---
 hw/gpio/meson.build                              |  26 ++--
 hw/i2c/meson.build                               |   2 +-
 hw/i386/kvm/meson.build                          |   2 +-
 hw/ide/meson.build                               |  28 ++---
 hw/input/meson.build                             |  32 ++---
 hw/intc/meson.build                              |  44 +++----
 hw/ipack/meson.build                             |   2 +-
 hw/ipmi/meson.build                              |   2 +-
 hw/isa/meson.build                               |  18 +--
 hw/mem/meson.build                               |   8 +-
 hw/misc/macio/meson.build                        |   2 +-
 hw/misc/meson.build                              | 148 +++++++++++------------
 hw/net/can/meson.build                           |  16 +--
 hw/net/meson.build                               |  96 +++++++--------
 hw/nubus/meson.build                             |   2 +-
 hw/nvme/meson.build                              |   2 +-
 hw/nvram/meson.build                             |  26 ++--
 hw/pci-bridge/meson.build                        |   4 +-
 hw/pci-host/meson.build                          |   2 +-
 hw/pci/meson.build                               |   8 +-
 hw/pcmcia/meson.build                            |   4 +-
 hw/rdma/meson.build                              |   2 +-
 hw/remote/meson.build                            |   2 +-
 hw/rtc/meson.build                               |  28 ++---
 hw/scsi/meson.build                              |   2 +-
 hw/sd/meson.build                                |  24 ++--
 hw/sensor/meson.build                            |  18 +--
 hw/smbios/meson.build                            |   6 +-
 hw/ssi/meson.build                               |  26 ++--
 hw/timer/meson.build                             |  74 ++++++------
 hw/tpm/meson.build                               |  14 +--
 hw/usb/meson.build                               |  74 ++++++------
 hw/virtio/meson.build                            |  12 +-
 hw/watchdog/meson.build                          |  18 +--
 hw/xen/meson.build                               |   4 +-
 migration/meson.build                            |  12 +-
 monitor/meson.build                              |   6 +-
 net/can/meson.build                              |   2 +-
 net/meson.build                                  |  38 +++---
 qapi/meson.build                                 |   2 +-
 qom/meson.build                                  |   2 +-
 replay/meson.build                               |   2 +-
 semihosting/meson.build                          |   2 +-
 softmmu/meson.build                              |  12 +-
 stats/meson.build                                |   2 +-
 target/alpha/meson.build                         |   6 +-
 target/arm/hvf/meson.build                       |   2 +-
 target/arm/meson.build                           |   6 +-
 target/arm/tcg/meson.build                       |   2 +-
 target/avr/meson.build                           |   6 +-
 target/cris/meson.build                          |   6 +-
 target/hppa/meson.build                          |   6 +-
 target/i386/hax/meson.build                      |   6 +-
 target/i386/hvf/meson.build                      |   2 +-
 target/i386/kvm/meson.build                      |   4 +-
 target/i386/meson.build                          |   8 +-
 target/i386/nvmm/meson.build                     |   4 +-
 target/i386/tcg/sysemu/meson.build               |   2 +-
 target/i386/whpx/meson.build                     |   2 +-
 target/loongarch/meson.build                     |   6 +-
 target/m68k/meson.build                          |   6 +-
 target/microblaze/meson.build                    |   6 +-
 target/mips/meson.build                          |   4 +-
 target/mips/sysemu/meson.build                   |   2 +-
 target/mips/tcg/sysemu/meson.build               |   2 +-
 target/nios2/meson.build                         |   6 +-
 target/openrisc/meson.build                      |   6 +-
 target/ppc/meson.build                           |  10 +-
 target/riscv/meson.build                         |   6 +-
 target/s390x/kvm/meson.build                     |   2 +-
 target/s390x/meson.build                         |   6 +-
 target/sh4/meson.build                           |   6 +-
 target/sparc/meson.build                         |   6 +-
 target/tricore/meson.build                       |   4 +-
 target/xtensa/meson.build                        |   6 +-
 tcg/meson.build                                  |   2 +-
 trace/meson.build                                |   2 +-
 ui/meson.build                                   |  30 ++---
 125 files changed, 864 insertions(+), 854 deletions(-)


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

end of thread, other threads:[~2023-06-20  9:53 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-25 18:45 [PULL 00/16] tcg patch queue Richard Henderson
2019-09-25 18:45 ` [PULL 01/16] exec: Use TARGET_PAGE_BITS_MIN for TLB flags Richard Henderson
2019-09-25 18:45 ` [PULL 02/16] cputlb: Disable __always_inline__ without optimization Richard Henderson
2019-09-25 18:45 ` [PULL 03/16] qemu/compiler.h: Add qemu_build_not_reached Richard Henderson
2019-09-25 18:45 ` [PULL 04/16] cputlb: Use qemu_build_not_reached in load/store_helpers Richard Henderson
2019-09-25 18:45 ` [PULL 05/16] cputlb: Split out load/store_memop Richard Henderson
2019-09-25 18:45 ` [PULL 06/16] cputlb: Introduce TLB_BSWAP Richard Henderson
2019-09-25 18:45 ` [PULL 07/16] exec: Adjust notdirty tracing Richard Henderson
2019-09-25 18:45 ` [PULL 08/16] cputlb: Move ROM handling from I/O path to TLB path Richard Henderson
2019-09-25 18:45 ` [PULL 09/16] cputlb: Move NOTDIRTY " Richard Henderson
2019-09-25 18:45 ` [PULL 10/16] cputlb: Partially inline memory_region_section_get_iotlb Richard Henderson
2019-09-25 18:45 ` [PULL 11/16] cputlb: Merge and move memory_notdirty_write_{prepare, complete} Richard Henderson
2019-09-25 18:45 ` [PULL 12/16] cputlb: Handle TLB_NOTDIRTY in probe_access Richard Henderson
2019-09-25 18:45 ` [PULL 13/16] cputlb: Remove cpu->mem_io_vaddr Richard Henderson
2019-09-25 18:45 ` [PULL 14/16] cputlb: Remove tb_invalidate_phys_page_range is_cpu_write_access Richard Henderson
2019-09-25 18:45 ` [PULL 15/16] cputlb: Pass retaddr to tb_invalidate_phys_page_fast Richard Henderson
2019-09-25 18:45 ` [PULL 16/16] cputlb: Pass retaddr to tb_check_watchpoint Richard Henderson
2019-09-27 14:43 ` [PULL 00/16] tcg patch queue Peter Maydell
2020-01-22  2:49 Richard Henderson
2020-01-23 13:41 ` Peter Maydell
2023-06-20  8:25 Richard Henderson
2023-06-20  9:52 ` 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).