2019-06-28 15:38:16 +08:00
|
|
|
; RUN: opt -hardware-loops -force-hardware-loops=true -hardware-loop-decrement=1 -hardware-loop-counter-bitwidth=32 -force-hardware-loop-guard=true -S %s -o - | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-EXIT
|
|
|
|
; RUN: opt -hardware-loops -force-hardware-loops=true -hardware-loop-decrement=1 -hardware-loop-counter-bitwidth=32 -force-hardware-loop-guard=true -force-hardware-loop-phi=true -S %s -o - | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-LATCH
|
|
|
|
; RUN: opt -hardware-loops -force-hardware-loops=true -hardware-loop-decrement=1 -hardware-loop-counter-bitwidth=32 -force-hardware-loop-guard=false -S %s -o - | FileCheck %s --check-prefix=NO-GUARD
|
|
|
|
|
|
|
|
; NO-GUARD-NOT: @llvm.test.set.loop.iterations
|
|
|
|
|
|
|
|
; CHECK-LABEL: test1
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: [[CMP:%[^ ]+]] = icmp ugt i32 %N, 2
|
|
|
|
; CHECK: [[MAX:%[^ ]+]] = select i1 [[CMP]], i32 %N, i32 2
|
|
|
|
; CHECK: [[COUNT:%[^ ]+]] = add i32 [[MAX]], -1
|
|
|
|
; CHECK: br i1 %t1, label %do.body.preheader
|
|
|
|
; CHECK: do.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 [[COUNT]])
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32 [[COUNT]])
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %do.body
|
|
|
|
define void @test1(i1 zeroext %t1, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
br i1 %t1, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body: ; preds = %do.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr1, %do.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %inc, %do.body ], [ 1, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr1 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add nuw i32 %i.0, 1
|
|
|
|
%cmp = icmp ult i32 %inc, %N
|
|
|
|
br i1 %cmp, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test2
|
|
|
|
; CHECK-NOT: call i1 @llvm.test.set.loop.iterations
|
|
|
|
; CHECK-NOT: call void @llvm.set.loop.iterations
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-NOT: call i32 @llvm.start.loop.iterations
|
2019-06-28 15:38:16 +08:00
|
|
|
define void @test2(i1 zeroext %t1, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
br i1 %t1, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body: ; preds = %do.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr1, %do.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %add, %do.body ], [ 1, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr1 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%add = add i32 %i.0, 2
|
|
|
|
%cmp = icmp ult i32 %add, %N
|
|
|
|
br i1 %cmp, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test3
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: [[CMP:%[^ ]+]] = icmp ugt i32 %N, 1
|
|
|
|
; CHECK: [[COUNT:%[^ ]+]] = select i1 [[CMP]], i32 %N, i32 1
|
|
|
|
; CHECK: br i1 %brmerge.demorgan, label %do.body.preheader
|
|
|
|
; CHECK: do.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 [[COUNT]])
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32 [[COUNT]])
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %do.body
|
|
|
|
define void @test3(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
br i1 %brmerge.demorgan, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body: ; preds = %do.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr3, %do.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %inc, %do.body ], [ 0, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add nuw i32 %i.0, 1
|
|
|
|
%cmp = icmp ult i32 %inc, %N
|
|
|
|
br i1 %cmp, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test4
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK-LATCH: br i1 %brmerge.demorgan, label %while.cond
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-LATCH-NOT: @llvm{{.*}}loop.iterations
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK-EXIT: br i1 %brmerge.demorgan, label %while.cond.preheader
|
|
|
|
; CHECK-EXIT: while.cond.preheader:
|
|
|
|
; CHECK-EXIT: [[COUNT:%[^ ]+]] = add i32 %N, 1
|
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 [[COUNT]])
|
|
|
|
; CHECK-EXIT: br label %while.cond
|
|
|
|
define void @test4(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
br i1 %brmerge.demorgan, label %while.cond, label %if.end
|
|
|
|
|
|
|
|
while.cond: ; preds = %while.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %while.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr3, %while.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %inc, %while.body ], [ 0, %entry ]
|
|
|
|
%exitcond = icmp eq i32 %i.0, %N
|
|
|
|
br i1 %exitcond, label %if.end, label %while.body
|
|
|
|
|
|
|
|
while.body: ; preds = %while.cond
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add i32 %i.0, 1
|
|
|
|
br label %while.cond
|
|
|
|
|
|
|
|
if.end: ; preds = %while.cond, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test5
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br i1 %or.cond, label %while.body.preheader
|
|
|
|
; CHECK: while.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32 %N)
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %while.body
|
|
|
|
define void @test5(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
%cmp6 = icmp ne i32 %N, 0
|
|
|
|
%or.cond = and i1 %brmerge.demorgan, %cmp6
|
|
|
|
br i1 %or.cond, label %while.body, label %if.end
|
|
|
|
|
|
|
|
while.body: ; preds = %while.body, %entry
|
|
|
|
%i.09 = phi i32 [ %inc, %while.body ], [ 0, %entry ]
|
|
|
|
%a.addr.08 = phi i32* [ %incdec.ptr3, %while.body ], [ %a, %entry ]
|
|
|
|
%b.addr.07 = phi i32* [ %incdec.ptr, %while.body ], [ %b, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.07, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.07, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.08, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.08, align 4
|
|
|
|
%inc = add nuw i32 %i.09, 1
|
|
|
|
%exitcond = icmp eq i32 %inc, %N
|
|
|
|
br i1 %exitcond, label %if.end, label %while.body
|
|
|
|
|
|
|
|
if.end: ; preds = %while.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test6
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br i1 %brmerge.demorgan, label %while.preheader
|
|
|
|
; CHECK: while.preheader:
|
|
|
|
; CHECK: [[TEST:%[^ ]+]] = call i1 @llvm.test.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK: br i1 [[TEST]], label %while.body.preheader, label %if.end
|
|
|
|
; CHECK: while.body.preheader:
|
|
|
|
; CHECK: br label %while.body
|
|
|
|
define void @test6(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
br i1 %brmerge.demorgan, label %while.preheader, label %if.end
|
|
|
|
|
|
|
|
while.preheader: ; preds = %entry
|
|
|
|
%cmp = icmp ne i32 %N, 0
|
|
|
|
br i1 %cmp, label %while.body, label %if.end
|
|
|
|
|
|
|
|
while.body: ; preds = %while.body, %while.preheader
|
|
|
|
%i.09 = phi i32 [ %inc, %while.body ], [ 0, %while.preheader ]
|
|
|
|
%a.addr.08 = phi i32* [ %incdec.ptr3, %while.body ], [ %a, %while.preheader ]
|
|
|
|
%b.addr.07 = phi i32* [ %incdec.ptr, %while.body ], [ %b, %while.preheader ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.07, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.07, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.08, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.08, align 4
|
|
|
|
%inc = add nuw i32 %i.09, 1
|
|
|
|
%exitcond = icmp eq i32 %inc, %N
|
|
|
|
br i1 %exitcond, label %if.end, label %while.body
|
|
|
|
|
|
|
|
if.end: ; preds = %while.body, %while.preheader, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test7
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br i1 %brmerge.demorgan, label %while.preheader
|
|
|
|
; CHECK: while.preheader:
|
|
|
|
; CHECK: [[TEST:%[^ ]+]] = call i1 @llvm.test.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK: br i1 [[TEST]], label %while.body.preheader, label %if.end
|
|
|
|
; CHECK: while.body.preheader:
|
|
|
|
; CHECK: br label %while.body
|
|
|
|
define void @test7(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
br i1 %brmerge.demorgan, label %while.preheader, label %if.end
|
|
|
|
|
|
|
|
while.preheader: ; preds = %entry
|
|
|
|
%cmp = icmp eq i32 %N, 0
|
|
|
|
br i1 %cmp, label %if.end, label %while.body
|
|
|
|
|
|
|
|
while.body: ; preds = %while.body, %while.preheader
|
|
|
|
%i.09 = phi i32 [ %inc, %while.body ], [ 0, %while.preheader ]
|
|
|
|
%a.addr.08 = phi i32* [ %incdec.ptr3, %while.body ], [ %a, %while.preheader ]
|
|
|
|
%b.addr.07 = phi i32* [ %incdec.ptr, %while.body ], [ %b, %while.preheader ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.07, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.07, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.08, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.08, align 4
|
|
|
|
%inc = add nuw i32 %i.09, 1
|
|
|
|
%exitcond = icmp eq i32 %inc, %N
|
|
|
|
br i1 %exitcond, label %if.end, label %while.body
|
|
|
|
|
|
|
|
if.end: ; preds = %while.body, %while.preheader, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; TODO: Can we rearrange the conditional blocks so that we can use the test form?
|
|
|
|
; CHECK-LABEL: test8
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: [[CMP:%[^ ]+]] = icmp ne i32 %N, 0
|
|
|
|
; CHECK: br i1 [[CMP]], label %while.preheader
|
|
|
|
; CHECK: while.preheader:
|
|
|
|
; CHECK: br i1 %brmerge.demorgan, label %while.body.preheader
|
|
|
|
; CHECK: while.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32 %N)
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %while.body
|
|
|
|
define void @test8(i1 zeroext %t1, i1 zeroext %t2, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%cmp = icmp ne i32 %N, 0
|
|
|
|
br i1 %cmp, label %while.preheader, label %if.end
|
|
|
|
|
|
|
|
while.preheader: ; preds = %entry
|
|
|
|
%brmerge.demorgan = and i1 %t1, %t2
|
|
|
|
br i1 %brmerge.demorgan, label %while.body, label %if.end
|
|
|
|
|
|
|
|
while.body: ; preds = %while.body, %while.preheader
|
|
|
|
%i.09 = phi i32 [ %inc, %while.body ], [ 0, %while.preheader ]
|
|
|
|
%a.addr.08 = phi i32* [ %incdec.ptr3, %while.body ], [ %a, %while.preheader ]
|
|
|
|
%b.addr.07 = phi i32* [ %incdec.ptr, %while.body ], [ %b, %while.preheader ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.07, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.07, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.08, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.08, align 4
|
|
|
|
%inc = add nuw i32 %i.09, 1
|
|
|
|
%exitcond = icmp eq i32 %inc, %N
|
|
|
|
br i1 %exitcond, label %if.end, label %while.body
|
|
|
|
|
|
|
|
if.end: ; preds = %while.body, %while.preheader, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test9
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br i1 %brmerge.demorgan, label %do.body.preheader
|
|
|
|
; CHECK: do.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32 %N)
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %do.body
|
|
|
|
define void @test9(i1 zeroext %t1, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%cmp = icmp ne i32 %N, 0
|
|
|
|
%brmerge.demorgan = and i1 %t1, %cmp
|
|
|
|
br i1 %brmerge.demorgan, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body: ; preds = %do.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr3, %do.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %inc, %do.body ], [ 0, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add nuw i32 %i.0, 1
|
|
|
|
%cmp.1 = icmp ult i32 %inc, %N
|
|
|
|
br i1 %cmp.1, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test10
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br i1 %cmp.1, label %do.body.preheader
|
|
|
|
; CHECK: do.body.preheader:
|
[ARM] Alter t2DoLoopStart to define lr
This changes the definition of t2DoLoopStart from
t2DoLoopStart rGPR
to
GPRlr = t2DoLoopStart rGPR
This will hopefully mean that low overhead loops are more tied together,
and we can more reliably generate loops without reverting or being at
the whims of the register allocator.
This is a fairly simple change in itself, but leads to a number of other
required alterations.
- The hardware loop pass, if UsePhi is set, now generates loops of the
form:
%start = llvm.start.loop.iterations(%N)
loop:
%p = phi [%start], [%dec]
%dec = llvm.loop.decrement.reg(%p, 1)
%c = icmp ne %dec, 0
br %c, loop, exit
- For this a new llvm.start.loop.iterations intrinsic was added, identical
to llvm.set.loop.iterations but produces a value as seen above, gluing
the loop together more through def-use chains.
- This new instrinsic conceptually produces the same output as input,
which is taught to SCEV so that the checks in MVETailPredication are not
affected.
- Some minor changes are needed to the ARMLowOverheadLoop pass, but it has
been left mostly as before. We should now more reliably be able to tell
that the t2DoLoopStart is correct without having to prove it, but
t2WhileLoopStart and tail-predicated loops will remain the same.
- And all the tests have been updated. There are a lot of them!
This patch on it's own might cause more trouble that it helps, with more
tail-predicated loops being reverted, but some additional patches can
hopefully improve upon that to get to something that is better overall.
Differential Revision: https://reviews.llvm.org/D89881
2020-11-10 23:57:58 +08:00
|
|
|
; CHECK-EXIT: call void @llvm.set.loop.iterations.i32(i32
|
|
|
|
; CHECK-LATCH: call i32 @llvm.start.loop.iterations.i32(i32
|
2019-06-28 15:38:16 +08:00
|
|
|
; CHECK: br label %do.body
|
|
|
|
define void @test10(i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
%cmp = icmp ne i32 %N, 0
|
|
|
|
%sub = sub i32 %N, 1
|
|
|
|
%be = select i1 %cmp, i32 0, i32 %sub
|
|
|
|
%cmp.1 = icmp ne i32 %be, 0
|
|
|
|
br i1 %cmp.1, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body: ; preds = %do.body, %entry
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %entry ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr3, %do.body ], [ %a, %entry ]
|
|
|
|
%i.0 = phi i32 [ %inc, %do.body ], [ 0, %entry ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add nuw i32 %i.0, 1
|
|
|
|
%cmp.2 = icmp ult i32 %inc, %N
|
|
|
|
br i1 %cmp.2, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test11
|
|
|
|
; CHECK: entry:
|
|
|
|
; CHECK: br label %do.body.preheader
|
|
|
|
; CHECK: do.body.preheader:
|
|
|
|
; CHECK: [[TEST:%[^ ]+]] = call i1 @llvm.test.set.loop.iterations.i32(i32 %N)
|
|
|
|
; CHECK: br i1 [[TEST]], label %do.body.preheader1, label %if.end
|
|
|
|
; CHECK: do.body.preheader1:
|
|
|
|
; CHECK: br label %do.body
|
|
|
|
define void @test11(i1 zeroext %t1, i32* nocapture %a, i32* nocapture readonly %b, i32 %N) {
|
|
|
|
entry:
|
|
|
|
br label %do.body.preheader
|
|
|
|
|
|
|
|
do.body.preheader:
|
|
|
|
%cmp = icmp ne i32 %N, 0
|
|
|
|
br i1 %cmp, label %do.body, label %if.end
|
|
|
|
|
|
|
|
do.body:
|
|
|
|
%b.addr.0 = phi i32* [ %incdec.ptr, %do.body ], [ %b, %do.body.preheader ]
|
|
|
|
%a.addr.0 = phi i32* [ %incdec.ptr3, %do.body ], [ %a, %do.body.preheader ]
|
|
|
|
%i.0 = phi i32 [ %inc, %do.body ], [ 0, %do.body.preheader ]
|
|
|
|
%incdec.ptr = getelementptr inbounds i32, i32* %b.addr.0, i32 1
|
|
|
|
%tmp = load i32, i32* %b.addr.0, align 4
|
|
|
|
%incdec.ptr3 = getelementptr inbounds i32, i32* %a.addr.0, i32 1
|
|
|
|
store i32 %tmp, i32* %a.addr.0, align 4
|
|
|
|
%inc = add nuw i32 %i.0, 1
|
|
|
|
%cmp.1 = icmp ult i32 %inc, %N
|
|
|
|
br i1 %cmp.1, label %do.body, label %if.end
|
|
|
|
|
|
|
|
if.end: ; preds = %do.body, %entry
|
|
|
|
ret void
|
|
|
|
}
|