| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- ; RUN: opt -S -basicaa -licm < %s | FileCheck %s
- target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
- target triple = "x86_64-unknown-linux-gnu"
- ; This test represents the following function:
- ; void test1(int * __restrict__ a, int * __restrict__ b, int &c, int n) {
- ; for (int i = 0; i < n; ++i)
- ; if (a[i] > 0)
- ; a[i] = c*b[i];
- ; }
- ; and we want to hoist the load of %c out of the loop. This can be done only
- ; because the dereferenceable attribute is on %c.
- ; CHECK-LABEL: @test1
- ; CHECK: load i32, i32* %c, align 4
- ; CHECK: for.body:
- define void @test1(i32* noalias nocapture %a, i32* noalias nocapture readonly %b, i32* nocapture readonly nonnull dereferenceable(4) %c, i32 %n) #0 {
- entry:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- ; This is the same as @test1, but without the dereferenceable attribute on %c.
- ; Without this attribute, we should not hoist the load of %c.
- ; CHECK-LABEL: @test2
- ; CHECK: if.then:
- ; CHECK: load i32, i32* %c, align 4
- define void @test2(i32* noalias nocapture %a, i32* noalias nocapture readonly %b, i32* nocapture readonly nonnull %c, i32 %n) #0 {
- entry:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- ; This test represents the following function:
- ; void test3(int * restrict a, int * restrict b, int c[static 3], int n) {
- ; for (int i = 0; i < n; ++i)
- ; if (a[i] > 0)
- ; a[i] = c[2]*b[i];
- ; }
- ; and we want to hoist the load of c[2] out of the loop. This can be done only
- ; because the dereferenceable attribute is on %c.
- ; CHECK-LABEL: @test3
- ; CHECK: load i32, i32* %c2, align 4
- ; CHECK: for.body:
- define void @test3(i32* noalias nocapture %a, i32* noalias nocapture readonly %b, i32* nocapture readonly dereferenceable(12) %c, i32 %n) #0 {
- entry:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %c2 = getelementptr inbounds i32, i32* %c, i64 2
- %1 = load i32, i32* %c2, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- ; This is the same as @test3, but with a dereferenceable attribute on %c with a
- ; size too small to cover c[2] (and so we should not hoist it).
- ; CHECK-LABEL: @test4
- ; CHECK: if.then:
- ; CHECK: load i32, i32* %c2, align 4
- define void @test4(i32* noalias nocapture %a, i32* noalias nocapture readonly %b, i32* nocapture readonly dereferenceable(11) %c, i32 %n) #0 {
- entry:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %c2 = getelementptr inbounds i32, i32* %c, i64 2
- %1 = load i32, i32* %c2, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- ; This test represents the following function:
- ; void test1(int * __restrict__ a, int *b, int &c, int n) {
- ; if (c != null)
- ; for (int i = 0; i < n; ++i)
- ; if (a[i] > 0)
- ; a[i] = c*b[i];
- ; }
- ; and we want to hoist the load of %c out of the loop. This can be done only
- ; because the dereferenceable_or_null attribute is on %c and there is a null
- ; check on %c.
- ; CHECK-LABEL: @test5
- ; CHECK: load i32, i32* %c, align 4
- ; CHECK: for.body:
- define void @test5(i32* noalias %a, i32* %b, i32* dereferenceable_or_null(4) %c, i32 %n) #0 {
- entry:
- %not_null = icmp ne i32* %c, null
- br i1 %not_null, label %not.null, label %for.end
- not.null:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %not.null, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %not.null ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry, %not.null
- ret void
- }
- ; This is the same as @test5, but without the null check on %c.
- ; Without this check, we should not hoist the load of %c.
- ; This test case has an icmp on c but the use of this comparison is
- ; not a branch.
- ; CHECK-LABEL: @test6
- ; CHECK: if.then:
- ; CHECK: load i32, i32* %c, align 4
- define i1 @test6(i32* noalias %a, i32* %b, i32* dereferenceable_or_null(4) %c, i32 %n) #0 {
- entry:
- %not_null = icmp ne i32* %c, null
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret i1 %not_null
- }
- ; This test represents the following function:
- ; void test1(int * __restrict__ a, int *b, int **cptr, int n) {
- ; c = *cptr;
- ; for (int i = 0; i < n; ++i)
- ; if (a[i] > 0)
- ; a[i] = (*c)*b[i];
- ; }
- ; and we want to hoist the load of %c out of the loop. This can be done only
- ; because the dereferenceable meatdata on the c = *cptr load.
- ; CHECK-LABEL: @test7
- ; CHECK: load i32, i32* %c, align 4
- ; CHECK: for.body:
- define void @test7(i32* noalias %a, i32* %b, i32** %cptr, i32 %n) #0 {
- entry:
- %c = load i32*, i32** %cptr, !dereferenceable !0
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- ; This test represents the following function:
- ; void test1(int * __restrict__ a, int *b, int **cptr, int n) {
- ; c = *cptr;
- ; if (c != null)
- ; for (int i = 0; i < n; ++i)
- ; if (a[i] > 0)
- ; a[i] = (*c)*b[i];
- ; }
- ; and we want to hoist the load of %c out of the loop. This can be done only
- ; because the dereferenceable_or_null meatdata on the c = *cptr load and there
- ; is a null check on %c.
- ; CHECK-LABEL: @test8
- ; CHECK: load i32, i32* %c, align 4
- ; CHECK: for.body:
- define void @test8(i32* noalias %a, i32* %b, i32** %cptr, i32 %n) #0 {
- entry:
- %c = load i32*, i32** %cptr, !dereferenceable_or_null !0
- %not_null = icmp ne i32* %c, null
- br i1 %not_null, label %not.null, label %for.end
- not.null:
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %not.null, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %not.null ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry, %not.null
- ret void
- }
- ; This is the same as @test8, but without the null check on %c.
- ; Without this check, we should not hoist the load of %c.
- ; CHECK-LABEL: @test9
- ; CHECK: if.then:
- ; CHECK: load i32, i32* %c, align 4
- define void @test9(i32* noalias %a, i32* %b, i32** %cptr, i32 %n) #0 {
- entry:
- %c = load i32*, i32** %cptr, !dereferenceable_or_null !0
- %cmp11 = icmp sgt i32 %n, 0
- br i1 %cmp11, label %for.body, label %for.end
- for.body: ; preds = %entry, %for.inc
- %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
- %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
- %0 = load i32, i32* %arrayidx, align 4
- %cmp1 = icmp sgt i32 %0, 0
- br i1 %cmp1, label %if.then, label %for.inc
- if.then: ; preds = %for.body
- %1 = load i32, i32* %c, align 4
- %arrayidx3 = getelementptr inbounds i32, i32* %b, i64 %indvars.iv
- %2 = load i32, i32* %arrayidx3, align 4
- %mul = mul nsw i32 %2, %1
- store i32 %mul, i32* %arrayidx, align 4
- br label %for.inc
- for.inc: ; preds = %for.body, %if.then
- %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
- %lftr.wideiv = trunc i64 %indvars.iv.next to i32
- %exitcond = icmp eq i32 %lftr.wideiv, %n
- br i1 %exitcond, label %for.end, label %for.body
- for.end: ; preds = %for.inc, %entry
- ret void
- }
- attributes #0 = { nounwind uwtable }
- !0 = !{i64 4}
|