File: 2006-12-08-Phi-ICmp-Op-Fold.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (45 lines) | stat: -rw-r--r-- 1,930 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
41
42
43
44
45
; RUN: opt < %s -passes=instcombine -S | \
; RUN:   grep "icmp sgt"
; END.
target datalayout = "e-p:32:32"
target triple = "i686-pc-linux-gnu"
	%struct.point = type { i32, i32 }

define i32 @visible(i32 %direction, i64 %p1.0, i64 %p2.0, i64 %p3.0) {
entry:
	%p1_addr = alloca %struct.point		; <ptr> [#uses=2]
	%p2_addr = alloca %struct.point		; <ptr> [#uses=2]
	%p3_addr = alloca %struct.point		; <ptr> [#uses=2]
	%"alloca point" = bitcast i32 0 to i32		; <i32> [#uses=0]
	%tmp.upgrd.1 = getelementptr { i64 }, ptr %p1_addr, i64 0, i32 0		; <ptr> [#uses=1]
	store i64 %p1.0, ptr %tmp.upgrd.1
	%tmp2 = getelementptr { i64 }, ptr %p2_addr, i64 0, i32 0		; <ptr> [#uses=1]
	store i64 %p2.0, ptr %tmp2
	%tmp4 = getelementptr { i64 }, ptr %p3_addr, i64 0, i32 0		; <ptr> [#uses=1]
	store i64 %p3.0, ptr %tmp4
	%tmp.upgrd.2 = icmp eq i32 %direction, 0		; <i1> [#uses=1]
	%tmp6 = getelementptr { i64 }, ptr %p1_addr, i64 0, i32 0		; <ptr> [#uses=1]
	%tmp.upgrd.3 = load i64, ptr %tmp6		; <i64> [#uses=1]
	%tmp8 = getelementptr { i64 }, ptr %p2_addr, i64 0, i32 0		; <ptr> [#uses=1]
	%tmp9 = load i64, ptr %tmp8		; <i64> [#uses=1]
	%tmp11 = getelementptr { i64 }, ptr %p3_addr, i64 0, i32 0		; <ptr> [#uses=1]
	%tmp12 = load i64, ptr %tmp11		; <i64> [#uses=1]
	%tmp13 = call i32 @determinant( i64 %tmp.upgrd.3, i64 %tmp9, i64 %tmp12 )		; <i32> [#uses=2]
	br i1 %tmp.upgrd.2, label %cond_true, label %cond_false

cond_true:		; preds = %entry
	%tmp14 = icmp slt i32 %tmp13, 0		; <i1> [#uses=1]
	%tmp14.upgrd.4 = zext i1 %tmp14 to i32		; <i32> [#uses=1]
	br label %return

cond_false:		; preds = %entry
	%tmp26 = icmp sgt i32 %tmp13, 0		; <i1> [#uses=1]
	%tmp26.upgrd.5 = zext i1 %tmp26 to i32		; <i32> [#uses=1]
	br label %return

return:		; preds = %cond_false, %cond_true
	%retval.0 = phi i32 [ %tmp14.upgrd.4, %cond_true ], [ %tmp26.upgrd.5, %cond_false ]		; <i32> [#uses=1]
	ret i32 %retval.0
}

declare i32 @determinant(i64, i64, i64)