File: pr37826.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 (60 lines) | stat: -rw-r--r-- 2,037 bytes parent folder | download | duplicates (6)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -o - %s -mtriple=x86_64--unknown-linux-gnu | FileCheck %s

; When compiled and run this should print zero.


@c = common dso_local local_unnamed_addr global i32 0, align 4
@f = common dso_local local_unnamed_addr global i32 0, align 4
@e = common dso_local local_unnamed_addr global i32 0, align 4
@.str.1 = private unnamed_addr constant [4 x i8] c"%d\0A\00", align 1

; We should only see a single store to f (a bytes store to f+3).
define dso_local void @k(i32 %l) {
; CHECK-LABEL: k:
; CHECK:       # %bb.0:
; CHECK-NEXT:    movl e(%rip), %eax
; CHECK-NEXT:    orl f(%rip), %eax
; CHECK-NEXT:    shrl $24, %eax
; CHECK-NEXT:    movb %al, f+3(%rip)
; CHECK-NEXT:    retq
  %load = load i32, i32* @c, align 4
  %load6 = load i32, i32* @f, align 4
  %clear7 = and i32 %load6, 16777215
  store i32 %clear7, i32* @c, align 4
  %neg = and i32 %load6, 2097151
  %value = xor i32 %neg, 2097151
  store i32 %load, i32* @c, align 4
  %t0 = load i32, i32* @e, align 4
  %value15 = xor i32 %t0, %value
  %clear16 = and i32 %load6, -16777216
  %set17 = or i32 %value15, %clear16
  store i32 %set17, i32* @f, align 4
  %clear25 = and i32 %set17, -16777216
  %set26 = or i32 %clear25, %clear7
  store i32 %set26, i32* @f, align 4
  ret void
}

declare i32 @printf(i8* nocapture readonly, ...)

define dso_local i32 @main() {
; CHECK-LABEL: main:
; CHECK:       # %bb.0:
; CHECK-NEXT:    pushq %rax
; CHECK-NEXT:    .cfi_def_cfa_offset 16
; CHECK-NEXT:    movl $1, %edi
; CHECK-NEXT:    callq k
; CHECK-NEXT:    movl f(%rip), %esi
; CHECK-NEXT:    movl $.L.str.1, %edi
; CHECK-NEXT:    xorl %eax, %eax
; CHECK-NEXT:    callq printf@PLT
; CHECK-NEXT:    xorl %eax, %eax
; CHECK-NEXT:    popq %rcx
; CHECK-NEXT:    .cfi_def_cfa_offset 8
; CHECK-NEXT:    retq
  tail call void @k(i32 1)
  %load = load i32, i32* @f, align 4
  %call = tail call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 %load)
  ret i32 0
}