[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git] / lld / test / ELF / linkerscript / output-too-large.s
blobc496d99d3cef5df374a45d2b2f990c1f819c53a1
1 # REQUIRES: x86
3 # RUN: llvm-mc -filetype=obj -triple=i686 %s -o %t1.o
4 # RUN: echo "SECTIONS { .text : { . = 0xffffffff; *(.text*); } }" > %t1.script
5 # RUN: not ld.lld --no-check-sections -T %t1.script %t1.o -o /dev/null 2>&1 | FileCheck %s
7 ## Error if an address is greater than or equal to 2**32 for ELF32.
8 ## When -M is specified, print the link map even if such an error occurs,
9 ## because the link map can help diagnose problems.
10 # RUN: not ld.lld -T %t1.script %t1.o -M -o /dev/null 2>&1 | \
11 # RUN: FileCheck --check-prefix=MAP1 %s
13 # MAP1: VMA LMA Size Align Out In Symbol
14 # MAP1-NEXT: 0 0 100000001 4 .text
15 # MAP1-NEXT: 0 0 ffffffff 1 . = 0xffffffff
16 # MAP1-NEXT: 100000000 100000000 1 4 {{.*}}.o:(.text)
17 # MAP1: error: section .text at 0x0 of size 0x100000001 exceeds available address space
19 ## Error if an address is greater than or equal to 2**63.
20 ## Print a link map if -M is specified.
21 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t2.o
22 # RUN: echo "SECTIONS { .text : { . = 0x8fffffffffffffff; *(.text*); } }" > %t2.script
23 # RUN: not ld.lld -T %t2.script -M %t2.o -o /dev/null 2>&1 | \
24 # RUN: FileCheck --check-prefixes=MAP2,CHECK64 %s
26 # MAP2: VMA LMA Size Align Out In Symbol
27 # MAP2: 9000000000000000 9000000000000000 1 4 {{.*}}.o:(.text)
28 # MAP2-NEXT: 9000000000000000 9000000000000000 0 1 _start
30 # CHECK: error: output file too large
31 # CHECK-NEXT: section sizes:
32 # CHECK-NEXT: .text 4294967297
33 # CHECK-NEXT: .data 1
35 # CHECK64: error: output file too large
36 # CHECK64-NEXT: section sizes:
37 # CHECK64-NEXT: .text 10376293541461622785
38 # CHECK64-NEXT: .data 1
40 .data
41 .byte 42
43 .text
44 .global _start
45 _start:
46 nop