[all-commits] [llvm/llvm-project] bfd139: [AArch64][SVE2] Add the SVE2.1 while predicate-as-...

david-arm via All-commits all-commits at lists.llvm.org
Tue Nov 1 07:33:54 PDT 2022


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: bfd139562b29a63be8f0f548a30ce3fc985e04db
      https://github.com/llvm/llvm-project/commit/bfd139562b29a63be8f0f548a30ce3fc985e04db
  Author: David Sherwood <david.sherwood at arm.com>
  Date:   2022-11-01 (Tue, 01 Nov 2022)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
    M llvm/lib/Target/AArch64/SVEInstrFormats.td
    A llvm/test/MC/AArch64/SVE2p1/whilege-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilege.s
    A llvm/test/MC/AArch64/SVE2p1/whilegt-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilegt.s
    A llvm/test/MC/AArch64/SVE2p1/whilehi-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilehi.s
    A llvm/test/MC/AArch64/SVE2p1/whilehs-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilehs.s
    A llvm/test/MC/AArch64/SVE2p1/whilele-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilele.s
    A llvm/test/MC/AArch64/SVE2p1/whilelo-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilelo.s
    A llvm/test/MC/AArch64/SVE2p1/whilels-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilels.s
    A llvm/test/MC/AArch64/SVE2p1/whilelt-diagnostics.s
    A llvm/test/MC/AArch64/SVE2p1/whilelt.s

  Log Message:
  -----------
  [AArch64][SVE2] Add the SVE2.1 while predicate-as-counter instructions

This patch adds the assembly/disassembly for the following
predicate-as-counter instructions:

whilelt: While incrementing signed scalar less than scalar
whilele: While incrementing signed scalar less than or equal to scalar
whilegt: While incrementing signed scalar greater than scalar
whilege: While incrementing signed scalar greater than or equal to scalar
whilelo: While incrementing unsigned scalar lower than scalar
whilels: While incrementing unsigned scalar lower or same as scalar
whilehs: While decrementing unsigned scalar higher or same as scalar
whilehi: While decrementing unsigned scalar higher than scalar

The reference can be found here:
https://developer.arm.com/documentation/ddi0602/2022-09

Differential Revision: https://reviews.llvm.org/D136750




More information about the All-commits mailing list