Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon < %s | FileCheck %s
      2 target triple = "hexagon"
      3 
      4 ; Function Attrs: norecurse nounwind
      5 define void @test(<32 x i32>* nocapture readonly %x, <32 x i32>* nocapture readnone %y, <32 x i32>* nocapture %a, <32 x i32>* nocapture %b) #0 {
      6 entry:
      7 ; CHECK: v0 = vmem(r0+#7):nt
      8   %add.ptr = getelementptr inbounds <32 x i32>, <32 x i32>* %x, i32 7
      9   %0 = load <32 x i32>, <32 x i32>* %add.ptr, align 128, !tbaa !1, !nontemporal !4
     10 
     11 ; CHECK: v1.cur = vmem(r2+#0):nt
     12   %1 = load <32 x i32>, <32 x i32>* %a, align 128, !tbaa !1, !nontemporal !4
     13 
     14 ; CHECK: vmem(r3+#3):nt = v1
     15   %add.ptr2 = getelementptr inbounds <32 x i32>, <32 x i32>* %b, i32 3
     16   store <32 x i32> %1, <32 x i32>* %add.ptr2, align 128, !tbaa !1, !nontemporal !4
     17 
     18 ; CHECK: vmem(r2+#0):nt = v0
     19   store <32 x i32> %0, <32 x i32>* %a, align 128, !tbaa !1, !nontemporal !4
     20   ret void
     21 }
     22 
     23 attributes #0 = { norecurse nounwind "target-cpu"="hexagonv60" "target-features"="+hvxv60,+hvx-length128b" }
     24 
     25 !1 = !{!2, !2, i64 0}
     26 !2 = !{!"omnipotent char", !3, i64 0}
     27 !3 = !{!"Simple C/C++ TBAA"}
     28 !4 = !{i32 1}
     29