First patch in a series adding MC layer support for SME2.1.
This patch adds the following feature:
sme2p1
The reference can be found here:
https://developer.arm.com/documentation/ddi0602/2022-09
Paths
| Differential D137410
[AArch64] Add SME2.1 target feature for Armv9-A 2022 Architecture Extension ClosedPublic Authored by david-arm on Nov 4 2022, 4:58 AM.
Details Summary First patch in a series adding MC layer support for SME2.1. This patch adds the following feature: sme2p1 The reference can be found here:
Diff Detail
Event Timeline
Comment Actions
This revision is now accepted and ready to land.Nov 7 2022, 3:20 AM This revision was landed with ongoing or failed builds.Nov 7 2022, 6:38 AM Closed by commit rG12a6572d41f1: [AArch64] Add SME2.1 target feature for Armv9-A 2022 Architecture Extension (authored by david-arm). · Explain Why This revision was automatically updated to reflect the committed changes. david-arm marked an inline comment as done.
Revision Contents
Diff 473651 llvm/include/llvm/Support/AArch64TargetParser.h
llvm/include/llvm/Support/AArch64TargetParser.def
llvm/lib/Target/AArch64/AArch64.td
llvm/lib/Target/AArch64/AArch64InstrInfo.td
llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
llvm/test/MC/AArch64/SME2p1/directive-arch-negative.s
llvm/test/MC/AArch64/SME2p1/directive-arch.s
llvm/test/MC/AArch64/SME2p1/directive-arch_extension-negative.s
llvm/test/MC/AArch64/SME2p1/directive-arch_extension.s
llvm/test/MC/AArch64/SVE2p1/bfmlslb.s
llvm/test/MC/AArch64/SVE2p1/bfmlslt.s
llvm/test/MC/AArch64/SVE2p1/cntp.s
llvm/test/MC/AArch64/SVE2p1/fclamp.s
llvm/test/MC/AArch64/SVE2p1/fdot.s
llvm/test/MC/AArch64/SVE2p1/ld1b.s
llvm/test/MC/AArch64/SVE2p1/ld1d.s
llvm/test/MC/AArch64/SVE2p1/ld1h.s
llvm/test/MC/AArch64/SVE2p1/ld1q.s
llvm/test/MC/AArch64/SVE2p1/ld1w.s
llvm/test/MC/AArch64/SVE2p1/ldnt1b.s
llvm/test/MC/AArch64/SVE2p1/ldnt1d.s
llvm/test/MC/AArch64/SVE2p1/ldnt1h.s
llvm/test/MC/AArch64/SVE2p1/ldnt1w.s
llvm/test/MC/AArch64/SVE2p1/pext.s
llvm/test/MC/AArch64/SVE2p1/ptrue.s
llvm/test/MC/AArch64/SVE2p1/sdot.s
llvm/test/MC/AArch64/SVE2p1/sqcvtn.s
llvm/test/MC/AArch64/SVE2p1/sqcvtun.s
llvm/test/MC/AArch64/SVE2p1/sqrshrn.s
llvm/test/MC/AArch64/SVE2p1/sqrshrun.s
llvm/test/MC/AArch64/SVE2p1/st1b.s
llvm/test/MC/AArch64/SVE2p1/st1d.s
llvm/test/MC/AArch64/SVE2p1/st1h.s
llvm/test/MC/AArch64/SVE2p1/st1q.s
llvm/test/MC/AArch64/SVE2p1/st1w.s
llvm/test/MC/AArch64/SVE2p1/stnt1b.s
llvm/test/MC/AArch64/SVE2p1/stnt1d.s
llvm/test/MC/AArch64/SVE2p1/stnt1h.s
llvm/test/MC/AArch64/SVE2p1/stnt1w.s
llvm/test/MC/AArch64/SVE2p1/udot.s
llvm/test/MC/AArch64/SVE2p1/uqcvtn.s
llvm/test/MC/AArch64/SVE2p1/uqrshrn.s
llvm/test/MC/AArch64/SVE2p1/whilege.s
llvm/test/MC/AArch64/SVE2p1/whilegt.s
llvm/test/MC/AArch64/SVE2p1/whilehi.s
llvm/test/MC/AArch64/SVE2p1/whilehs.s
llvm/test/MC/AArch64/SVE2p1/whilele.s
llvm/test/MC/AArch64/SVE2p1/whilelo.s
llvm/test/MC/AArch64/SVE2p1/whilels.s
llvm/test/MC/AArch64/SVE2p1/whilelt.s
llvm/unittests/Support/TargetParserTest.cpp
|
Can this be AssemblerPredicateWithAll? Is this a convent time to fix the other SVE2p1 related instances where we erroneously use AssemblerPredicate?