summaryrefslogtreecommitdiff
path: root/test/Transforms/GVNHoist/pr35222-hoist-load.ll
blob: b9b1a870a59bde70bc33ec796af2897122678bf6 (plain)
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
62
63
64
65
66
67
68
69
70
; RUN: opt -S -gvn-hoist < %s | FileCheck %s
; CHECK-LABEL: build_tree
; CHECK: load
; CHECK: load
; Check that the load is not hoisted because the call can potentially
; modify the global

target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"

@heap = external global i32, align 4

define i32 @build_tree() unnamed_addr {
entry:
  br label %do.body

do.body:                                          ; preds = %do.body, %entry
  %tmp9 = load i32, i32* @heap, align 4
  %cmp = call i1 @pqdownheap(i32 %tmp9)
  br i1 %cmp, label %do.body, label %do.end

do.end:                                           ; preds = %do.body
  %tmp20 = load i32, i32* @heap, align 4
  ret i32 %tmp20
}

declare i1 @pqdownheap(i32)

@i = external hidden unnamed_addr global i32, align 4
@j = external hidden unnamed_addr global [573 x i32], align 4
@v = external global i1

; CHECK-LABEL: test
; CHECK-LABEL: do.end
; CHECK: load
; Check that the load is not hoisted because the call can potentially
; modify the global

define i32 @test() {
entry:
  br label %for.cond

for.cond:
  %a3 = load volatile i1, i1* @v
  br i1 %a3, label %for.body, label %while.end

for.body:
  br label %if.then

if.then:
  %tmp4 = load i32, i32* @i, align 4
  br label %for.cond

while.end:
  br label %do.body

do.body:
  %tmp9 = load i32, i32* getelementptr inbounds ([573 x i32], [573 x i32]* @j,
i32 0, i32 1), align 4
  %tmp10 = load i32, i32* @i, align 4
  call void @fn()
  %a1 = load volatile i1, i1* @v
  br i1 %a1, label %do.body, label %do.end

do.end:
  %tmp20 = load i32, i32* getelementptr inbounds ([573 x i32], [573 x i32]* @j,
i32 0, i32 1), align 4
  ret i32 %tmp20
}

declare void @fn()