File: swp-tfri.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 (52 lines) | stat: -rw-r--r-- 1,768 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
52
; RUN: llc -mtriple=hexagon -enable-pipeliner -hexagon-initial-cfg-cleanup=0 -stats -o /dev/null < %s 2>&1 -pipeliner-experimental-cg=true -disable-cgp-delete-phis | FileCheck %s --check-prefix=STATS
; REQUIRES: asserts

; Check that we handle the case when a value is first defined in the loop.

; STATS: 1 pipeliner        - Number of loops software pipelined

; Function Attrs: nounwind
define fastcc void @f0() #0 {
b0:
  br i1 undef, label %b7, label %b1

b1:                                               ; preds = %b0
  br i1 undef, label %b2, label %b4

b2:                                               ; preds = %b1
  %v0 = load i16, ptr undef, align 2
  %v1 = load i16, ptr undef, align 2
  br i1 undef, label %b5, label %b3

b3:                                               ; preds = %b5, %b2
  %v2 = phi i16 [ 0, %b2 ], [ %v14, %b5 ]
  br label %b4

b4:                                               ; preds = %b3, %b1
  br i1 undef, label %b7, label %b6

b5:                                               ; preds = %b5, %b2
  %v3 = phi i16 [ %v5, %b5 ], [ undef, %b2 ]
  %v4 = phi i16 [ 0, %b5 ], [ %v1, %b2 ]
  %v5 = phi i16 [ 0, %b5 ], [ %v0, %b2 ]
  %v6 = phi i16 [ %v4, %b5 ], [ undef, %b2 ]
  %v7 = phi i16 [ %v14, %b5 ], [ 0, %b2 ]
  %v8 = phi i32 [ %v15, %b5 ], [ undef, %b2 ]
  %v9 = or i16 0, %v7
  %v10 = lshr i16 %v3, 8
  %v11 = lshr i16 %v6, 8
  %v12 = or i16 %v11, %v9
  %v13 = or i16 0, %v12
  %v14 = or i16 %v10, %v13
  %v15 = add nsw i32 %v8, -32
  %v16 = icmp sgt i32 %v15, 31
  br i1 %v16, label %b5, label %b3

b6:                                               ; preds = %b4
  br label %b7

b7:                                               ; preds = %b6, %b4, %b0
  ret void
}

attributes #0 = { nounwind "target-cpu"="hexagonv55" }