Skip to content

Commit

Permalink
AMDGPU/SI: Disable unrolling in the loop vectorizer if the loop is no…
Browse files Browse the repository at this point in the history
…t vectorized.

Reviewers:
  arsenm

Differential Revision:
  http://reviews.llvm.org/D30719

llvm-svn: 297328
  • Loading branch information
Changpeng Fang committed Mar 9, 2017
1 parent 8537d99 commit 1be9b9f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
Expand Up @@ -155,6 +155,10 @@ bool AMDGPUTTIImpl::isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
}

unsigned AMDGPUTTIImpl::getMaxInterleaveFactor(unsigned VF) {
// Disable unrolling if the loop is not vectorized.
if (VF == 1)
return 1;

// Semi-arbitrary large amount.
return 64;
}
Expand Down
2 changes: 2 additions & 0 deletions llvm/test/Transforms/LoopVectorize/AMDGPU/lit.local.cfg
@@ -0,0 +1,2 @@
if not 'AMDGPU' in config.root.targets:
config.unsupported = True
@@ -0,0 +1,28 @@
; RUN: opt -S -mtriple=amdgcn-unknown-amdhsa -mcpu=fiji -loop-vectorize < %s | FileCheck %s


; For AMDGPU, loop unroll in loop vectorizer is disabled when VF==1.
;
; CHECK-LABEL: @small_loop(
; CHECK: store i32
; CHECK-NOT: store i32
; CHECK: ret
define void @small_loop(i32* nocapture %inArray, i32 %size) nounwind {
entry:
%0 = icmp sgt i32 %size, 0
br i1 %0, label %loop, label %exit

loop: ; preds = %entry, %loop
%iv = phi i32 [ %iv1, %loop ], [ 0, %entry ]
%1 = getelementptr inbounds i32, i32* %inArray, i32 %iv
%2 = load i32, i32* %1, align 4
%3 = add nsw i32 %2, 6
store i32 %3, i32* %1, align 4
%iv1 = add i32 %iv, 1
; %lftr.wideiv = trunc i64 %indvars.iv.next to i32
%cond = icmp eq i32 %iv1, %size
br i1 %cond, label %exit, label %loop

exit: ; preds = %loop, %entry
ret void
}

0 comments on commit 1be9b9f

Please sign in to comment.