Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5906,6 +5906,15 @@ AArch64TTIImpl::getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy,
VTy->getPrimitiveSizeInBits() / AArch64::SVEBitsPerBlock;
unsigned SegmentElts = VTy->getNumElements() / Segments;

// Check for identity masks when SVE is available, which we can treat as
// free.
if (LT.second.isFixedLengthVector() && ST->isSVEorStreamingSVEAvailable() &&
(Kind == TTI::SK_PermuteTwoSrc || Kind == TTI::SK_PermuteSingleSrc) &&
all_of(enumerate(Mask), [](const auto &M) {
return M.value() < 0 || M.value() == (int)M.index();
}))
return 0;

// dupq zd.t, zn.t[idx]
if ((ST->hasSVE2p1() || ST->hasSME2p1()) &&
ST->isSVEorStreamingSVEAvailable() &&
Expand Down
71 changes: 71 additions & 0 deletions llvm/test/Transforms/VectorCombine/AArch64/identity-shuffle-sve.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -passes=vector-combine -mtriple=aarch64-unknown-linux-gnu -S %s | FileCheck %s
; RUN: opt < %s -mtriple=aarch64--linux-gnu -passes="print<cost-model>" -cost-kind=all 2>&1 -disable-output | FileCheck %s --check-prefix=COST
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The costmodel tests should live in a separate Analysis/CostModel/AArch64 test file.

Maybe add the shuffles found here to /work/clean/llvm/test/Analysis/CostModel/AArch64/sve-vls-shuffle-extract.ll as a new example?

target triple = "aarch64-unknown-linux-gnu"

define i32 @ham(ptr %call12) local_unnamed_addr #0 {
; CHECK-LABEL: define i32 @ham(
; CHECK-SAME: ptr [[CALL12:%.*]]) local_unnamed_addr #[[ATTR0:[0-9]+]] {
; CHECK: [[TMP2:%.*]] = mul nuw nsw <32 x i32> [[TMP1:%.*]], <i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 19595, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767, i32 32767>

; CHECK: [[TMP5:%.*]] = mul nuw <32 x i32> [[TMP4:%.*]], <i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 38470, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097, i32 16762097>

; CHECK: [[TMP8:%.*]] = mul nuw <32 x i32> [[TMP7:%.*]], <i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 7471, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568, i32 16759568>

; COST: Cost Model: Found costs of 0 for: %shufflevector84 = shufflevector <16 x i8> %trunc82, <16 x i8> poison, <32 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison>
bb:
br label %bb48

bb48: ; preds = %bb48, %bb
%phi49 = phi i64 [ 0, %bb ], [ %add86, %bb48 ]
%mul50 = mul i64 %phi49, 3
%getelementptr53 = getelementptr i8, ptr %call12, i64 %mul50
%load54 = load <48 x i8>, ptr %getelementptr53, align 1, !tbaa !10, !alias.scope !18
%shufflevector = shufflevector <48 x i8> %load54, <48 x i8> poison, <16 x i32> <i32 0, i32 3, i32 6, i32 9, i32 12, i32 15, i32 18, i32 21, i32 24, i32 27, i32 30, i32 33, i32 36, i32 39, i32 42, i32 45>
%zext57 = zext <16 x i8> %shufflevector to <16 x i32>
%mul58 = mul nuw nsw <16 x i32> %zext57, splat (i32 19595)
%zext59 = zext <16 x i8> %shufflevector to <16 x i32>
%mul60 = mul nuw nsw <16 x i32> %zext59, splat (i32 38470)
%zext61 = zext <16 x i8> %shufflevector to <16 x i32>
%mul62 = mul nuw nsw <16 x i32> %zext61, splat (i32 7471)
%add63 = add nuw nsw <16 x i32> %mul58, splat (i32 32768)
%add64 = add nuw nsw <16 x i32> %add63, %mul60
%add65 = add nuw nsw <16 x i32> %add64, %mul62
%lshr = lshr <16 x i32> %add65, splat (i32 16)
%trunc66 = trunc nuw <16 x i32> %lshr to <16 x i8>
%mul67 = mul nuw nsw <16 x i32> %zext57, splat (i32 32767)
%mul68 = mul nuw <16 x i32> %zext59, splat (i32 16762097)
%mul69 = mul nuw <16 x i32> %zext61, splat (i32 16759568)
%add70 = add nuw nsw <16 x i32> %mul67, splat (i32 32768)
%add71 = add nuw <16 x i32> %add70, %mul68
%add72 = add <16 x i32> %add71, %mul69
%lshr73 = lshr <16 x i32> %add72, splat (i32 16)
%trunc74 = trunc <16 x i32> %lshr73 to <16 x i8>
%mul75 = mul nuw nsw <16 x i32> %zext57, splat (i32 13282)
%mul76 = mul nuw <16 x i32> %zext59, splat (i32 16744449)
%mul77 = mul nuw nsw <16 x i32> %zext61, splat (i32 19485)
%add78 = add nuw nsw <16 x i32> %mul75, splat (i32 32768)
%add79 = add nuw <16 x i32> %add78, %mul76
%add80 = add nuw <16 x i32> %add79, %mul77
%lshr81 = lshr <16 x i32> %add80, splat (i32 16)
%trunc82 = trunc <16 x i32> %lshr81 to <16 x i8>
%shufflevector83 = shufflevector <16 x i8> %trunc66, <16 x i8> %trunc74, <32 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15, i32 16, i32 17, i32 18, i32 19, i32 20, i32 21, i32 22, i32 23, i32 24, i32 25, i32 26, i32 27, i32 28, i32 29, i32 30, i32 31>
%shufflevector84 = shufflevector <16 x i8> %trunc82, <16 x i8> poison, <32 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison, i32 poison>
store <32 x i8> %shufflevector83, ptr %getelementptr53, align 1, !tbaa !10, !noalias !18
%add86 = add nuw i64 %phi49, 16
%icmp87 = icmp eq i64 %add86, %mul50
br i1 %icmp87, label %bb205, label %bb48

bb205: ; preds = %bb48, %bb
ret i32 0
}

attributes #0 = { nounwind uwtable vscale_range(1,16) "target-cpu"="cortex-a57" "target-features"="+sve"}

!8 = !{!"omnipotent char", !9, i64 0}
!9 = !{!"Simple C/C++ TBAA"}
!10 = !{!8, !8, i64 0}
!12 = !{!"int", !8, i64 0}
!18 = !{!19}
!19 = distinct !{!19, !20}
!20 = distinct !{!20, !"LVerDomain"}
Loading