[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / common-archive-lookup.s
blobbbfadb448f2d689598417ae74264ff60d02aa076
1 # REQUIRES: ppc
3 # RUN: rm -rf %t.dir
4 # RUN: split-file %s %t.dir
5 # RUN: cd %t.dir
7 ## Object files.
8 # RUN: llvm-mc -triple=powerpc64le -filetype=obj ref.s -o 1.o
9 # RUN: llvm-mc -triple=powerpc64le -filetype=obj refanddef.s -o 2.o
10 # RUN: llvm-mc -triple=powerpc64le -filetype=obj def.s -o strong_data_only.o
11 # RUN: llvm-mc -triple=powerpc64le -filetype=obj weak.s -o weak_data_only.o
13 # RUN: llvm-mc -triple=powerpc64le -filetype=obj main.s -o main.o
15 ## Object file archives.
16 # RUN: llvm-ar crs 1.a 1.o strong_data_only.o
17 # RUN: llvm-ar crs 2.a 1.o weak_data_only.o
18 # RUN: llvm-ar crs 3.a 2.o strong_data_only.o
20 ## Bitcode files.
21 # RUN: llvm-as -o 1.bc commonblock.ll
22 # RUN: llvm-as -o 2.bc blockdata.ll
23 # RUN: llvm-as -o 3.bc weak.ll
25 ## Bitcode archive.
26 # RUN: llvm-ar crs 4.a 1.bc 2.bc
28 # RUN: ld.lld -o 1 main.o 1.a
29 # RUN: llvm-objdump -D -j .data 1 | FileCheck --check-prefix=TEST1 %s
31 # RUN: ld.lld -o 2 main.o --start-lib 1.o strong_data_only.o --end-lib
32 # RUN: llvm-objdump -D -j .data 2 | FileCheck --check-prefix=TEST1 %s
34 # RUN: ld.lld -o 3 main.o 2.a
35 # RUN: llvm-objdump -t 3 | FileCheck --check-prefix=BSS %s
37 # RUN: ld.lld -o 4 main.o --start-lib 1.o weak_data_only.o --end-lib
38 # RUN: llvm-objdump -t 4 | FileCheck --check-prefix=BSS %s
40 # RUN: ld.lld -o 5 main.o 3.a --print-map | FileCheck --check-prefix=MAP %s
42 # RUN: ld.lld -o 6 main.o 2.o 1.a
43 # RUN: llvm-objdump -D -j .data 6 | FileCheck --check-prefix=TEST2 %s
45 # RUN: ld.lld -o 7 main.o 2.o --start-lib 1.o strong_data_only.o --end-lib
46 # RUN: llvm-objdump -D -j .data 7 | FileCheck --check-prefix=TEST2 %s
48 # RUN: not ld.lld -o 8 main.o 1.a strong_data_only.o 2>&1 | \
49 # RUN: FileCheck --check-prefix=ERR %s
51 # RUN: not ld.lld -o 9 main.o --start-lib 1.o 2.o --end-lib strong_data_only.o 2>&1 | \
52 # RUN: FileCheck --check-prefix=ERR %s
54 # ERR: ld.lld: error: duplicate symbol: block
56 # RUN: ld.lld --no-fortran-common -o 10 main.o 1.a
57 # RUN: llvm-readobj --syms 10 | FileCheck --check-prefix=NFC %s
59 # RUN: ld.lld --no-fortran-common -o 11 main.o --start-lib 1.o strong_data_only.o --end-lib
60 # RUN: llvm-readobj --syms 11 | FileCheck --check-prefix=NFC %s
62 # RUN: ld.lld -o - main.o 4.a --lto-emit-asm | FileCheck --check-prefix=ASM %s
64 # RUN: ld.lld -o - main.o --start-lib 1.bc 2.bc --end-lib --lto-emit-asm | \
65 # RUN: FileCheck --check-prefix=ASM %s
67 ## COMMON overrides weak. Don't extract 3.bc which provides a weak definition.
68 # RUN: ld.lld -o /dev/null main.o --start-lib 1.bc 3.bc --end-lib -y block | FileCheck --check-prefix=LTO_WEAK %s
70 ## Old FORTRAN that mixes use of COMMON blocks and BLOCK DATA requires that we
71 ## search through archives for non-tentative definitions (from the BLOCK DATA)
72 ## to replace the tentative definitions (from the COMMON block(s)).
74 ## Ensure we have used the initialized definition of 'block' instead of a
75 ## common definition.
76 # TEST1-LABEL: Disassembly of section .data:
77 # TEST1: <block>:
78 # TEST1-NEXT: ea 2e 44 54
79 # TEST1-NEXT: fb 21 09 40
80 # TEST1-NEXT: ...
82 # BSS: [[#%x,]] g O .bss 0000000000000028 block
84 # NFC: Name: block
85 # NFC-NEXT: Value:
86 # NFC-NEXT: Size: 40
87 # NFC-NEXT: Binding: Global (0x1)
88 # NFC-NEXT: Type: Object (0x1)
89 # NFC-NEXT: Other: 0
90 # NFC-NEXT: Section: .bss
92 ## Expecting the strong definition from the object file, and the defintions from
93 ## the archive do not interfere.
94 # TEST2-LABEL: Disassembly of section .data:
95 # TEST2: <block>:
96 # TEST2-NEXT: 03 57 14 8b
97 # TEST2-NEXT: 0a bf 05 40
98 # TEST2-NEXT: ...
100 # MAP: 28 8 3.a(2.o):(.data)
101 # MAP-NEXT: 28 1 block
103 # ASM: .type block,@object
104 # ASM: block:
105 # ASM-NEXT: .long 5
106 # ASM: .size block, 20
108 # LTO_WEAK: 1.bc: common definition of block
109 # LTO_WEAK: <internal>: reference to block
110 # LTO_WEAK-NOT: {{.}}
112 #--- ref.s
113 .text
114 .abiversion 2
115 .global bar
116 .type bar,@function
117 bar:
118 addis 4, 2, block@toc@ha
119 addi 4, 4, block@toc@l
121 ## Tentative definition of 'block'.
122 .comm block,40,8
124 #--- refanddef.s
125 ## An alternate strong definition of block, in the same file as
126 ## a different referenced symbol.
127 .text
128 .abiversion 2
129 .global bar
130 .type bar,@function
131 bar:
132 addis 4, 2, block@toc@ha
133 addi 4, 4, block@toc@l
135 .data
136 .type block,@object
137 .global block
138 .p2align 3
139 block:
140 .quad 0x4005bf0a8b145703 # double 2.7182818284589998
141 .space 32
142 .size block, 40
144 #--- def.s
145 ## Strong definition of 'block'.
146 .data
147 .type block,@object
148 .global block
149 .p2align 3
150 block:
151 .quad 0x400921fb54442eea # double 3.1415926535900001
152 .space 32
153 .size block, 40
155 #--- weak.s
156 ## Weak definition of `block`.
157 .data
158 .type block,@object
159 .weak block
160 .p2align 3
161 block:
162 .quad 0x400921fb54442eea # double 3.1415926535900001
163 .space 32
164 .size block, 40
166 #--- main.s
167 .global _start
168 _start:
169 bl bar
173 #--- blockdata.ll
174 target datalayout = "e-m:e-i64:64-n32:64-S128-v256:256:256-v512:512:512"
175 target triple = "powerpc64le-unknown-linux-gnu"
177 @block = dso_local local_unnamed_addr global [5 x i32] [i32 5, i32 0, i32 0, i32 0, i32 0], align 4
179 #--- weak.ll
180 target datalayout = "e-m:e-i64:64-n32:64-S128-v256:256:256-v512:512:512"
181 target triple = "powerpc64le-unknown-linux-gnu"
183 @block = weak dso_local global [5 x i32] [i32 5, i32 0, i32 0, i32 0, i32 0], align 4
185 #--- commonblock.ll
186 target datalayout = "e-m:e-i64:64-n32:64-S128-v256:256:256-v512:512:512"
187 target triple = "powerpc64le-unknown-linux-gnu"
189 @block = common dso_local local_unnamed_addr global [5 x i32] zeroinitializer, align 4
191 define dso_local i32 @bar(i32 signext %i) local_unnamed_addr {
192 entry:
193 %idxprom = sext i32 %i to i64
194 %arrayidx = getelementptr inbounds [5 x i32], [5 x i32]* @block, i64 0, i64 %idxprom
195 %0 = load i32, i32* %arrayidx, align 8
196 ret i32 %0