[PATCH] D154232: [AArch64] NFC : Change the way SVE pseudos are appended

Ricardo Jesus via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 3 05:57:43 PDT 2023


rjj added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64SchedNeoverseV2.td:2275
+                        "^(AND|BIC|EOR|NOT|ORR)_ZPZZ_[BHSD]",
+                        "^NOT_ZPmZ_[BHSD]")>;
 
----------------
This match is unnecessary.


================
Comment at: llvm/lib/Target/AArch64/AArch64SchedNeoverseV2.td:2552
 // Floating point square root, F16
-def : InstRW<[V2Write_13cyc_1V0_12rc], (instrs FSQRT_ZPmZ_H, FSQRT_ZPmZ_UNDEF_H)>;
+def : InstRW<[V2Write_13cyc_1V0_12rc], (instregex "^FSQRT_ZPmZ_H", "^FSQRT_ZPmZ_H")>;
 
----------------
This is repeated, and the same for the two instructions below.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D154232/new/

https://reviews.llvm.org/D154232



More information about the llvm-commits mailing list