| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- ; RUN: opt < %s -analyze -basicaa -da | FileCheck %s
- ; ModuleID = 'WeakZeroSrcSIV.bc'
- target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
- target triple = "x86_64-apple-macosx10.6.0"
- ;; for (long unsigned i = 0; i < 30; i++) {
- ;; A[10] = i;
- ;; *B++ = A[2*i + 10];
- define void @weakzerosrc0(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- br label %for.body
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - flow [p<=|<]!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body: ; preds = %entry, %for.body
- %i.02 = phi i64 [ 0, %entry ], [ %inc, %for.body ]
- %B.addr.01 = phi i32* [ %B, %entry ], [ %incdec.ptr, %for.body ]
- %conv = trunc i64 %i.02 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = shl i64 %i.02, 1
- %add = add i64 %mul, 10
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %add
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.01, i64 1
- store i32 %0, i32* %B.addr.01, align 4
- %inc = add i64 %i.02, 1
- %exitcond = icmp ne i64 %inc, 30
- br i1 %exitcond, label %for.body, label %for.end
- for.end: ; preds = %for.body
- ret void
- }
- ;; for (long unsigned i = 0; i < n; i++) {
- ;; A[10] = i;
- ;; *B++ = A[n*i + 10];
- define void @weakzerosrc1(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- %cmp1 = icmp eq i64 %n, 0
- br i1 %cmp1, label %for.end, label %for.body.preheader
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - flow [p<=|<]!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body.preheader: ; preds = %entry
- br label %for.body
- for.body: ; preds = %for.body.preheader, %for.body
- %i.03 = phi i64 [ %inc, %for.body ], [ 0, %for.body.preheader ]
- %B.addr.02 = phi i32* [ %incdec.ptr, %for.body ], [ %B, %for.body.preheader ]
- %conv = trunc i64 %i.03 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = mul i64 %i.03, %n
- %add = add i64 %mul, 10
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %add
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.02, i64 1
- store i32 %0, i32* %B.addr.02, align 4
- %inc = add i64 %i.03, 1
- %exitcond = icmp ne i64 %inc, %n
- br i1 %exitcond, label %for.body, label %for.end.loopexit
- for.end.loopexit: ; preds = %for.body
- br label %for.end
- for.end: ; preds = %for.end.loopexit, %entry
- ret void
- }
- ;; for (long unsigned i = 0; i < 5; i++) {
- ;; A[10] = i;
- ;; *B++ = A[2*i];
- define void @weakzerosrc2(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- br label %for.body
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body: ; preds = %entry, %for.body
- %i.02 = phi i64 [ 0, %entry ], [ %inc, %for.body ]
- %B.addr.01 = phi i32* [ %B, %entry ], [ %incdec.ptr, %for.body ]
- %conv = trunc i64 %i.02 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = shl i64 %i.02, 1
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %mul
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.01, i64 1
- store i32 %0, i32* %B.addr.01, align 4
- %inc = add i64 %i.02, 1
- %exitcond = icmp ne i64 %inc, 5
- br i1 %exitcond, label %for.body, label %for.end
- for.end: ; preds = %for.body
- ret void
- }
- ;; for (long unsigned i = 0; i < 6; i++) {
- ;; A[10] = i;
- ;; *B++ = A[2*i];
- define void @weakzerosrc3(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- br label %for.body
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - flow [=>p|<]!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body: ; preds = %entry, %for.body
- %i.02 = phi i64 [ 0, %entry ], [ %inc, %for.body ]
- %B.addr.01 = phi i32* [ %B, %entry ], [ %incdec.ptr, %for.body ]
- %conv = trunc i64 %i.02 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = shl i64 %i.02, 1
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %mul
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.01, i64 1
- store i32 %0, i32* %B.addr.01, align 4
- %inc = add i64 %i.02, 1
- %exitcond = icmp ne i64 %inc, 6
- br i1 %exitcond, label %for.body, label %for.end
- for.end: ; preds = %for.body
- ret void
- }
- ;; for (long unsigned i = 0; i < 7; i++) {
- ;; A[10] = i;
- ;; *B++ = A[2*i];
- define void @weakzerosrc4(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- br label %for.body
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - flow [*|<]!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body: ; preds = %entry, %for.body
- %i.02 = phi i64 [ 0, %entry ], [ %inc, %for.body ]
- %B.addr.01 = phi i32* [ %B, %entry ], [ %incdec.ptr, %for.body ]
- %conv = trunc i64 %i.02 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = shl i64 %i.02, 1
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %mul
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.01, i64 1
- store i32 %0, i32* %B.addr.01, align 4
- %inc = add i64 %i.02, 1
- %exitcond = icmp ne i64 %inc, 7
- br i1 %exitcond, label %for.body, label %for.end
- for.end: ; preds = %for.body
- ret void
- }
- ;; for (long unsigned i = 0; i < 7; i++) {
- ;; A[-10] = i;
- ;; *B++ = A[2*i];
- define void @weakzerosrc5(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- br label %for.body
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body: ; preds = %entry, %for.body
- %i.02 = phi i64 [ 0, %entry ], [ %inc, %for.body ]
- %B.addr.01 = phi i32* [ %B, %entry ], [ %incdec.ptr, %for.body ]
- %conv = trunc i64 %i.02 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 -10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = shl i64 %i.02, 1
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %mul
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.01, i64 1
- store i32 %0, i32* %B.addr.01, align 4
- %inc = add i64 %i.02, 1
- %exitcond = icmp ne i64 %inc, 7
- br i1 %exitcond, label %for.body, label %for.end
- for.end: ; preds = %for.body
- ret void
- }
- ;; for (long unsigned i = 0; i < n; i++) {
- ;; A[10] = i;
- ;; *B++ = A[3*i];
- define void @weakzerosrc6(i32* %A, i32* %B, i64 %n) nounwind uwtable ssp {
- entry:
- %cmp1 = icmp eq i64 %n, 0
- br i1 %cmp1, label %for.end, label %for.body.preheader
- ; CHECK: da analyze - consistent output [S]!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- ; CHECK: da analyze - confused!
- ; CHECK: da analyze - none!
- for.body.preheader: ; preds = %entry
- br label %for.body
- for.body: ; preds = %for.body.preheader, %for.body
- %i.03 = phi i64 [ %inc, %for.body ], [ 0, %for.body.preheader ]
- %B.addr.02 = phi i32* [ %incdec.ptr, %for.body ], [ %B, %for.body.preheader ]
- %conv = trunc i64 %i.03 to i32
- %arrayidx = getelementptr inbounds i32, i32* %A, i64 10
- store i32 %conv, i32* %arrayidx, align 4
- %mul = mul i64 %i.03, 3
- %arrayidx1 = getelementptr inbounds i32, i32* %A, i64 %mul
- %0 = load i32, i32* %arrayidx1, align 4
- %incdec.ptr = getelementptr inbounds i32, i32* %B.addr.02, i64 1
- store i32 %0, i32* %B.addr.02, align 4
- %inc = add i64 %i.03, 1
- %exitcond = icmp ne i64 %inc, %n
- br i1 %exitcond, label %for.body, label %for.end.loopexit
- for.end.loopexit: ; preds = %for.body
- br label %for.end
- for.end: ; preds = %for.end.loopexit, %entry
- ret void
- }
|