Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon -enable-pipeliner-opt-size < %s | FileCheck %s
      2 
      3 ; Test that we generate the correct names for the phis in the kernel for the
      4 ; incoming values. In this case, the loop contains a phi and has another phi
      5 ; as its loop definition, and the two phis are scheduled in different stages.
      6 ;
      7 ;    vreg5 = phi(x, vreg4) is scheduled in stage 1, cycle 0
      8 ;    vreg4 = phi(y, z) is scheduled in stage 0, cycle 0
      9 
     10 ; CHECK-DAG: :[[REG0:[0-9]+]]{{.*}} = {{.*}},#17
     11 ; CHECK-DAG: loop0(.LBB0_[[LOOP:.]],
     12 ; CHECK: .LBB0_[[LOOP]]:
     13 ; CHECK: r{{[0-9]+}} = sxth(r[[REG0]])
     14 ; CHECK: endloop0
     15 
     16 ; Function Attrs: nounwind optsize
     17 define void @f0() #0 {
     18 b0:
     19   %v0 = getelementptr [8 x i16], [8 x i16]* undef, i32 0, i32 7
     20   %v1 = bitcast i16* %v0 to [8 x i16]*
     21   br label %b2
     22 
     23 b1:                                               ; preds = %b2
     24   unreachable
     25 
     26 b2:                                               ; preds = %b2, %b0
     27   %v2 = phi i32 [ 7, %b0 ], [ %v11, %b2 ]
     28   %v3 = phi i16 [ 17, %b0 ], [ %v7, %b2 ]
     29   %v4 = phi i16 [ 18, %b0 ], [ %v3, %b2 ]
     30   %v5 = sext i16 %v4 to i32
     31   %v6 = getelementptr i16, i16* null, i32 -2
     32   %v7 = load i16, i16* %v6, align 2
     33   %v8 = sext i16 %v7 to i32
     34   %v9 = tail call i32 @llvm.hexagon.A2.subsat(i32 %v5, i32 %v8)
     35   %v10 = trunc i32 %v9 to i16
     36   store i16 %v10, i16* null, align 2
     37   %v11 = add nsw i32 %v2, -1
     38   %v12 = icmp sgt i32 %v11, 1
     39   br i1 %v12, label %b2, label %b1
     40 }
     41 
     42 ; Function Attrs: nounwind readnone
     43 declare i32 @llvm.hexagon.A2.subsat(i32, i32) #1
     44 
     45 attributes #0 = { nounwind optsize "target-cpu"="hexagonv60" }
     46 attributes #1 = { nounwind readnone }
     47