File: peel-loop2.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,418,812 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (61 lines) | stat: -rw-r--r-- 1,757 bytes parent folder | download | duplicates (15)
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
53
54
55
56
57
58
59
60
61
; RUN: opt -S -loop-unroll -unroll-force-peel-count=1 -verify-dom-info <%s

; Check if loop composed of several BBs is peeled correctly.

declare void @funcb()
@Comma = external global i8
define void @funca(i8* readnone %b, i8* readnone %e) {
entry:
  %cmp2 = icmp eq i8* %b, %e
  br i1 %cmp2, label %for.end, label %for.body.preheader

for.body.preheader:
  br label %for.body

for.body:
  %b.addr.03 = phi i8* [ %incdec.ptr, %for.inc ], [ %b, %for.body.preheader ]
  %0 = load i8, i8* @Comma
  %tobool = icmp eq i8 %0, 0
  br i1 %tobool, label %for.inc, label %if.then

if.then:
  tail call void @funcb()
  store i8 1, i8* @Comma
  br label %for.inc

for.inc:
  %incdec.ptr = getelementptr inbounds i8, i8* %b.addr.03, i64 1
  %cmp = icmp eq i8* %incdec.ptr, %e
  br i1 %cmp, label %for.end, label %for.body

for.end:
  ret void
}

; CHECK_LABEL: @funca

; Peeled iteration
; CHECK: %[[REG1:[0-9]+]] = load i8, i8* @Comma
; CHECK: %[[REG2:.*]] = icmp eq i8 %[[REG1]], 0
; CHECK: br i1 %[[REG2]], label %{{.*}}, label %[[IFTHEN:.*]]
; CHECK: [[IFTHEN]]:
; CHECK: call void @funcb()
; CHECK: store i8 1, i8* @Comma
; CHECK: br label %[[FORINC]]
; CHECK: [[FORINC]]:
; CHECK: %[[REG3:.*]] = getelementptr inbounds i8, i8* %b, i64 1
; CHECK: %[[REG4:.*]] = icmp eq i8* %[[REG3]], %e
; CHECK: br i1 %[[REG4]]

; main body
; CHECK: %[[REG1b:.*]] = load i8, i8* @Comma
; CHECK: %[[REG2b:.*]] = icmp eq i8 %[[REG1b]], 0
; CHECK: br i1 %[[REG2b]], label %{{.*}}, label %[[IFTHENb:.*]]
; CHECK: [[IFTHENb]]:
; CHECK: call void @funcb()
; CHECK: store i8 1, i8* @Comma
; CHECK: br label %[[FORINCb]]
; CHECK: [[FORINCb]]:
; CHECK: %[[REG3b:.*]] = getelementptr inbounds i8, i8* %b, i64 1
; CHECK: %[[REG4b:.*]] = icmp eq i8* %[[REG3b]], %e
; CHECK: br i1 %[[REG4b]]