mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-23 13:56:06 +00:00

Summary: We should check if loop size allows us to peel at least one iteration before we do so. Patch by Max Kazantsev! Reviewers: sanjoy, mkuper, efriedma Reviewed By: mkuper Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D30632 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297122 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.2 KiB
LLVM
54 lines
1.2 KiB
LLVM
; RUN: opt < %s -S -loop-unroll -unroll-threshold=4 | FileCheck %s
|
|
|
|
define i32 @invariant_backedge_1(i32 %a, i32 %b) {
|
|
; CHECK-LABEL: @invariant_backedge_1
|
|
; CHECK-NOT: %plus = phi
|
|
; CHECK: loop.peel:
|
|
; CHECK: loop:
|
|
; CHECK: %i = phi
|
|
; CHECK: %sum = phi
|
|
entry:
|
|
br label %loop
|
|
|
|
loop:
|
|
%i = phi i32 [ 0, %entry ], [ %inc, %loop ]
|
|
%sum = phi i32 [ 0, %entry ], [ %incsum, %loop ]
|
|
%plus = phi i32 [ %a, %entry ], [ %b, %loop ]
|
|
|
|
%incsum = add i32 %sum, %plus
|
|
%inc = add i32 %i, 1
|
|
%cmp = icmp slt i32 %i, 1000
|
|
|
|
br i1 %cmp, label %loop, label %exit
|
|
|
|
exit:
|
|
ret i32 %sum
|
|
}
|
|
|
|
; Peeling should fail due to method size.
|
|
define i32 @invariant_backedge_2(i32 %a, i32 %b) {
|
|
; CHECK-LABEL: @invariant_backedge_2
|
|
; CHECK-NOT: loop.peel:
|
|
; CHECK: loop:
|
|
; CHECK: %i = phi
|
|
; CHECK: %sum = phi
|
|
; CHECK: %plus = phi
|
|
entry:
|
|
br label %loop
|
|
|
|
loop:
|
|
%i = phi i32 [ 0, %entry ], [ %inc, %loop ]
|
|
%sum = phi i32 [ 0, %entry ], [ %incsum2, %loop ]
|
|
%plus = phi i32 [ %a, %entry ], [ %b, %loop ]
|
|
|
|
%incsum = add i32 %sum, %plus
|
|
%incsum2 = add i32 %incsum, %plus
|
|
%inc = add i32 %i, 1
|
|
%cmp = icmp slt i32 %i, 1000
|
|
|
|
br i1 %cmp, label %loop, label %exit
|
|
|
|
exit:
|
|
ret i32 %sum
|
|
}
|