Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon < %s | FileCheck %s
      2 
      3 ; Test that we generate the correct offsets for loads in the prolog
      4 ; after removing dependences on a post-increment instructions of the
      5 ; base register.
      6 
      7 ; CHECK: memh([[REG0:(r[0-9]+)]]+#0)
      8 ; CHECK: memh([[REG0]]+#2)
      9 ; CHECK: loop0
     10 
     11 ; Function Attrs: nounwind readnone
     12 declare i32 @llvm.hexagon.A2.sath(i32) #1
     13 
     14 ; Function Attrs: nounwind readnone
     15 declare i32 @llvm.hexagon.S2.asr.r.r.sat(i32, i32) #1
     16 
     17 ; Function Attrs: nounwind readnone
     18 declare i32 @llvm.hexagon.A2.asrh(i32) #1
     19 
     20 ; Function Attrs: nounwind readnone
     21 declare i32 @llvm.hexagon.A2.addsat(i32, i32) #1
     22 
     23 ; Function Attrs: nounwind readnone
     24 declare i32 @llvm.hexagon.M2.mpy.sat.ll.s1(i32, i32) #1
     25 
     26 define void @f0() #0 align 2 {
     27 b0:
     28   br label %b1
     29 
     30 b1:                                               ; preds = %b0
     31   br label %b2
     32 
     33 b2:                                               ; preds = %b2, %b1
     34   %v0 = phi i16* [ undef, %b1 ], [ %v14, %b2 ]
     35   %v1 = phi i32 [ 0, %b1 ], [ %v12, %b2 ]
     36   %v2 = load i16, i16* %v0, align 2
     37   %v3 = sext i16 %v2 to i32
     38   %v4 = call i32 @llvm.hexagon.M2.mpy.sat.ll.s1(i32 undef, i32 %v3)
     39   %v5 = call i32 @llvm.hexagon.S2.asr.r.r.sat(i32 %v4, i32 undef)
     40   %v6 = call i32 @llvm.hexagon.A2.addsat(i32 %v5, i32 32768)
     41   %v7 = call i32 @llvm.hexagon.A2.asrh(i32 %v6)
     42   %v8 = call i32 @llvm.hexagon.S2.asr.r.r.sat(i32 %v7, i32 undef)
     43   %v9 = call i32 @llvm.hexagon.A2.sath(i32 %v8)
     44   %v10 = trunc i32 %v9 to i16
     45   store i16 %v10, i16* null, align 2
     46   %v11 = trunc i32 %v7 to i16
     47   store i16 %v11, i16* %v0, align 2
     48   %v12 = add nsw i32 %v1, 1
     49   %v13 = icmp slt i32 %v12, undef
     50   %v14 = getelementptr i16, i16* %v0, i32 1
     51   br i1 %v13, label %b2, label %b3
     52 
     53 b3:                                               ; preds = %b2
     54   unreachable
     55 
     56 b4:                                               ; No predecessors!
     57   unreachable
     58 }
     59 
     60 attributes #0 = { nounwind "target-cpu"="hexagonv55" }
     61 attributes #1 = { nounwind readnone }
     62