Commits on May 18, 2023

  1. sbsa-ref: switch default cpu core to Neoverse-N1

    The world outside moves to newer and newer cpu cores. Let move SBSA
    Reference Platform to something newer as well.
    
    Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
    Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
    Message-id: 20230506183417.1360427-1-marcin.juszkiewicz@linaro.org
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    hrw authored and pm215 committed May 18, 2023
    Copy the full SHA
    1877272 View commit details
    Browse the repository at this point in the history
  2. target/arm: Fix vd == vm overlap in sve_ldff1_z

    If vd == vm, copy vm to scratch, so that we can pre-zero
    the output and still access the gather indicies.
    
    Cc: qemu-stable@nongnu.org
    Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1612
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230504104232.1877774-1-richard.henderson@linaro.org
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    a6771f2 View commit details
    Browse the repository at this point in the history
  3. Maintainers: add myself as reviewer for sbsa-ref

    At Linaro I work on sbsa-ref, know direction it goes.
    
    May not get code details each time.
    
    Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Message-id: 20230515143753.365591-1-marcin.juszkiewicz@linaro.org
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    hrw authored and pm215 committed May 18, 2023
    Copy the full SHA
    96e6d25 View commit details
    Browse the repository at this point in the history
  4. arm/kvm: add support for MTE

    Extend the 'mte' property for the virt machine to cover KVM as
    well. For KVM, we don't allocate tag memory, but instead enable the
    capability.
    
    If MTE has been enabled, we need to disable migration, as we do not
    yet have a way to migrate the tags as well. Therefore, MTE will stay
    off with KVM unless requested explicitly.
    
    Signed-off-by: Cornelia Huck <cohuck@redhat.com>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230428095533.21747-2-cohuck@redhat.com
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    cohuck authored and pm215 committed May 18, 2023
    Copy the full SHA
    b320e21 View commit details
    Browse the repository at this point in the history
  5. target/arm: add RAZ/WI handling for DBGDTR[TX|RX]

    The commit b3aa2f2 (target/arm: provide stubs for more external
    debug registers) was added to handle HyperV's unconditional usage of
    Debug Communications Channel. It turns out that Linux will similarly
    break if you enable CONFIG_HVC_DCC "ARM JTAG DCC console".
    
    Extend the registers we RAZ/WI set to avoid this.
    
    Cc: Anders Roxell <anders.roxell@linaro.org>
    Cc: Evgeny Iakovlev <eiakovlev@linux.microsoft.com>
    Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230516104420.407912-1-alex.bennee@linaro.org
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    stsquad authored and pm215 committed May 18, 2023
    Copy the full SHA
    70a670c View commit details
    Browse the repository at this point in the history
  6. sbsa-ref: use Bochs graphics card instead of VGA

    Bochs card is normal PCI Express card so it fits better in system with
    PCI Express bus. VGA is simple legacy PCI card.
    
    Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
    Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
    Message-id: 20230505120936.1097060-1-marcin.juszkiewicz@linaro.org
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    hrw authored and pm215 committed May 18, 2023
    Copy the full SHA
    9162ac6 View commit details
    Browse the repository at this point in the history
  7. target/arm: Split out disas_a64_legacy

    Split out all of the decode stuff from aarch64_tr_translate_insn.
    Call it disas_a64_legacy to indicate it will be replaced.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-2-peter.maydell@linaro.org
    [PMM: Rebased]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    8ed24ba View commit details
    Browse the repository at this point in the history
  8. target/arm: Create decodetree skeleton for A64

    The A64 translator uses a hand-written decoder for everything except
    SVE or SME.  It's fairly well structured, but it's becoming obvious
    that it's still more painful to add instructions to than the A32
    translator, because putting a new instruction into the right place in
    a hand-written decoder is much harder than adding new instruction
    patterns to a decodetree file.
    
    As the first step in conversion to decodetree, create the skeleton of
    the decodetree decoder; where it does not handle instructions we will
    fall back to the legacy decoder (which will be for everything at the
    moment, since there are no patterns in a64.decode).
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-3-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    8058c83 View commit details
    Browse the repository at this point in the history
  9. target/arm: Pull calls to disas_sve() and disas_sme() out of legacy d…

    …ecoder
    
    The SVE and SME decode is already done by decodetree.  Pull the calls
    to these decoders out of the legacy decoder.  This doesn't change
    behaviour because all the patterns in sve.decode and sme.decode
    already require the bits that the legacy decoder is decoding to have
    the correct values.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-4-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    270076d View commit details
    Browse the repository at this point in the history
  10. target/arm: Convert PC-rel addressing to decodetree

    Convert the ADR and ADRP instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-5-peter.maydell@linaro.org
    [PMM: Rebased]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    45fda88 View commit details
    Browse the repository at this point in the history
  11. target/arm: Split gen_add_CC and gen_sub_CC

    Split out specific 32-bit and 64-bit functions.
    These carry the same signature as tcg_gen_add_i64,
    and so will be easier to pass as callbacks.
    
    Retain gen_add_CC and gen_sub_CC during conversion.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-6-peter.maydell@linaro.org
    [PMM: rebased]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    372b7ec View commit details
    Browse the repository at this point in the history
  12. target/arm: Convert Add/subtract (immediate) to decodetree

    Convert the ADD and SUB (immediate) instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-7-peter.maydell@linaro.org
    [PMM: Rebased; adjusted to use translate.h's TRANS macro]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    3ce7b5e View commit details
    Browse the repository at this point in the history
  13. target/arm: Convert Add/subtract (immediate with tags) to decodetree

    Convert the ADDG and SUBG (immediate) instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-8-peter.maydell@linaro.org
    [PMM: Rebased; use TRANS_FEAT()]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    86002ec View commit details
    Browse the repository at this point in the history
  14. target/arm: Replace bitmask64 with MAKE_64BIT_MASK

    Use the bitops.h macro rather than rolling our own here.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-9-peter.maydell@linaro.org
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    000bcd0 View commit details
    Browse the repository at this point in the history
  15. target/arm: Convert Logical (immediate) to decodetree

    Convert the ADD, ORR, EOR, ANDS (immediate) instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-10-peter.maydell@linaro.org
    [PMM: rebased]
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    8127f46 View commit details
    Browse the repository at this point in the history
  16. target/arm: Convert Move wide (immediate) to decodetree

    Convert the MON, MOVZ, MOVK instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-11-peter.maydell@linaro.org
    [PMM: Rebased]
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    ee0daeb View commit details
    Browse the repository at this point in the history
  17. target/arm: Convert Bitfield to decodetree

    Convert the BFM, SBFM, UBFM instructions.
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Message-id: 20230512144106.3608981-12-peter.maydell@linaro.org
    [PMM: Rebased]
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    rth7680 authored and pm215 committed May 18, 2023
    Copy the full SHA
    5e451ae View commit details
    Browse the repository at this point in the history
  18. target/arm: Convert Extract instructions to decodetree

    Convert the EXTR instruction to decodetree (this is the
    only one in the 'Extract" class). This is the last of
    the dp-immediate insns in the legacy decoder, so we
    can now remove disas_data_proc_imm().
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-13-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    4240fb6 View commit details
    Browse the repository at this point in the history
  19. target/arm: Convert unconditional branch immediate to decodetree

    Convert the unconditional branch immediate insns B and BL to
    decodetree.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-14-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    6201b2a View commit details
    Browse the repository at this point in the history
  20. target/arm: Convert CBZ, CBNZ to decodetree

    Convert the compare-and-branch-immediate insns CBZ and CBNZ
    to decodetree.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-15-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    f8977d5 View commit details
    Browse the repository at this point in the history
  21. target/arm: Convert TBZ, TBNZ to decodetree

    Convert the test-and-branch-immediate insns TBZ and TBNZ
    to decodetree.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-16-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    e505828 View commit details
    Browse the repository at this point in the history
  22. target/arm: Convert conditional branch insns to decodetree

    Convert the immediate conditional branch insn B.cond to
    decodetree.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-17-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    484df36 View commit details
    Browse the repository at this point in the history
  23. target/arm: Convert BR, BLR, RET to decodetree

    Convert the simple (non-pointer-auth) BR, BLR and RET insns
    to decodetree.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-18-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    c0b5e39 View commit details
    Browse the repository at this point in the history
  24. target/arm: Convert BRA[AB]Z, BLR[AB]Z, RETA[AB] to decodetree

    Convert the single-register pointer-authentication variants of BR,
    BLR, RET to decodetree. (BRAA/BLRAA are in a different branch of
    the legacy decoder and will be dealt with in the next commit.)
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-19-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    0ebbe90 View commit details
    Browse the repository at this point in the history
  25. target/arm: Convert BRAA, BRAB, BLRAA, BLRAB to decodetree

    Convert the last four BR-with-pointer-auth insns to decodetree.
    The remaining cases in the outer switch in disas_uncond_b_reg()
    all return early rather than leaving the case statement, so we
    can delete the now-unused code at the end of that function.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-20-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    c990fde View commit details
    Browse the repository at this point in the history
  26. target/arm: Convert ERET, ERETAA, ERETAB to decodetree

    Convert the exception-return insns ERET, ERETA and ERETB to
    decodetree. These were the last insns left in the legacy
    decoder function disas_uncond_reg_b(), which allows us to
    remove it.
    
    The old decoder explicitly decoded the DRPS instruction,
    only in order to call unallocated_encoding() on it, exactly
    as would have happened if it hadn't decoded it. This is
    because this insn always UNDEFs unless the CPU is in
    halting-debug state, which we don't emulate. So we list
    the pattern in a comment in a64.decode, but don't actively
    decode it.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512144106.3608981-21-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    442c9d6 View commit details
    Browse the repository at this point in the history
  27. target/arm: Saturate L2CTLR_EL1 core count field rather than overflowing

    The IMPDEF sysreg L2CTLR_EL1 found on the Cortex-A35, A53, A57, A72
    and which we (arguably dubiously) also provide in '-cpu max' has a
    2 bit field for the number of processors in the cluster. On real
    hardware this must be sufficient because it can only be configured
    with up to 4 CPUs in the cluster. However on QEMU if the board code
    does not explicitly configure the code into clusters with the right
    CPU count we default to "give the value assuming that all CPUs in
    the system are in a single cluster", which might be too big to fit
    in the field.
    
    Instead of just overflowing this 2-bit field, saturate to 3 (meaning
    "4 CPUs", so at least we don't overwrite other fields in the register.
    It's unlikely that any guest code really cares about the value in
    this field; at least, if it does it probably also wants the system
    to be more closely matching real hardware, i.e. not to have more
    than 4 CPUs.
    
    This issue has been present since the L2CTLR was first added in
    commit 377a44e back in 2014. It was only noticed because
    Coverity complains (CID 1509227) that the shift might overflow 32 bits
    and inadvertently sign extend into the top half of the 64 bit value.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-id: 20230512170223.3801643-2-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    1aa4512 View commit details
    Browse the repository at this point in the history
  28. hw/arm/vexpress: Avoid trivial memory leak of 'flashalias'

    In the vexpress board code, we allocate a new MemoryRegion at the top
    of vexpress_common_init() but only set it up and use it inside the
    "if (map[VE_NORFLASHALIAS] != -1)" conditional, so we leak it if not.
    This isn't a very interesting leak as it's a tiny amount of memory
    once at startup, but it's easy to fix.
    
    We could silence Coverity simply by moving the g_new() into the
    if() block, but this use of g_new(MemoryRegion, 1) is a legacy from
    when this board model was originally written; we wouldn't do that
    if we wrote it today. The MemoryRegions are conceptually a part of
    the board and must not go away until the whole board is done with
    (at the end of the simulation), so they belong in its state struct.
    
    This machine already has a VexpressMachineState struct that extends
    MachineState, so statically put the MemoryRegions in there instead of
    dynamically allocating them separately at runtime.
    
    Spotted by Coverity (CID 1509083).
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Message-id: 20230512170223.3801643-3-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    18e8ba4 View commit details
    Browse the repository at this point in the history
  29. docs: Convert u2f.txt to rST

    Convert the u2f.txt file to rST, and place it in the right place
    in our manual layout. The old text didn't fit very well into our
    manual style, so the new version ends up looking like a rewrite,
    although some of the original text is preserved:
    
     * the 'building' section of the old file is removed, since we
       generally assume that users have already built QEMU
     * some rather verbose text has been cut back
     * document the passthrough device first, on the assumption
       that's most likely to be of interest to users
     * cut back on the duplication of text between sections
     * format example command lines etc with rST
    
    As it's a short document it seemed simplest to do this all
    in one go rather than try to do a minimal syntactic conversion
    and then clean up the wording and layout.
    
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
    Reviewed-by: Thomas Huth <thuth@redhat.com>
    Message-id: 20230421163734.1152076-1-peter.maydell@linaro.org
    pm215 committed May 18, 2023
    Copy the full SHA
    91608e2 View commit details
    Browse the repository at this point in the history
  30. Merge tag 'pull-target-arm-20230518' of https://git.linaro.org/people…

    …/pmaydell/qemu-arm into staging
    
    target-arm queue:
     * Fix vd == vm overlap in sve_ldff1_z
     * Add support for MTE with KVM guests
     * Add RAZ/WI handling for DBGDTR[TX|RX]
     * Start of conversion of A64 decoder to decodetree
     * Saturate L2CTLR_EL1 core count field rather than overflowing
     * vexpress: Avoid trivial memory leak of 'flashalias'
     * sbsa-ref: switch default cpu core to Neoverse-N1
     * sbsa-ref: use Bochs graphics card instead of VGA
     * MAINTAINERS: Add Marcin Juszkiewicz to sbsa-ref reviewer list
     * docs: Convert u2f.txt to rST
    
    # -----BEGIN PGP SIGNATURE-----
    #
    # iQJNBAABCAA3FiEE4aXFk81BneKOgxXPPCUl7RQ2DN4FAmRmHvMZHHBldGVyLm1h
    # eWRlbGxAbGluYXJvLm9yZwAKCRA8JSXtFDYM3vqqEACFEcWq3E2gRjwnz8JAEk/0
    # jYuYg9jUG6Ev6xY5x31+M4DfK78eXgHYtCxhEcT6FSwpFg/ZXC+bPlZcRlM+8692
    # gkp+JJeBA4VRy9e7Uk6GvRWnpGzjnkHTHf4E9PZB8iIvbJY9nFTtMZydn1w0EnMW
    # HsetnNLIxrtJaETwUa5mDWh0Bt4t6ZIEB2bJSr3O0fy7uiJ8xvpRMYxqfxvI0h+0
    # 7xSaG7xb5Dy4LxohMK0CLdj1wy+8uWpYgD6ZneJ2hlqjknvNWa3zdR8bRLNT0aZL
    # 8ubR1ioFvfi+uA26SNVrdRrGEhqMrTxD0XstFutz0zlOjn0wjo1Ny/ojmGYWuvcU
    # aG09UvcecMP8hy+ygTXJ+2D04eH1VGmS1GEwRS3p+fdODsgHy0Ctln8IPK8SuG7q
    # 67BG/F4GNdkbktHGbZlwduxh30furH8pSSlIJOeTq7d20+atqZ94MWaoW1iQ+t4B
    # 9gDi3MsKoUKVNEhJPorHlDxvtlQppr0ziL0IVPeYUNJONlSza88hkx34ScA5Rl7+
    # 5vQYjLkhS1qZQqvd1fNSRNtHeGx2uBeE9eZF/ZCp7bA5rxcRn//LmG7hO7Octuii
    # zIVaOektXeShALdJ7dMt4MZh0z1RjVVLf0ouC1HHCg9rlzvB+0I5AhXYacGkmCqW
    # wf9S0hvNqdGmJRQhNRonGg==
    # =ooCi
    # -----END PGP SIGNATURE-----
    # gpg: Signature made Thu 18 May 2023 05:49:55 AM PDT
    # gpg:                using RSA key E1A5C593CD419DE28E8315CF3C2525ED14360CDE
    # gpg:                issuer "peter.maydell@linaro.org"
    # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" [full]
    # gpg:                 aka "Peter Maydell <pmaydell@gmail.com>" [full]
    # gpg:                 aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" [full]
    
    * tag 'pull-target-arm-20230518' of https://git.linaro.org/people/pmaydell/qemu-arm: (29 commits)
      docs: Convert u2f.txt to rST
      hw/arm/vexpress: Avoid trivial memory leak of 'flashalias'
      target/arm: Saturate L2CTLR_EL1 core count field rather than overflowing
      target/arm: Convert ERET, ERETAA, ERETAB to decodetree
      target/arm: Convert BRAA, BRAB, BLRAA, BLRAB to decodetree
      target/arm: Convert BRA[AB]Z, BLR[AB]Z, RETA[AB] to decodetree
      target/arm: Convert BR, BLR, RET to decodetree
      target/arm: Convert conditional branch insns to decodetree
      target/arm: Convert TBZ, TBNZ to decodetree
      target/arm: Convert CBZ, CBNZ to decodetree
      target/arm: Convert unconditional branch immediate to decodetree
      target/arm: Convert Extract instructions to decodetree
      target/arm: Convert Bitfield to decodetree
      target/arm: Convert Move wide (immediate) to decodetree
      target/arm: Convert Logical (immediate) to decodetree
      target/arm: Replace bitmask64 with MAKE_64BIT_MASK
      target/arm: Convert Add/subtract (immediate with tags) to decodetree
      target/arm: Convert Add/subtract (immediate) to decodetree
      target/arm: Split gen_add_CC and gen_sub_CC
      target/arm: Convert PC-rel addressing to decodetree
      ...
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    rth7680 committed May 18, 2023
    Copy the full SHA
    266ccbb View commit details
    Browse the repository at this point in the history