[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/31] s390x/tcg update
From: |
David Hildenbrand |
Subject: |
[PULL 00/31] s390x/tcg update |
Date: |
Thu, 10 Oct 2019 13:33:25 +0200 |
Hi Peter,
The following changes since commit 98b2e3c9ab3abfe476a2b02f8f51813edb90e72d:
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into
staging (2019-10-08 16:08:35 +0100)
are available in the Git repository at:
https://github.com/davidhildenbrand/qemu.git tags/s390x-tcg-2019-10-10
for you to fetch changes up to 1f6493be088da969efeeee0100ea4330fb804cdf:
s390x/tcg: MVCL: Exit to main loop if requested (2019-10-10 12:27:15 +0200)
----------------------------------------------------------------
- MMU DAT translation rewrite and cleanup
- Implement more TCG CPU features related to the MMU (e.g., IEP)
- Add the current instruction length to unwind data and clean up
- Resolve one TODO for the MVCL instruction
----------------------------------------------------------------
David Hildenbrand (13):
s390x/mmu: Drop debug logging from MMU code
s390x/mmu: Move DAT protection handling out of mmu_translate_asce()
s390x/mmu: Inject DAT exceptions from a single place
s390x/mmu: Inject PGM_ADDRESSING on bogus table addresses
s390x/mmu: Use TARGET_PAGE_MASK in mmu_translate_pte()
s390x/mmu: DAT table definition overhaul
s390x/mmu: Convert to non-recursive page table walk
s390x/mmu: Add EDAT2 translation support
s390x/mmu: Implement ESOP-2 and
access-exception-fetch/store-indication facility
s390x/mmu: Implement Instruction-Execution-Protection Facility
s390x/cpumodel: Prepare for changes of QEMU model
s390x/cpumodel: Add new TCG features to QEMU cpu model
s390x/tcg: MVCL: Exit to main loop if requested
Richard Henderson (18):
target/s390x: Add ilen to unwind data
target/s390x: Remove ilen parameter from tcg_s390_program_interrupt
target/s390x: Remove ilen parameter from s390_program_interrupt
target/s390x: Use tcg_s390_program_interrupt in TCG helpers
target/s390x: Push trigger_pgm_exception lower in s390_cpu_tlb_fill
target/s390x: Handle tec in s390_cpu_tlb_fill
target/s390x: Return exception from mmu_translate_real
target/s390x: Remove exc argument to mmu_translate_asce
target/s390x: Return exception from mmu_translate
target/s390x: Return exception from translate_pages
target/s390x: Remove fail variable from s390_cpu_tlb_fill
target/s390x: Simplify helper_lra
target/s390x: Rely on unwinding in s390_cpu_tlb_fill
target/s390x: Rely on unwinding in s390_cpu_virt_mem_rw
target/s390x: Remove ILEN_AUTO
target/s390x: Remove ilen argument from trigger_access_exception
target/s390x: Remove ilen argument from trigger_pgm_exception
target/s390x: Remove ILEN_UNWIND
hw/s390x/s390-pci-inst.c | 58 ++---
hw/s390x/s390-virtio-ccw.c | 2 +
include/exec/exec-all.h | 17 ++
target/s390x/cc_helper.c | 4 +-
target/s390x/cpu.h | 86 +++++--
target/s390x/crypto_helper.c | 7 +-
target/s390x/diag.c | 14 +-
target/s390x/excp_helper.c | 58 +++--
target/s390x/fpu_helper.c | 6 +-
target/s390x/gen-features.c | 11 +-
target/s390x/helper.c | 7 +-
target/s390x/int_helper.c | 15 +-
target/s390x/internal.h | 6 +-
target/s390x/interrupt.c | 9 +-
target/s390x/ioinst.c | 40 ++--
target/s390x/mem_helper.c | 84 +++----
target/s390x/misc_helper.c | 27 +--
target/s390x/mmu_helper.c | 429 ++++++++++++++++-------------------
target/s390x/tcg-stub.c | 4 +-
target/s390x/tcg_s390x.h | 4 +-
target/s390x/translate.c | 20 +-
21 files changed, 475 insertions(+), 433 deletions(-)
--
2.21.0
- [PULL 00/31] s390x/tcg update,
David Hildenbrand <=
- [PULL 01/31] s390x/mmu: Drop debug logging from MMU code, David Hildenbrand, 2019/10/10
- [PULL 02/31] s390x/mmu: Move DAT protection handling out of mmu_translate_asce(), David Hildenbrand, 2019/10/10
- [PULL 03/31] s390x/mmu: Inject DAT exceptions from a single place, David Hildenbrand, 2019/10/10
- [PULL 05/31] s390x/mmu: Use TARGET_PAGE_MASK in mmu_translate_pte(), David Hildenbrand, 2019/10/10
- [PULL 04/31] s390x/mmu: Inject PGM_ADDRESSING on bogus table addresses, David Hildenbrand, 2019/10/10
- [PULL 08/31] s390x/mmu: Add EDAT2 translation support, David Hildenbrand, 2019/10/10
- [PULL 06/31] s390x/mmu: DAT table definition overhaul, David Hildenbrand, 2019/10/10
- [PULL 10/31] s390x/mmu: Implement Instruction-Execution-Protection Facility, David Hildenbrand, 2019/10/10
- [PULL 07/31] s390x/mmu: Convert to non-recursive page table walk, David Hildenbrand, 2019/10/10
- [PULL 11/31] s390x/cpumodel: Prepare for changes of QEMU model, David Hildenbrand, 2019/10/10