File: 2007-07-12-ExitDomInfo.ll

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (46 lines) | stat: -rw-r--r-- 1,494 bytes parent folder | download | duplicates (4)
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
; RUN: opt < %s -loop-unswitch -instcombine -disable-output
; RUN: opt < %s -loop-unswitch -enable-mssa-loop-dependency=true -verify-memoryssa -instcombine -disable-output

@str3 = external constant [3 x i8]		; <[3 x i8]*> [#uses=1]

define i32 @stringSearch_Clib(i32 %count) {
entry:
	%ttmp25 = icmp sgt i32 %count, 0		; <i1> [#uses=1]
	br i1 %ttmp25, label %bb36.preheader, label %bb44

bb36.preheader:		; preds = %entry
	%ttmp33 = icmp slt i32 0, 250		; <i1> [#uses=1]
	br label %bb36.outer

bb36.outer:		; preds = %bb41, %bb36.preheader
	br i1 %ttmp33, label %bb.nph, label %bb41

bb.nph:		; preds = %bb36.outer
	%ttmp8 = icmp eq i8* null, null		; <i1> [#uses=1]
	%ttmp6 = icmp eq i8* null, null		; <i1> [#uses=1]
	%tmp31 = call i32 @strcspn( i8* null, i8* getelementptr ([3 x i8], [3 x i8]* @str3, i64 0, i64 0) )		; <i32> [#uses=1]
	br i1 %ttmp8, label %cond_next, label %cond_true

cond_true:		; preds = %bb.nph
	ret i32 0

cond_next:		; preds = %bb.nph
	br i1 %ttmp6, label %cond_next28, label %cond_true20

cond_true20:		; preds = %cond_next
	ret i32 0

cond_next28:		; preds = %cond_next
	%tmp33 = add i32 %tmp31, 0		; <i32> [#uses=1]
	br label %bb41

bb41:		; preds = %cond_next28, %bb36.outer
	%c.2.lcssa = phi i32 [ 0, %bb36.outer ], [ %tmp33, %cond_next28 ]		; <i32> [#uses=1]
	br i1 false, label %bb36.outer, label %bb44

bb44:		; preds = %bb41, %entry
	%c.01.1 = phi i32 [ 0, %entry ], [ %c.2.lcssa, %bb41 ]		; <i32> [#uses=1]
	ret i32 %c.01.1
}

declare i32 @strcspn(i8*, i8*)