File: coalescer-commute1.ll

package info (click to toggle)
llvm-toolchain-3.5 1%3A3.5-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 282,028 kB
  • ctags: 310,872
  • sloc: cpp: 1,883,926; ansic: 310,731; objc: 86,612; python: 79,565; asm: 65,844; sh: 9,829; makefile: 6,057; perl: 5,589; ml: 5,254; pascal: 3,285; lisp: 1,640; xml: 686; cs: 239; csh: 117
file content (26 lines) | stat: -rw-r--r-- 1,003 bytes parent folder | download | duplicates (3)
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: llc < %s -mtriple=i686-apple-darwin -mcpu=corei7-avx -mattr=+sse2 | not grep movaps
; PR1877

@NNTOT = weak global i32 0		; <i32*> [#uses=1]
@G = weak global float 0.000000e+00		; <float*> [#uses=1]

define void @runcont(i32* %source) nounwind  {
entry:
	%tmp10 = load i32* @NNTOT, align 4		; <i32> [#uses=1]
	br label %bb

bb:		; preds = %bb, %entry
	%neuron.0 = phi i32 [ 0, %entry ], [ %indvar.next, %bb ]		; <i32> [#uses=2]
	%thesum.0 = phi float [ 0.000000e+00, %entry ], [ %tmp6, %bb ]		; <float> [#uses=1]
	%tmp2 = getelementptr i32* %source, i32 %neuron.0		; <i32*> [#uses=1]
	%tmp3 = load i32* %tmp2, align 4		; <i32> [#uses=1]
	%tmp34 = sitofp i32 %tmp3 to float		; <float> [#uses=1]
	%tmp6 = fadd float %tmp34, %thesum.0		; <float> [#uses=2]
	%indvar.next = add i32 %neuron.0, 1		; <i32> [#uses=2]
	%exitcond = icmp eq i32 %indvar.next, %tmp10		; <i1> [#uses=1]
	br i1 %exitcond, label %bb13, label %bb

bb13:		; preds = %bb
	store volatile float %tmp6, float* @G, align 4
	ret void
}