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
; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-scops -analyze < %s | FileCheck %s

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

; Verify that we can look through a bitcast when delinearizing multi-dimensional
; arrays.

; CHECK: Stmt_bb7[i0, i1] -> MemRef_B[i0, i1]
; CHECK: Stmt_bb7[i0, i1] -> MemRef_B[i0, i1]
; CHECK: Stmt_bb17[i0] -> MemRef_B[i0, 100]

define void @kernel(float* %A, [101 x float]* %B, [101 x float]* %C, float* %D) {
bb:
  br label %bb4

bb4:                                              ; preds = %bb21, %bb
  %indvars.iv1 = phi i64 [ %indvars.iv.next2, %bb21 ], [ 0, %bb ]
  %exitcond3 = icmp eq i64 %indvars.iv1, 100
  br i1 %exitcond3, label %bb22, label %bb5

bb5:                                              ; preds = %bb4
  br label %bb6

bb6:                                              ; preds = %bb16, %bb5
  %indvars.iv = phi i64 [ %indvars.iv.next, %bb16 ], [ 0, %bb5 ]
  %exitcond = icmp eq i64 %indvars.iv, 100
  br i1 %exitcond, label %bb17, label %bb7

bb7:                                              ; preds = %bb6
  %tmp = getelementptr inbounds float, float* %D, i64 %indvars.iv
  %tmp8 = load float, float* %tmp, align 4
  %tmp9 = getelementptr inbounds [101 x float], [101 x float]* %B, i64 %indvars.iv1, i64 %indvars.iv
  %tmp10 = load float, float* %tmp9, align 4
  %tmp11 = fmul float %tmp8, %tmp10
  %tmp12 = getelementptr inbounds [101 x float], [101 x float]* %C, i64 %indvars.iv1, i64 %indvars.iv
  store float %tmp11, float* %tmp12, align 4
  %tmp13 = getelementptr inbounds float, float* %A, i64 %indvars.iv
  %0 = bitcast float* %tmp13 to i32*
  %tmp141 = load i32, i32* %0, align 4
  %tmp15 = getelementptr inbounds [101 x float], [101 x float]* %B, i64 %indvars.iv1, i64 %indvars.iv
  %1 = bitcast float* %tmp15 to i32*
  store i32 %tmp141, i32* %1, align 4
  br label %bb16

bb16:                                             ; preds = %bb7
  %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
  br label %bb6

bb17:                                             ; preds = %bb6
  %tmp18 = trunc i64 %indvars.iv1 to i32
  %tmp19 = sitofp i32 %tmp18 to float
  %tmp20 = getelementptr inbounds [101 x float], [101 x float]* %B, i64 %indvars.iv1, i64 100
  store float %tmp19, float* %tmp20, align 4
  br label %bb21

bb21:                                             ; preds = %bb17
  %indvars.iv.next2 = add nuw nsw i64 %indvars.iv1, 1
  br label %bb4

bb22:                                             ; preds = %bb4
  ret void
}