2016-09-10 06:08:04 +08:00
|
|
|
# REQUIRES: x86
|
|
|
|
|
|
|
|
# RUN: echo -n "Fluffle Puff" > %t.binary
|
|
|
|
# RUN: ld.lld -m elf_x86_64 -r -b binary %t.binary -o %t.out
|
|
|
|
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck %s
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
|
|
# RUN: ld.lld %t.o -b binary %t.binary -b default %t.o -shared -o %t.out
|
|
|
|
|
2016-10-20 12:47:45 +08:00
|
|
|
# RUN: not ld.lld -b foo > %t.log 2>&1
|
|
|
|
# RUN: FileCheck -check-prefix=ERR %s < %t.log
|
|
|
|
# ERR: error: unknown -format value: foo (supported formats: elf, default, binary)
|
|
|
|
|
2016-09-10 06:08:04 +08:00
|
|
|
# CHECK: Name: .data
|
|
|
|
# CHECK-NEXT: Type: SHT_PROGBITS
|
|
|
|
# CHECK-NEXT: Flags [
|
|
|
|
# CHECK-NEXT: SHF_ALLOC
|
2017-01-11 23:13:05 +08:00
|
|
|
# CHECK-NEXT: SHF_WRITE
|
2016-09-10 06:08:04 +08:00
|
|
|
# CHECK-NEXT: ]
|
|
|
|
# CHECK-NEXT: Address: 0x0
|
|
|
|
# CHECK-NEXT: Offset:
|
|
|
|
# CHECK-NEXT: Size: 12
|
|
|
|
# CHECK-NEXT: Link: 0
|
|
|
|
# CHECK-NEXT: Info: 0
|
|
|
|
# CHECK-NEXT: AddressAlignment:
|
|
|
|
# CHECK-NEXT: EntrySize: 0
|
|
|
|
# CHECK-NEXT: SectionData (
|
|
|
|
# CHECK-NEXT: 0000: 466C7566 666C6520 50756666 |Fluffle Puff|
|
|
|
|
# CHECK-NEXT: )
|
|
|
|
# CHECK-NEXT: }
|
|
|
|
|
|
|
|
# CHECK: Name: _binary_{{[a-zA-Z0-9_]+}}test_ELF_Output_format_binary_test_tmp_binary_start
|
|
|
|
# CHECK-NEXT: Value: 0x0
|
|
|
|
# CHECK-NEXT: Size: 0
|
|
|
|
# CHECK-NEXT: Binding: Global
|
|
|
|
# CHECK-NEXT: Type: Object
|
|
|
|
# CHECK-NEXT: Other: 0
|
|
|
|
# CHECK-NEXT: Section: .data
|
|
|
|
# CHECK-NEXT: }
|
|
|
|
# CHECK-NEXT: Symbol {
|
|
|
|
# CHECK-NEXT: Name: _binary_{{[a-zA-Z0-9_]+}}test_ELF_Output_format_binary_test_tmp_binary_end
|
|
|
|
# CHECK-NEXT: Value: 0xC
|
|
|
|
# CHECK-NEXT: Size: 0
|
|
|
|
# CHECK-NEXT: Binding: Global
|
|
|
|
# CHECK-NEXT: Type: Object
|
|
|
|
# CHECK-NEXT: Other: 0
|
|
|
|
# CHECK-NEXT: Section: .data
|
|
|
|
# CHECK-NEXT: }
|
|
|
|
# CHECK-NEXT: Symbol {
|
|
|
|
# CHECK-NEXT: Name: _binary_{{[a-zA-Z0-9_]+}}test_ELF_Output_format_binary_test_tmp_binary_size
|
|
|
|
# CHECK-NEXT: Value: 0xC
|
|
|
|
# CHECK-NEXT: Size: 0
|
|
|
|
# CHECK-NEXT: Binding: Global
|
|
|
|
# CHECK-NEXT: Type: Object
|
|
|
|
# CHECK-NEXT: Other: 0
|
|
|
|
# CHECK-NEXT: Section: Absolute
|
|
|
|
# CHECK-NEXT: }
|
Add OUTPUT_FORMAT linker script directive support.
This patch adds a support for OUTPUT_FORMAT linker script directive.
Since I'm not 100% confident with BFD names you can use in the directive
for all architectures, I added only a few in this patch. We can add
other names for other archtiectures later.
We still do not support triple-style OUTPUT_FORMAT directive, namely,
OUTPUT_FORMAT(bfdname, big, little). If you pass -EL (little endian)
or -EB (big endian) to the linker, GNU linkers pick up big or little
as a BFD name, correspondingly, so that you can use a single linker
script for bi-endian processor. I'm not sure if we really need to
support that, so I'll leave it alone for now.
Note that -m takes precedence over OUTPUT_FORAMT, but we always parse
a BFD name given to OUTPUT_FORMAT for error checking. You cannot write
an invalid name in the OUTPUT_FORMAT directive.
Differential Revision: https://reviews.llvm.org/D53495
llvm-svn: 344952
2018-10-23 04:50:01 +08:00
|
|
|
|
|
|
|
# RUN: echo 'OUTPUT_FORMAT(elf64-x86-64)' > %t.script
|
|
|
|
# RUN: ld.lld -b binary %t.binary -T %t.script -o %t.out
|
|
|
|
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64 %s
|
|
|
|
|
|
|
|
# X86-64: Format: ELF64-x86-64
|
2018-11-03 13:25:49 +08:00
|
|
|
|
|
|
|
# RUN: echo 'OUTPUT_FORMAT("elf64-x86-64")' > %t.script
|
|
|
|
# RUN: ld.lld -b binary %t.binary -T %t.script -o %t.out
|
|
|
|
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64-in-quotes %s
|
|
|
|
|
|
|
|
# X86-64-in-quotes: Format: ELF64-x86-64
|