File: swp-reuse-phi-2.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (51 lines) | stat: -rw-r--r-- 2,157 bytes parent folder | download | duplicates (6)
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
; RUN: llc -mtriple=hexagon -enable-pipeliner < %s
; REQUIRES: asserts

; Test that causes an assert when the phi reuse code does not set
; PhiOp2 correctly for use in the next stage. This occurs when the
; number of stages is two or more.

; Function Attrs: nounwind
define void @f0(ptr noalias nocapture %a0) #0 {
b0:
  br i1 undef, label %b1, label %b3

b1:                                               ; preds = %b0
  br label %b2

b2:                                               ; preds = %b2, %b1
  %v1 = phi i32 [ 0, %b1 ], [ %v15, %b2 ]
  %v2 = phi ptr [ %a0, %b1 ], [ %v14, %b2 ]
  %v3 = phi ptr [ undef, %b1 ], [ %v6, %b2 ]
  %v4 = phi <16 x i32> [ undef, %b1 ], [ %v10, %b2 ]
  %v5 = phi <16 x i32> [ undef, %b1 ], [ %v4, %b2 ]
  %v6 = getelementptr inbounds <16 x i32>, ptr %v3, i32 1
  %v7 = load <16 x i32>, ptr %v3, align 64
  %v8 = tail call <16 x i32> @llvm.hexagon.V6.vaddh(<16 x i32> undef, <16 x i32> %v7)
  %v9 = tail call <16 x i32> @llvm.hexagon.V6.valignb(<16 x i32> %v4, <16 x i32> %v5, i32 62)
  %v10 = tail call <16 x i32> @llvm.hexagon.V6.vaddh(<16 x i32> %v8, <16 x i32> undef)
  %v11 = tail call <16 x i32> @llvm.hexagon.V6.valignb(<16 x i32> %v10, <16 x i32> %v4, i32 2)
  %v12 = tail call <16 x i32> @llvm.hexagon.V6.vabsdiffh(<16 x i32> %v9, <16 x i32> %v11)
  %v13 = getelementptr inbounds <16 x i32>, ptr %v2, i32 1
  store <16 x i32> %v12, ptr %v2, align 64
  %v14 = getelementptr inbounds <16 x i32>, ptr %v2, i32 2
  store <16 x i32> zeroinitializer, ptr %v13, align 64
  %v15 = add nsw i32 %v1, 1
  %v16 = icmp slt i32 %v15, undef
  br i1 %v16, label %b2, label %b3

b3:                                               ; preds = %b2, %b0
  ret void
}

; Function Attrs: nounwind readnone
declare <16 x i32> @llvm.hexagon.V6.vaddh(<16 x i32>, <16 x i32>) #1

; Function Attrs: nounwind readnone
declare <16 x i32> @llvm.hexagon.V6.valignb(<16 x i32>, <16 x i32>, i32) #1

; Function Attrs: nounwind readnone
declare <16 x i32> @llvm.hexagon.V6.vabsdiffh(<16 x i32>, <16 x i32>) #1

attributes #0 = { nounwind "target-cpu"="hexagonv60" "target-features"="+hvxv60,+hvx-length64b" }
attributes #1 = { nounwind readnone }