File: fold-add.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 (109 lines) | stat: -rw-r--r-- 3,860 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
; RUN: llc -mtriple=x86_64 -relocation-model=static < %s | FileCheck --check-prefixes=CHECK,STATIC %s
; RUN: llc -mtriple=x86_64 -relocation-model=pic < %s | FileCheck --check-prefixes=CHECK,PIC %s
; RUN: llc -mtriple=x86_64 -code-model=medium -relocation-model=static < %s | FileCheck --check-prefixes=CHECK,MSTATIC %s
; RUN: llc -mtriple=x86_64 -code-model=medium -relocation-model=pic < %s | FileCheck --check-prefixes=CHECK,MPIC %s

@foo = internal global i32 0

define dso_local i64 @zero() #0 {
; CHECK-LABEL: zero:
; CHECK:       # %bb.0:
; STATIC-NEXT:   movl $foo, %eax
; STATIC-NEXT:   retq
; PIC-NEXT:      leaq foo(%rip), %rax
; PIC-NEXT:      retq
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  retq
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rcx
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rax
; MPIC-NEXT:     addq %rcx, %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 0)
}

define dso_local i64 @one() #0 {
; CHECK-LABEL: one:
; CHECK:       # %bb.0:
; STATIC-NEXT:   movl $foo+1, %eax
; PIC-NEXT:      leaq foo+1(%rip), %rax
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  incq %rax
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rcx
; MPIC-NEXT:     leaq 1(%rax,%rcx), %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 1)
}

;; Check we don't fold a large offset into leaq, otherwise
;; the large r_addend can easily cause a relocation overflow.
define dso_local i64 @large() #0 {
; CHECK-LABEL: large:
; CHECK:       # %bb.0:
; STATIC-NEXT:   movl $1701208431, %eax
; STATIC-NEXT:   leaq foo(%rax), %rax
; PIC-NEXT:      leaq foo(%rip), %rax
; PIC-NEXT:      addq $1701208431, %rax
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  addq $1701208431, %rax
; MSTATIC-NEXT:  retq
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rcx
; MPIC-NEXT:     leaq 1701208431(%rax,%rcx), %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 1701208431)
}

;; Test we don't emit movl foo-1, %eax. ELF R_X86_64_32 does not allow
;; a negative value.
define dso_local i64 @neg_1() #0 {
; CHECK-LABEL: neg_1:
; CHECK:       # %bb.0:
; STATIC-NEXT:   leaq foo-1(%rip), %rax
; PIC-NEXT:      leaq foo-1(%rip), %rax
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  decq %rax
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rcx
; MPIC-NEXT:     leaq -1(%rax,%rcx), %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -1)
}

;; Test we don't emit movl foo-2147483648, %eax. ELF R_X86_64_32 does not allow
;; a negative value.
define dso_local i64 @neg_0x80000000() #0 {
; CHECK-LABEL: neg_0x80000000:
; CHECK:       # %bb.0:
; STATIC-NEXT:   leaq foo-2147483648(%rip), %rax
; PIC-NEXT:      leaq foo-2147483648(%rip), %rax
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  addq $-2147483648, %rax
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rcx
; MPIC-NEXT:     leaq -2147483648(%rax,%rcx), %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -2147483648)
}

define dso_local i64 @neg_0x80000001() #0 {
; CHECK-LABEL: neg_0x80000001:
; CHECK:       # %bb.0:
; STATIC-NEXT:   movabsq $-2147483649, %rax
; STATIC-NEXT:   leaq foo(%rax), %rax
; PIC-NEXT:      leaq foo(%rip), %rcx
; PIC-NEXT:      movabsq $-2147483649, %rax
; PIC-NEXT:      addq %rcx, %rax
; MSTATIC-NEXT:  movabsq $-2147483649, %rcx
; MSTATIC-NEXT:  movabsq $foo, %rax
; MSTATIC-NEXT:  addq %rcx, %rax
; MPIC-NEXT:     leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
; MPIC-NEXT:     movabsq $foo@GOTOFF, %rcx
; MPIC-NEXT:     addq %rax, %rcx
; MPIC-NEXT:     movabsq $-2147483649, %rax
; MPIC-NEXT:     addq %rcx, %rax
entry:
  ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -2147483649)
}

attributes #0 = { nounwind }