File: 2006-07-03-schedulers.ll

package info (click to toggle)
llvm 2.6-9.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 57,604 kB
  • ctags: 44,336
  • sloc: cpp: 344,766; sh: 12,407; ansic: 10,617; ada: 3,070; ml: 2,505; perl: 2,496; makefile: 1,426; pascal: 1,163; exp: 389; asm: 307; python: 298; objc: 260; lisp: 182; csh: 117; xml: 38; f90: 36; tcl: 20
file content (32 lines) | stat: -rw-r--r-- 1,112 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
27
28
29
30
31
32
; RUN: llvm-as < %s | llc -pre-RA-sched=default
; RUN: llvm-as < %s | llc -pre-RA-sched=list-burr
; RUN: llvm-as < %s | llc -pre-RA-sched=fast
; PR859

; The top-down schedulers are excluded here because they don't yet support
; targets that use physreg defs.

declare i32 @printf(i8*, i32, float)

define i32 @testissue(i32 %i, float %x, float %y) {
	br label %bb1

bb1:		; preds = %bb1, %0
	%x1 = fmul float %x, %y		; <float> [#uses=1]
	%y1 = fmul float %y, 7.500000e-01		; <float> [#uses=1]
	%z1 = fadd float %x1, %y1		; <float> [#uses=1]
	%x2 = fmul float %x, 5.000000e-01		; <float> [#uses=1]
	%y2 = fmul float %y, 0x3FECCCCCC0000000		; <float> [#uses=1]
	%z2 = fadd float %x2, %y2		; <float> [#uses=1]
	%z3 = fadd float %z1, %z2		; <float> [#uses=1]
	%i1 = shl i32 %i, 3		; <i32> [#uses=1]
	%j1 = add i32 %i, 7		; <i32> [#uses=1]
	%m1 = add i32 %i1, %j1		; <i32> [#uses=2]
	%b = icmp sle i32 %m1, 6		; <i1> [#uses=1]
	br i1 %b, label %bb1, label %bb2

bb2:		; preds = %bb1
	%Msg = inttoptr i64 0 to i8*		; <i8*> [#uses=1]
	call i32 @printf( i8* %Msg, i32 %m1, float %z3 )		; <i32>:1 [#uses=0]
	ret i32 0
}