@@ -918,10 +918,26 @@ multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, SDNode opnode,
918
918
// The register-immediate version is re-materializable. This is useful
919
919
// in particular for taking the address of a local.
920
920
let isReMaterializable = 1 in {
921
+ def spImm : T2sTwoRegImm<
922
+ (outs GPRsp:$Rd), (ins GPRsp:$Rn, t2_so_imm:$imm), IIC_iALUi,
923
+ opc, ".w\t$Rd, $Rn, $imm",
924
+ []>,
925
+ Sched<[WriteALU, ReadALU]> {
926
+ let Rn = 13;
927
+ let Rd = 13;
928
+
929
+ let Inst{31-27} = 0b11110;
930
+ let Inst{25-24} = 0b01;
931
+ let Inst{23-21} = op23_21;
932
+ let Inst{15} = 0;
933
+
934
+ let DecoderMethod = "DecodeT2AddSubSPImm";
935
+ }
936
+
921
937
def ri : T2sTwoRegImm<
922
- (outs GPRnopc :$Rd), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iALUi,
938
+ (outs rGPR :$Rd), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iALUi,
923
939
opc, ".w\t$Rd, $Rn, $imm",
924
- [(set GPRnopc :$Rd, (opnode GPRnopc:$Rn, t2_so_imm:$imm))]>,
940
+ [(set rGPR :$Rd, (opnode GPRnopc:$Rn, t2_so_imm:$imm))]>,
925
941
Sched<[WriteALU, ReadALU]> {
926
942
let Inst{31-27} = 0b11110;
927
943
let Inst{25} = 0;
@@ -932,9 +948,9 @@ multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, SDNode opnode,
932
948
}
933
949
// 12-bit imm
934
950
def ri12 : T2I<
935
- (outs GPRnopc :$Rd), (ins GPR:$Rn, imm0_4095:$imm), IIC_iALUi,
951
+ (outs rGPR :$Rd), (ins GPR:$Rn, imm0_4095:$imm), IIC_iALUi,
936
952
!strconcat(opc, "w"), "\t$Rd, $Rn, $imm",
937
- [(set GPRnopc :$Rd, (opnode GPR:$Rn, imm0_4095:$imm))]>,
953
+ [(set rGPR :$Rd, (opnode GPR:$Rn, imm0_4095:$imm))]>,
938
954
Sched<[WriteALU, ReadALU]> {
939
955
bits<4> Rd;
940
956
bits<4> Rn;
@@ -950,6 +966,26 @@ multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, SDNode opnode,
950
966
let Inst{11-8} = Rd;
951
967
let Inst{7-0} = imm{7-0};
952
968
}
969
+ def spImm12 : T2I<
970
+ (outs GPRsp:$Rd), (ins GPRsp:$Rn, imm0_4095:$imm), IIC_iALUi,
971
+ !strconcat(opc, "w"), "\t$Rd, $Rn, $imm",
972
+ []>,
973
+ Sched<[WriteALU, ReadALU]> {
974
+ bits<4> Rd = 13;
975
+ bits<4> Rn = 13;
976
+ bits<12> imm;
977
+ let Inst{31-27} = 0b11110;
978
+ let Inst{26} = imm{11};
979
+ let Inst{25-24} = 0b10;
980
+ let Inst{23-21} = op23_21;
981
+ let Inst{20} = 0; // The S bit.
982
+ let Inst{19-16} = Rn;
983
+ let Inst{15} = 0;
984
+ let Inst{14-12} = imm{10-8};
985
+ let Inst{11-8} = Rd;
986
+ let Inst{7-0} = imm{7-0};
987
+ let DecoderMethod = "DecodeT2AddSubSPImm";
988
+ }
953
989
// register
954
990
def rr : T2sThreeReg<(outs GPRnopc:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm),
955
991
IIC_iALUr, opc, ".w\t$Rd, $Rn, $Rm",
@@ -2267,19 +2303,29 @@ def : t2InstSubst<"sbc${s}${p} $rd, $rn, $imm",
2267
2303
(t2ADCri rGPR:$rd, rGPR:$rn, t2_so_imm_not:$imm, pred:$p, s_cc_out:$s)>;
2268
2304
2269
2305
def : t2InstSubst<"add${s}${p}.w $rd, $rn, $imm",
2270
- (t2SUBri GPRnopc:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2271
- def : t2InstSubst<"addw${p} $rd, $rn, $imm",
2272
- (t2SUBri12 GPRnopc:$rd, GPR:$rn, t2_so_imm_neg:$imm, pred:$p)>;
2306
+ (t2SUBri rGPR:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2273
2307
def : t2InstSubst<"sub${s}${p}.w $rd, $rn, $imm",
2274
- (t2ADDri GPRnopc:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2275
- def : t2InstSubst<"subw${p} $rd, $rn, $imm",
2276
- (t2ADDri12 GPRnopc:$rd, GPR:$rn, t2_so_imm_neg:$imm, pred:$p)>;
2308
+ (t2ADDri rGPR:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2277
2309
def : t2InstSubst<"subw${p} $Rd, $Rn, $imm",
2278
- (t2ADDri12 GPRnopc :$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
2310
+ (t2ADDri12 rGPR :$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
2279
2311
def : t2InstSubst<"sub${s}${p} $rd, $rn, $imm",
2280
- (t2ADDri GPRnopc :$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2312
+ (t2ADDri rGPR :$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2281
2313
def : t2InstSubst<"sub${p} $rd, $rn, $imm",
2282
- (t2ADDri12 GPRnopc:$rd, GPR:$rn, t2_so_imm_neg:$imm, pred:$p)>;
2314
+ (t2ADDri12 rGPR:$rd, GPR:$rn, imm0_4095_neg:$imm, pred:$p)>;
2315
+
2316
+ // SP to SP alike
2317
+ def : t2InstSubst<"add${s}${p}.w $rd, $rn, $imm",
2318
+ (t2SUBspImm GPRsp:$rd, GPRsp:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2319
+ def : t2InstSubst<"sub${s}${p}.w $rd, $rn, $imm",
2320
+ (t2ADDspImm GPRsp:$rd, GPRsp:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2321
+ def : t2InstSubst<"subw${p} $Rd, $Rn, $imm",
2322
+ (t2ADDspImm12 GPRsp:$Rd, GPRsp:$Rn, imm0_4095_neg:$imm, pred:$p)>;
2323
+ def : t2InstSubst<"sub${s}${p} $rd, $rn, $imm",
2324
+ (t2ADDspImm GPRsp:$rd, GPRsp:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2325
+ def : t2InstSubst<"sub${p} $rd, $rn, $imm",
2326
+ (t2ADDspImm12 GPRsp:$rd, GPRsp:$rn, imm0_4095_neg:$imm, pred:$p)>;
2327
+
2328
+
2283
2329
// RSB
2284
2330
defm t2RSB : T2I_rbin_irs <0b1110, "rsb", sub>;
2285
2331
@@ -2295,12 +2341,12 @@ defm t2RSBS : T2I_rbin_s_is <ARMsubc>;
2295
2341
// The AddedComplexity preferences the first variant over the others since
2296
2342
// it can be shrunk to a 16-bit wide encoding, while the others cannot.
2297
2343
let AddedComplexity = 1 in
2298
- def : T2Pat<(add GPR :$src, imm1_255_neg:$imm),
2299
- (t2SUBri GPR :$src, imm1_255_neg:$imm)>;
2300
- def : T2Pat<(add GPR :$src, t2_so_imm_neg:$imm),
2301
- (t2SUBri GPR :$src, t2_so_imm_neg:$imm)>;
2302
- def : T2Pat<(add GPR :$src, imm0_4095_neg:$imm),
2303
- (t2SUBri12 GPR :$src, imm0_4095_neg:$imm)>;
2344
+ def : T2Pat<(add rGPR :$src, imm1_255_neg:$imm),
2345
+ (t2SUBri rGPR :$src, imm1_255_neg:$imm)>;
2346
+ def : T2Pat<(add rGPR :$src, t2_so_imm_neg:$imm),
2347
+ (t2SUBri rGPR :$src, t2_so_imm_neg:$imm)>;
2348
+ def : T2Pat<(add rGPR :$src, imm0_4095_neg:$imm),
2349
+ (t2SUBri12 rGPR :$src, imm0_4095_neg:$imm)>;
2304
2350
def : T2Pat<(add GPR:$src, imm0_65535_neg:$imm),
2305
2351
(t2SUBrr GPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
2306
2352
@@ -2799,10 +2845,10 @@ def : T2Pat<(t2_so_imm_not:$src),
2799
2845
// Thumb2SizeReduction's chances later on we select a t2ADD for an or where
2800
2846
// possible.
2801
2847
def : T2Pat<(or AddLikeOrOp:$Rn, t2_so_imm:$imm),
2802
- (t2ADDri $Rn, t2_so_imm:$imm)>;
2848
+ (t2ADDri rGPR: $Rn, t2_so_imm:$imm)>;
2803
2849
2804
2850
def : T2Pat<(or AddLikeOrOp:$Rn, imm0_4095:$Rm),
2805
- (t2ADDri12 $Rn, imm0_4095:$Rm)>;
2851
+ (t2ADDri12 rGPR: $Rn, imm0_4095:$Rm)>;
2806
2852
2807
2853
def : T2Pat<(or AddLikeOrOp:$Rn, non_imm32:$Rm),
2808
2854
(t2ADDrr $Rn, $Rm)>;
@@ -4666,20 +4712,22 @@ def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
4666
4712
4667
4713
// Aliases for ADD without the ".w" optional width specifier.
4668
4714
def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4669
- (t2ADDri GPRnopc :$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p,
4715
+ (t2ADDri rGPR :$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p,
4670
4716
cc_out:$s)>;
4671
4717
def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4672
- (t2ADDri12 GPRnopc :$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4718
+ (t2ADDri12 rGPR :$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4673
4719
def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
4674
4720
(t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4675
4721
def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
4676
4722
(t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4677
4723
pred:$p, cc_out:$s)>;
4678
4724
// ... and with the destination and source register combined.
4679
4725
def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4680
- (t2ADDri GPRnopc :$Rdn, GPRnopc :$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4726
+ (t2ADDri rGPR :$Rdn, rGPR :$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4681
4727
def : t2InstAlias<"add${p} $Rdn, $imm",
4682
- (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4728
+ (t2ADDri12 rGPR:$Rdn, rGPR:$Rdn, imm0_4095:$imm, pred:$p)>;
4729
+ def : t2InstAlias<"addw${p} $Rdn, $imm",
4730
+ (t2ADDri12 rGPR:$Rdn, rGPR:$Rdn, imm0_4095:$imm, pred:$p)>;
4683
4731
def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4684
4732
(t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4685
4733
def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
@@ -4688,43 +4736,45 @@ def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4688
4736
4689
4737
// add w/ negative immediates is just a sub.
4690
4738
def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4691
- (t2SUBri GPRnopc :$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4739
+ (t2SUBri rGPR :$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4692
4740
cc_out:$s)>;
4693
4741
def : t2InstSubst<"add${p} $Rd, $Rn, $imm",
4694
- (t2SUBri12 GPRnopc :$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4742
+ (t2SUBri12 rGPR :$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4695
4743
def : t2InstSubst<"add${s}${p} $Rdn, $imm",
4696
- (t2SUBri GPRnopc :$Rdn, GPRnopc :$Rdn, t2_so_imm_neg:$imm, pred:$p,
4744
+ (t2SUBri rGPR :$Rdn, rGPR :$Rdn, t2_so_imm_neg:$imm, pred:$p,
4697
4745
cc_out:$s)>;
4698
4746
def : t2InstSubst<"add${p} $Rdn, $imm",
4699
- (t2SUBri12 GPRnopc :$Rdn, GPRnopc :$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4747
+ (t2SUBri12 rGPR :$Rdn, rGPR :$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4700
4748
4701
4749
def : t2InstSubst<"add${s}${p}.w $Rd, $Rn, $imm",
4702
- (t2SUBri GPRnopc :$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4750
+ (t2SUBri rGPR :$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4703
4751
cc_out:$s)>;
4704
4752
def : t2InstSubst<"addw${p} $Rd, $Rn, $imm",
4705
- (t2SUBri12 GPRnopc :$Rd, GPR :$Rn, imm0_4095_neg:$imm, pred:$p)>;
4753
+ (t2SUBri12 rGPR :$Rd, rGPR :$Rn, imm0_4095_neg:$imm, pred:$p)>;
4706
4754
def : t2InstSubst<"add${s}${p}.w $Rdn, $imm",
4707
- (t2SUBri GPRnopc :$Rdn, GPRnopc :$Rdn, t2_so_imm_neg:$imm, pred:$p,
4755
+ (t2SUBri rGPR :$Rdn, rGPR :$Rdn, t2_so_imm_neg:$imm, pred:$p,
4708
4756
cc_out:$s)>;
4709
4757
def : t2InstSubst<"addw${p} $Rdn, $imm",
4710
- (t2SUBri12 GPRnopc :$Rdn, GPRnopc :$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4758
+ (t2SUBri12 rGPR :$Rdn, rGPR :$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4711
4759
4712
4760
4713
4761
// Aliases for SUB without the ".w" optional width specifier.
4714
4762
def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
4715
- (t2SUBri GPRnopc :$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4763
+ (t2SUBri rGPR :$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4716
4764
def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
4717
- (t2SUBri12 GPRnopc :$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4765
+ (t2SUBri12 rGPR :$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4718
4766
def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
4719
4767
(t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4720
4768
def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
4721
4769
(t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4722
4770
pred:$p, cc_out:$s)>;
4723
4771
// ... and with the destination and source register combined.
4724
4772
def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4725
- (t2SUBri GPRnopc :$Rdn, GPRnopc :$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4773
+ (t2SUBri rGPR :$Rdn, rGPR :$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4726
4774
def : t2InstAlias<"sub${p} $Rdn, $imm",
4727
- (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4775
+ (t2SUBri12 rGPR:$Rdn, rGPR:$Rdn, imm0_4095:$imm, pred:$p)>;
4776
+ def : t2InstAlias<"subw${p} $Rdn, $imm",
4777
+ (t2SUBri12 rGPR:$Rdn, rGPR:$Rdn, imm0_4095:$imm, pred:$p)>;
4728
4778
def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4729
4779
(t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4730
4780
def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
@@ -4733,6 +4783,65 @@ def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4733
4783
(t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4734
4784
pred:$p, cc_out:$s)>;
4735
4785
4786
+ // SP to SP alike aliases
4787
+ // Aliases for ADD without the ".w" optional width specifier.
4788
+ def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4789
+ (t2ADDspImm GPRsp:$Rd, GPRsp:$Rn, t2_so_imm:$imm, pred:$p,
4790
+ cc_out:$s)>;
4791
+ def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4792
+ (t2ADDspImm12 GPRsp:$Rd, GPRsp:$Rn, imm0_4095:$imm, pred:$p)>;
4793
+ // ... and with the destination and source register combined.
4794
+ def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4795
+ (t2ADDspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4796
+
4797
+ def : t2InstAlias<"add${s}${p}.w $Rdn, $imm",
4798
+ (t2ADDspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4799
+
4800
+ def : t2InstAlias<"add${p} $Rdn, $imm",
4801
+ (t2ADDspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095:$imm, pred:$p)>;
4802
+
4803
+ def : t2InstAlias<"addw${p} $Rdn, $imm",
4804
+ (t2ADDspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095:$imm, pred:$p)>;
4805
+
4806
+ // add w/ negative immediates is just a sub.
4807
+ def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4808
+ (t2SUBspImm GPRsp:$Rd, GPRsp:$Rn, t2_so_imm_neg:$imm, pred:$p,
4809
+ cc_out:$s)>;
4810
+ def : t2InstSubst<"add${p} $Rd, $Rn, $imm",
4811
+ (t2SUBspImm12 GPRsp:$Rd, GPRsp:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4812
+ def : t2InstSubst<"add${s}${p} $Rdn, $imm",
4813
+ (t2SUBspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4814
+ cc_out:$s)>;
4815
+ def : t2InstSubst<"add${p} $Rdn, $imm",
4816
+ (t2SUBspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4817
+
4818
+ def : t2InstSubst<"add${s}${p}.w $Rd, $Rn, $imm",
4819
+ (t2SUBspImm GPRsp:$Rd, GPRsp:$Rn, t2_so_imm_neg:$imm, pred:$p,
4820
+ cc_out:$s)>;
4821
+ def : t2InstSubst<"addw${p} $Rd, $Rn, $imm",
4822
+ (t2SUBspImm12 GPRsp:$Rd, GPRsp:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4823
+ def : t2InstSubst<"add${s}${p}.w $Rdn, $imm",
4824
+ (t2SUBspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4825
+ cc_out:$s)>;
4826
+ def : t2InstSubst<"addw${p} $Rdn, $imm",
4827
+ (t2SUBspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4828
+
4829
+
4830
+ // Aliases for SUB without the ".w" optional width specifier.
4831
+ def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
4832
+ (t2SUBspImm GPRsp:$Rd, GPRsp:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4833
+ def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
4834
+ (t2SUBspImm12 GPRsp:$Rd, GPRsp:$Rn, imm0_4095:$imm, pred:$p)>;
4835
+ // ... and with the destination and source register combined.
4836
+ def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4837
+ (t2SUBspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4838
+ def : t2InstAlias<"sub${s}${p}.w $Rdn, $imm",
4839
+ (t2SUBspImm GPRsp:$Rdn, GPRsp:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4840
+ def : t2InstAlias<"sub${p} $Rdn, $imm",
4841
+ (t2SUBspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095:$imm, pred:$p)>;
4842
+ def : t2InstAlias<"subw${p} $Rdn, $imm",
4843
+ (t2SUBspImm12 GPRsp:$Rdn, GPRsp:$Rdn, imm0_4095:$imm, pred:$p)>;
4844
+
4736
4845
// Alias for compares without the ".w" optional width specifier.
4737
4846
def : t2InstAlias<"cmn${p} $Rn, $Rm",
4738
4847
(t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
@@ -4989,10 +5098,16 @@ def : t2InstSubst<"orr${s}${p} $Rdn, $imm",
4989
5098
pred:$p, cc_out:$s)>;
4990
5099
// Likewise, "add Rd, t2_so_imm_neg" -> sub
4991
5100
def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4992
- (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
5101
+ (t2SUBri rGPR:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
5102
+ pred:$p, cc_out:$s)>;
5103
+ def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
5104
+ (t2SUBspImm GPRsp:$Rd, GPRsp:$Rn, t2_so_imm_neg:$imm,
5105
+ pred:$p, cc_out:$s)>;
5106
+ def : t2InstSubst<"add${s}${p} $Rd, $imm",
5107
+ (t2SUBri rGPR:$Rd, rGPR:$Rd, t2_so_imm_neg:$imm,
4993
5108
pred:$p, cc_out:$s)>;
4994
5109
def : t2InstSubst<"add${s}${p} $Rd, $imm",
4995
- (t2SUBri GPRnopc :$Rd, GPRnopc :$Rd, t2_so_imm_neg:$imm,
5110
+ (t2SUBspImm GPRsp :$Rd, GPRsp :$Rd, t2_so_imm_neg:$imm,
4996
5111
pred:$p, cc_out:$s)>;
4997
5112
// Same for CMP <--> CMN via t2_so_imm_neg
4998
5113
def : t2InstSubst<"cmp${p} $Rd, $imm",
0 commit comments