reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
; RUN: opt %loadPolly -polly-analyze-read-only-scalars=true  -polly-optree -analyze < %s | FileCheck %s -match-full-lines -check-prefixes=STATS,MODEL
; RUN: opt %loadPolly -polly-analyze-read-only-scalars=false -polly-optree -analyze < %s | FileCheck %s -match-full-lines -check-prefixes=STATS,NOMODEL
;
; Move %val to %bodyB, so %bodyA can be removed (by -polly-simplify)
;
; for (int j = 0; j < n; j += 1) {
; bodyA:
;   double val = arg + 21.0;
;
; bodyB:
;   A[0] = val;
; }
;
define void @func(i32 %n, double* noalias nonnull %A, double %arg) {
entry:
  br label %for

for:
  %j = phi i32 [0, %entry], [%j.inc, %inc]
  %j.cmp = icmp slt i32 %j, %n
  br i1 %j.cmp, label %bodyA, label %exit

    bodyA:
      %val = fadd double %arg, 21.0
      br label %bodyB

    bodyB:
      store double %val, double* %A
      br label %inc

inc:
  %j.inc = add nuw nsw i32 %j, 1
  br label %for

exit:
  br label %return

return:
  ret void
}


; STATS: Statistics {
; STATS:     Instructions copied: 1
; STATS:     Read-only accesses copied: 1
; STATS:     Operand trees forwarded: 1
; STATS:     Statements with forwarded operand trees: 1
; STATS: }

; MODEL:      After statements {
; MODEL-NEXT:     Stmt_bodyA
; MODEL-NEXT:             ReadAccess :=       [Reduction Type: NONE] [Scalar: 1]
; MODEL-NEXT:                 [n] -> { Stmt_bodyA[i0] -> MemRef_arg[] };
; MODEL-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 1]
; MODEL-NEXT:                 [n] -> { Stmt_bodyA[i0] -> MemRef_val[] };
; MODEL-NEXT:             Instructions {
; MODEL-NEXT:                   %val = fadd double %arg, 2.100000e+01
; MODEL-NEXT:                 }
; MODEL-NEXT:     Stmt_bodyB
; MODEL-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
; MODEL-NEXT:                 [n] -> { Stmt_bodyB[i0] -> MemRef_A[0] };
; MODEL-NEXT:             ReadAccess :=       [Reduction Type: NONE] [Scalar: 1]
; MODEL-NEXT:                 [n] -> { Stmt_bodyB[i0] -> MemRef_arg[] };
; MODEL-NEXT:             Instructions {
; MODEL-NEXT:                   %val = fadd double %arg, 2.100000e+01
; MODEL-NEXT:                   store double %val, double* %A
; MODEL-NEXT:                 }
; MODEL-NEXT: }

; NOMODEL:      After statements {
; NOMODEL-NEXT:     Stmt_bodyA
; NOMODEL-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 1]
; NOMODEL-NEXT:                 [n] -> { Stmt_bodyA[i0] -> MemRef_val[] };
; NOMODEL-NEXT:             Instructions {
; NOMODEL-NEXT:                   %val = fadd double %arg, 2.100000e+01
; NOMODEL-NEXT:                 }
; NOMODEL-NEXT:     Stmt_bodyB
; NOMODEL-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
; NOMODEL-NEXT:                 [n] -> { Stmt_bodyB[i0] -> MemRef_A[0] };
; NOMODEL-NEXT:             Instructions {
; NOMODEL-NEXT:                   %val = fadd double %arg, 2.100000e+01
; NOMODEL-NEXT:                   store double %val, double* %A
; NOMODEL-NEXT:                 }
; NOMODEL-NEXT: }