llvm-project
44 строки · 1021.0 Байт
1; RUN: opt %loadNPMPolly -polly-stmt-granularity=bb "-passes=scop(print<polly-simplify>)" -disable-output -aa-pipeline=basic-aa < %s | FileCheck -match-full-lines %s
2;
3; Remove a store that is overwritten by another store in the same statement.
4;
5; for (int j = 0; j < n; j += 1) {
6; A[0] = 21.0;
7; A[0] = 42.0;
8; }
9;
10define void @overwritten(i32 %n, ptr noalias nonnull %A) {
11entry:
12br label %for
13
14for:
15%j = phi i32 [0, %entry], [%j.inc, %inc]
16%j.cmp = icmp slt i32 %j, %n
17br i1 %j.cmp, label %body, label %exit
18
19body:
20store double 21.0, ptr %A
21store double 42.0, ptr %A
22br label %inc
23
24inc:
25%j.inc = add nuw nsw i32 %j, 1
26br label %for
27
28exit:
29br label %return
30
31return:
32ret void
33}
34
35
36; CHECK: Statistics {
37; CHECK: Overwrites removed: 1
38; CHECK: }
39
40; CHECK: After accesses {
41; CHECK-NEXT: Stmt_body
42; CHECK-NEXT: MustWriteAccess := [Reduction Type: NONE] [Scalar: 0]
43; CHECK-NEXT: [n] -> { Stmt_body[i0] -> MemRef_A[0] };
44; CHECK-NEXT: }
45