diff --git a/lib/Target/ARM64/ARM64InstrFormats.td b/lib/Target/ARM64/ARM64InstrFormats.td index 6de83882dc0..440bf4f3a19 100644 --- a/lib/Target/ARM64/ARM64InstrFormats.td +++ b/lib/Target/ARM64/ARM64InstrFormats.td @@ -6651,22 +6651,28 @@ multiclass SIMDScalarRShiftD opc, string asm, SDPatternOperator OpNode> { def d : BaseSIMDScalarShift { + [(set (i64 FPR64:$Rd), + (OpNode (i64 FPR64:$Rn), (i32 vecshiftR64:$imm)))]> { let Inst{21-16} = imm{5-0}; } + + def : Pat<(v1i64 (OpNode (v1i64 FPR64:$Rn), (i32 vecshiftR64:$imm))), + (!cast(NAME # "d") FPR64:$Rn, vecshiftR64:$imm)>; } -let mayLoad = 0, mayStore = 0, hasSideEffects = 0 in multiclass SIMDScalarRShiftDTied opc, string asm, SDPatternOperator OpNode = null_frag> { def d : BaseSIMDScalarShiftTied { + [(set (i64 FPR64:$dst), (OpNode (i64 FPR64:$Rd), (i64 FPR64:$Rn), + (i32 vecshiftR64:$imm)))]> { let Inst{21-16} = imm{5-0}; } + + def : Pat<(v1i64 (OpNode (v1i64 FPR64:$Rd), (v1i64 FPR64:$Rn), + (i32 vecshiftR64:$imm))), + (!cast(NAME # "d") FPR64:$Rd, FPR64:$Rn, + vecshiftR64:$imm)>; } multiclass SIMDScalarLShiftD opc, string asm, diff --git a/test/CodeGen/ARM64/vshr.ll b/test/CodeGen/ARM64/vshr.ll index 2c02cc1473e..6adb81c6e02 100644 --- a/test/CodeGen/ARM64/vshr.ll +++ b/test/CodeGen/ARM64/vshr.ll @@ -46,4 +46,18 @@ entry: ret <8 x i16> %shr } +define <1 x i64> @sshr_v1i64(<1 x i64> %A) nounwind { +; CHECK-LABEL: sshr_v1i64: +; CHECK: sshr d0, d0, #63 + %tmp3 = ashr <1 x i64> %A, < i64 63 > + ret <1 x i64> %tmp3 +} + +define <1 x i64> @ushr_v1i64(<1 x i64> %A) nounwind { +; CHECK-LABEL: ushr_v1i64: +; CHECK: ushr d0, d0, #63 + %tmp3 = lshr <1 x i64> %A, < i64 63 > + ret <1 x i64> %tmp3 +} + attributes #0 = { nounwind } diff --git a/test/CodeGen/ARM64/vsra.ll b/test/CodeGen/ARM64/vsra.ll index a21b616e174..3611eb3cba6 100644 --- a/test/CodeGen/ARM64/vsra.ll +++ b/test/CodeGen/ARM64/vsra.ll @@ -140,3 +140,11 @@ define <2 x i64> @vsraQu64(<2 x i64>* %A, <2 x i64>* %B) nounwind { %tmp4 = add <2 x i64> %tmp1, %tmp3 ret <2 x i64> %tmp4 } + +define <1 x i64> @vsra_v1i64(<1 x i64> %A, <1 x i64> %B) nounwind { +; CHECK-LABEL: vsra_v1i64: +; CHECK: ssra d0, d1, #63 + %tmp3 = ashr <1 x i64> %B, < i64 63 > + %tmp4 = add <1 x i64> %A, %tmp3 + ret <1 x i64> %tmp4 +}