File: 2008-07-29-SMinExpr.ll

package info (click to toggle)
llvm-2.7 2.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 59,992 kB
  • ctags: 49,499
  • sloc: cpp: 373,792; ansic: 16,885; sh: 12,614; asm: 6,809; ada: 3,083; ml: 2,942; python: 2,671; perl: 2,404; makefile: 1,691; pascal: 1,235; exp: 399; objc: 291; lisp: 184; csh: 117; xml: 38; f90: 36
file content (26 lines) | stat: -rw-r--r-- 808 bytes parent folder | download
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
; RUN: opt < %s -analyze -scalar-evolution \
; RUN:   -scalar-evolution-max-iterations=0 | FileCheck %s
; PR2607

define i32 @b(i32 %x, i32 %y) nounwind {
entry:
	%cmp2 = icmp slt i32 %y, %x
	%cond3 = select i1 %cmp2, i32 %y, i32 %x
	%cmp54 = icmp slt i32 %cond3, -2147483632
	br i1 %cmp54, label %forinc, label %afterfor

forinc:		; preds = %forinc, %entry
	%j.01 = phi i32 [ %dec, %forinc ], [ -2147483632, %entry ]
	%dec = add i32 %j.01, -1
	%cmp = icmp slt i32 %y, %x
	%cond = select i1 %cmp, i32 %y, i32 %x
	%cmp5 = icmp sgt i32 %dec, %cond
	br i1 %cmp5, label %forinc, label %afterfor

afterfor:		; preds = %forinc, %entry
	%j.0.lcssa = phi i32 [ -2147483632, %entry ], [ %dec, %forinc ]
	ret i32 %j.0.lcssa
}

; CHECK: backedge-taken count is (-2147483632 + ((-1 + (-1 * %x)) smax (-1 + (-1 * %y))))