File: 2012-03-26-LoadConstant.ll

package info (click to toggle)
llvm-toolchain-3.4 1%3A3.4.2-13
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 253,236 kB
  • ctags: 276,203
  • sloc: cpp: 1,665,580; ansic: 298,647; asm: 206,157; objc: 84,350; python: 73,119; sh: 23,466; perl: 5,679; makefile: 5,542; ml: 5,250; pascal: 2,467; lisp: 1,420; xml: 679; cs: 236; csh: 117
file content (43 lines) | stat: -rw-r--r-- 1,544 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
33
34
35
36
37
38
39
40
41
42
43
; RUN: opt < %s -basicaa -globalopt -instcombine -loop-rotate -licm -instcombine -indvars -loop-deletion -constmerge -S
; PR11882: ComputeLoadConstantCompareExitLimit crash.
;
; for.body is deleted leaving a loop-invariant load.
; CHECK-NOT: for.body
target datalayout = "e-p:64:64:64-n32:64"

@func_21_l_773 = external global i32, align 4
@g_814 = external global i32, align 4
@g_244 = internal global [1 x [0 x i32]] zeroinitializer, align 4

define void @func_21() nounwind uwtable ssp {
entry:
  br label %lbl_818

lbl_818:                                          ; preds = %for.end, %entry
  call void (...)* @func_27()
  store i32 0, i32* @g_814, align 4
  br label %for.cond

for.cond:                                         ; preds = %for.body, %lbl_818
  %0 = load i32* @g_814, align 4
  %cmp = icmp sle i32 %0, 0
  br i1 %cmp, label %for.body, label %for.end

for.body:                                         ; preds = %for.cond
  %idxprom = sext i32 %0 to i64
  %arrayidx = getelementptr inbounds [0 x i32]* getelementptr inbounds ([1 x [0 x i32]]* @g_244, i32 0, i64 0), i32 0, i64 %idxprom
  %1 = load i32* %arrayidx, align 1
  store i32 %1, i32* @func_21_l_773, align 4
  store i32 1, i32* @g_814, align 4
  br label %for.cond

for.end:                                          ; preds = %for.cond
  %2 = load i32* @func_21_l_773, align 4
  %tobool = icmp ne i32 %2, 0
  br i1 %tobool, label %lbl_818, label %if.end

if.end:                                           ; preds = %for.end
  ret void
}

declare void @func_27(...)