[flang][OpenMP] Change clause modifier representation in parser (#116656)
[llvm-project.git] / polly / test / CodeGen / aliasing_struct_element.ll
blob3079e58d7daba2ed4d3d8ca03c796de8473be3f3
1 ; RUN: opt %loadNPMPolly -S -passes=polly-codegen < %s | FileCheck %s
3 ; We should only access (or compute the address of) "the first element" of %S
4 ; as it is a single struct not a struct array. The maximal access to S, thus
5 ; S->B[1023] is for ScalarEvolution an access with offset of 1423, 1023 for the
6 ; index inside the B part of S and 400 to skip the Dummy array in S. Note that
7 ; these numbers are relative to the actual type of &S->B[i] (char*) not to the
8 ; type of S (struct st *) or something else.
10 ; Verify that we do not use the offset 1423 into a non existent S array when we
11 ; compute runtime alias checks but treat it as if it was a char array.
13 ; CHECK: %polly.access.S = getelementptr i8, ptr %S, i64 1424
15 ;    struct st {
16 ;      int Dummy[100];
17 ;      char B[100];
18 ;    };
20 ;    void jd(int *A, struct st *S) {
21 ;      for (int i = 0; i < 1024; i++)
22 ;        A[i] = S->B[i];
23 ;    }
25 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
27 %struct.st = type { [100 x i32], [100 x i8] }
29 define void @jd(ptr %A, ptr %S) {
30 entry:
31   br label %for.cond
33 for.cond:                                         ; preds = %for.inc, %entry
34   %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
35   %exitcond = icmp ne i64 %indvars.iv, 1024
36   br i1 %exitcond, label %for.body, label %for.end
38 for.body:                                         ; preds = %for.cond
39   %arrayidx = getelementptr inbounds %struct.st, ptr %S, i64 0, i32 1, i64 %indvars.iv
40   %tmp = load i8, ptr %arrayidx, align 1
41   %conv = sext i8 %tmp to i32
42   %arrayidx2 = getelementptr inbounds i32, ptr %A, i64 %indvars.iv
43   store i32 %conv, ptr %arrayidx2, align 4
44   br label %for.inc
46 for.inc:                                          ; preds = %for.body
47   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
48   br label %for.cond
50 for.end:                                          ; preds = %for.cond
51   ret void