[llvm] [AArch64][SelectionDAG] Add CodeGen support for scalar FEAT_CPA (PR #105669)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 06:06:34 PST 2025
================
@@ -10382,6 +10382,26 @@ let Predicates = [HasCPA] in {
// Scalar multiply-add/subtract
def MADDPT : MulAccumCPA<0, "maddpt">;
def MSUBPT : MulAccumCPA<1, "msubpt">;
+
+ // Rules to use CPA instructions in pointer arithmetic patterns which are not
+ // folded into loads/stores. The AddedComplexity serves to help supersede
+ // other simpler (non-CPA) patterns and make sure CPA is used instead.
+ let AddedComplexity = 20 in {
----------------
davemgreen wrote:
Which non-cpa patterns are there? My understanding was that nothing else matches ptradd?
https://github.com/llvm/llvm-project/pull/105669
More information about the llvm-commits
mailing list