[PATCH] D138508: [TargetLowering] Teach DemandedBits about VSCALE
Benjamin Maxwell via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 12 08:27:22 PST 2022
benmxwl-arm updated this revision to Diff 482141.
benmxwl-arm added a comment.
Remove unnecessary `dyn_cast<ConstantSDNode>`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138508/new/
https://reviews.llvm.org/D138508
Files:
llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
llvm/test/CodeGen/AArch64/vscale-and-sve-cnt-demandedbits.ll
Index: llvm/test/CodeGen/AArch64/vscale-and-sve-cnt-demandedbits.ll
===================================================================
--- llvm/test/CodeGen/AArch64/vscale-and-sve-cnt-demandedbits.ll
+++ llvm/test/CodeGen/AArch64/vscale-and-sve-cnt-demandedbits.ll
@@ -14,9 +14,8 @@
; CHECK: // %bb.0:
; CHECK-NEXT: rdvl x8, #1
; CHECK-NEXT: lsr x8, x8, #4
-; CHECK-NEXT: and w9, w8, #0x1f
-; CHECK-NEXT: and w8, w8, #0xfffffffc
-; CHECK-NEXT: add w0, w9, w8
+; CHECK-NEXT: and w9, w8, #0x1c
+; CHECK-NEXT: add w0, w8, w9
; CHECK-NEXT: ret
%vscale = call i32 @llvm.vscale.i32()
%and_redundant = and i32 %vscale, 31
@@ -85,8 +84,7 @@
; CHECK-LABEL: vscale_trunc_zext:
; CHECK: // %bb.0:
; CHECK-NEXT: rdvl x8, #1
-; CHECK-NEXT: lsr x8, x8, #4
-; CHECK-NEXT: and x0, x8, #0xffffffff
+; CHECK-NEXT: lsr x0, x8, #4
; CHECK-NEXT: ret
%vscale = call i32 @llvm.vscale.i32()
%zext = zext i32 %vscale to i64
@@ -97,8 +95,7 @@
; CHECK-LABEL: vscale_trunc_sext:
; CHECK: // %bb.0:
; CHECK-NEXT: rdvl x8, #1
-; CHECK-NEXT: lsr x8, x8, #4
-; CHECK-NEXT: sxtw x0, w8
+; CHECK-NEXT: lsr x0, x8, #4
; CHECK-NEXT: ret
%vscale = call i32 @llvm.vscale.i32()
%sext = sext i32 %vscale to i64
@@ -200,9 +197,8 @@
; CHECK-NEXT: mov w9, #5
; CHECK-NEXT: lsr x8, x8, #4
; CHECK-NEXT: mul x8, x8, x9
-; CHECK-NEXT: and w9, w8, #0x7f
-; CHECK-NEXT: and w8, w8, #0x3f
-; CHECK-NEXT: add w0, w9, w8
+; CHECK-NEXT: and w9, w8, #0x3f
+; CHECK-NEXT: add w0, w8, w9
; CHECK-NEXT: ret
%vscale = call i32 @llvm.vscale.i32()
%mul = mul i32 %vscale, 5
@@ -219,9 +215,8 @@
; CHECK-NEXT: mov x9, #-5
; CHECK-NEXT: lsr x8, x8, #4
; CHECK-NEXT: mul x8, x8, x9
-; CHECK-NEXT: orr w9, w8, #0xffffff80
-; CHECK-NEXT: and w8, w8, #0xffffffc0
-; CHECK-NEXT: add w0, w9, w8
+; CHECK-NEXT: and w9, w8, #0xffffffc0
+; CHECK-NEXT: add w0, w8, w9
; CHECK-NEXT: ret
%vscale = call i32 @llvm.vscale.i32()
%mul = mul i32 %vscale, -5
Index: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -1125,6 +1125,24 @@
KnownBits Known2;
switch (Op.getOpcode()) {
+ case ISD::VSCALE: {
+ Function const &F = TLO.DAG.getMachineFunction().getFunction();
+ Attribute const &Attr = F.getFnAttribute(Attribute::VScaleRange);
+ if (!Attr.isValid())
+ return false;
+ std::optional<unsigned> MaxVScale = Attr.getVScaleRangeMax();
+ if (!MaxVScale.has_value())
+ return false;
+ int64_t VScaleResultUpperbound =
+ *MaxVScale * Op.getConstantOperandAPInt(0).getSExtValue();
+ bool Negative = VScaleResultUpperbound < 0;
+ if (Negative)
+ VScaleResultUpperbound = -VScaleResultUpperbound;
+ unsigned RequiredBits = Log2_64(VScaleResultUpperbound) + 1;
+ if (RequiredBits < BitWidth)
+ (Negative ? Known.One : Known.Zero).setHighBits(BitWidth - RequiredBits);
+ return false;
+ }
case ISD::SCALAR_TO_VECTOR: {
if (VT.isScalableVector())
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138508.482141.patch
Type: text/x-patch
Size: 3214 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221212/021cf365/attachment.bin>
More information about the llvm-commits
mailing list