This patch has the prefered disassembly changed for SVE vector list.
For instance, instead of printing this assembly:
ld4d { z1.d, z2.d, z3.d, z4.d }, p0/z, [x0]
it will print this:
ld4d { z1.d-z4.d }, p0/z, [x0]
Paths
| Differential D135952
[AArch64]Change printVectorList to print SVE vector range ClosedPublic Authored by CarolineConcatto on Oct 14 2022, 1:38 AM.
Details Summary This patch has the prefered disassembly changed for SVE vector list. ld4d { z1.d, z2.d, z3.d, z4.d }, p0/z, [x0] it will print this: ld4d { z1.d-z4.d }, p0/z, [x0]
Diff Detail
Event Timelinesdesmalen added inline comments.
CarolineConcatto added inline comments. This revision is now accepted and ready to land.Oct 14 2022, 9:28 AM Closed by commit rG60e2aad109fc: [AArch64]Change printVectorList to print SVE vector range (authored by CarolineConcatto). · Explain WhyOct 14 2022, 11:00 AM This revision was automatically updated to reflect the committed changes. CarolineConcatto marked 2 inline comments as done.
Revision Contents
Diff 467844 llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
llvm/test/CodeGen/AArch64/sve-calling-convention-mixed.ll
llvm/test/CodeGen/AArch64/sve-intrinsics-ldN-sret-reg+imm-addr-mode.ll
llvm/test/CodeGen/AArch64/sve-intrinsics-ldN-sret-reg+reg-addr-mode.ll
llvm/test/CodeGen/AArch64/sve-intrinsics-stN-reg-imm-addr-mode.ll
llvm/test/CodeGen/AArch64/sve-intrinsics-stN-reg-reg-addr-mode.ll
llvm/test/CodeGen/AArch64/sve-intrinsics-stores.ll
llvm/test/CodeGen/AArch64/sve-ldN.mir
llvm/test/CodeGen/AArch64/sve-stN.mir
llvm/test/MC/AArch64/SVE/ld3b.s
llvm/test/MC/AArch64/SVE/ld3d.s
llvm/test/MC/AArch64/SVE/ld3h.s
llvm/test/MC/AArch64/SVE/ld3w.s
llvm/test/MC/AArch64/SVE/ld4b.s
llvm/test/MC/AArch64/SVE/ld4d.s
llvm/test/MC/AArch64/SVE/ld4h.s
llvm/test/MC/AArch64/SVE/ld4w.s
llvm/test/MC/AArch64/SVE/st3b.s
llvm/test/MC/AArch64/SVE/st3d.s
llvm/test/MC/AArch64/SVE/st3h.s
llvm/test/MC/AArch64/SVE/st3w.s
llvm/test/MC/AArch64/SVE/st4b.s
llvm/test/MC/AArch64/SVE/st4d.s
llvm/test/MC/AArch64/SVE/st4h.s
llvm/test/MC/AArch64/SVE/st4w.s
llvm/test/tools/llvm-mca/AArch64/A64FX/A64FX-sve-instructions.s
llvm/test/tools/llvm-mca/AArch64/Neoverse/N2-sve-instructions.s
|
We should be doing the same for NEON, but I'm happy for that to happen in a different patch.