File: hwloop-preheader.ll

package info (click to toggle)
llvm-toolchain-3.9 1%3A3.9.1-9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 441,144 kB
  • ctags: 428,836
  • sloc: cpp: 2,546,577; ansic: 538,318; asm: 119,677; objc: 103,316; python: 102,148; sh: 27,847; pascal: 5,626; ml: 5,510; perl: 5,293; lisp: 4,801; makefile: 2,177; xml: 686; cs: 362; php: 212; csh: 117
file content (40 lines) | stat: -rw-r--r-- 1,567 bytes parent folder | download | duplicates (12)
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
; RUN: llc -march=hexagon -mcpu=hexagonv5 -hexagon-hwloop-preheader < %s
; REQUIRES: asserts

; Test that the preheader is added to the parent loop, otherwise
; we generate an invalid hardware loop.

; Function Attrs: nounwind readonly
define void @test(i16 signext %n) #0 {
entry:
  br i1 undef, label %for.cond4.preheader.preheader.split.us, label %for.end22

for.cond4.preheader.preheader.split.us:
  %0 = sext i16 %n to i32
  br label %for.body9.preheader.us

for.body9.us:
  %indvars.iv = phi i32 [ %indvars.iv.next.7, %for.body9.us ], [ 0, %for.body9.preheader.us ]
  %indvars.iv.next.7 = add i32 %indvars.iv, 8
  %lftr.wideiv.7 = trunc i32 %indvars.iv.next.7 to i16
  %exitcond.7 = icmp slt i16 %lftr.wideiv.7, 0
  br i1 %exitcond.7, label %for.body9.us, label %for.body9.us.ur

for.body9.preheader.us:
  %i.030.us.pmt = phi i32 [ %inc21.us.pmt, %for.end.loopexit.us ], [ 0, %for.cond4.preheader.preheader.split.us ]
  br i1 undef, label %for.body9.us, label %for.body9.us.ur

for.body9.us.ur:
  %exitcond.ur.old = icmp eq i16 undef, %n
  br i1 %exitcond.ur.old, label %for.end.loopexit.us, label %for.body9.us.ur

for.end.loopexit.us:
  %inc21.us.pmt = add i32 %i.030.us.pmt, 1
  %exitcond33 = icmp eq i32 %inc21.us.pmt, %0
  br i1 %exitcond33, label %for.end22, label %for.body9.preheader.us

for.end22:
  ret void
}

attributes #0 = { nounwind readonly "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }