File: global-used-by-global.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (54 lines) | stat: -rw-r--r-- 1,723 bytes parent folder | download | duplicates (16)
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
; RUN: opt < %s -globals-aa -gvn -S | FileCheck %s

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

@a = internal global i32* null, align 8
@b = global i32** @a, align 8
@c = global i32** @a, align 8
@d = common global i32 0, align 4

; Make sure we globals-aa doesn't get confused and allow hoisting
; the load from @a out of the loop.

; CHECK-LABEL: define i32 @main()
; CHECK: for.body:
; CHECK-NEXT:   %2 = load i32**, i32*** @b, align 8
; CHECK-NEXT:   store i32* @d, i32** %2, align 8
; CHECK-NEXT:   %3 = load i32*, i32** @a, align 8
; CHECK-NEXT:   %cmp1 = icmp ne i32* %3, @d
; CHECK-NEXT:   br i1 %cmp1, label %if.then, label %if.end

define i32 @main() {
entry:
  %0 = load i32, i32* @d, align 4
  br label %for.cond

for.cond:                                         ; preds = %if.end, %entry
  %1 = phi i32 [ %inc, %if.end ], [ %0, %entry ]
  %cmp = icmp slt i32 %1, 1
  br i1 %cmp, label %for.body, label %for.end

for.body:                                         ; preds = %for.cond
  %2 = load i32**, i32*** @b, align 8
  store i32* @d, i32** %2, align 8
  %3 = load i32*, i32** @a, align 8
  %cmp1 = icmp ne i32* %3, @d
  br i1 %cmp1, label %if.then, label %if.end

if.then:                                          ; preds = %for.body
  br label %return

if.end:                                           ; preds = %for.body
  %4 = load i32, i32* @d, align 4
  %inc = add nsw i32 %4, 1
  store i32 %inc, i32* @d, align 4
  br label %for.cond

for.end:                                          ; preds = %for.cond
  br label %return

return:                                           ; preds = %for.end, %if.then
  %retval.0 = phi i32 [ 1, %if.then ], [ 0, %for.end ]
  ret i32 %retval.0
}