File: 2007-09-17-PromoteValue.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (61 lines) | stat: -rw-r--r-- 1,846 bytes parent folder | download | duplicates (22)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
; ModuleID = 'PR1657.bc'
; Do not promote getelementptr because it may exposes load from a null pointer 
; and store from a null pointer  which are covered by 
; icmp eq %struct.decision* null, null condition.
; RUN: opt < %s -licm -S | not grep promoted
	%struct.decision = type { i8, %struct.decision* }

define i32 @main() {
entry:
	br label %blah.i

blah.i:		; preds = %cond_true.i, %entry
	%tmp3.i = icmp eq %struct.decision* null, null		; <i1> [#uses=1]
	br i1 %tmp3.i, label %clear_modes.exit, label %cond_true.i

cond_true.i:		; preds = %blah.i
	%tmp1.i = getelementptr %struct.decision, %struct.decision* null, i32 0, i32 0		; <i8*> [#uses=1]
	store i8 0, i8* %tmp1.i
	br label %blah.i

clear_modes.exit:		; preds = %blah.i
	call void @exit( i32 0 )
	unreachable
}

define i32 @f(i8* %ptr) {
entry:
        br label %loop.head

loop.head:              ; preds = %cond.true, %entry
        %x = phi i8* [ %ptr, %entry ], [ %ptr.i, %cond.true ]           ; <i8*> [#uses=1]
        %tmp3.i = icmp ne i8* %ptr, %x          ; <i1> [#uses=1]
        br i1 %tmp3.i, label %cond.true, label %exit

cond.true:              ; preds = %loop.head
        %ptr.i = getelementptr i8, i8* %ptr, i32 0          ; <i8*> [#uses=2]
        store i8 0, i8* %ptr.i
        br label %loop.head

exit:           ; preds = %loop.head
        ret i32 0
}

define i32 @f2(i8* %p, i8* %q) {
entry:
        br label %loop.head

loop.head:              ; preds = %cond.true, %entry
        %tmp3.i = icmp eq i8* null, %q            ; <i1> [#uses=1]
        br i1 %tmp3.i, label %exit, label %cond.true

cond.true:              ; preds = %loop.head
        %ptr.i = getelementptr i8, i8* %p, i32 0          ; <i8*> [#uses=2]
        store i8 0, i8* %ptr.i
        br label %loop.head

exit:           ; preds = %loop.head
        ret i32 0
}

declare void @exit(i32)