This diff paves the way for {D102964} which adds a new kind of
InputSection.
We previously maintained section ordering implicitly: we created
InputSections as we parsed each file in command-line order, and passed
on this ordering when we created OutputSections and OutputSegments by
iterating over these InputSections. The implicitness of the ordering
made it difficult to refactor the code to e.g. handle a new type of
InputSection. As such, I've codified the ordering explicitly via
`inputOrder` fields. This also allows us to use `sort` instead of
`stable_sort`.
Benchmarking chromium_framework on my 3.2 GHz 16-Core Intel Xeon W:
N Min Max Median Avg Stddev
x 20 4.23 4.35 4.27 4.274 0.030157481
+ 20 4.24 4.38 4.27 4.2815 0.033759989
No difference proven at 95.0% confidence
Reviewed By: #lld-macho, alexshap
Differential Revision: https://reviews.llvm.org/D102972
72 lines
1.8 KiB
ArmAsm
72 lines
1.8 KiB
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: rm -rf %t && mkdir -p %t
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/test.o
|
|
# RUN: %lld -execute -o %t/exec %t/test.o -lSystem
|
|
# RUN: %lld -dylib -o %t/dylib %t/test.o -lSystem
|
|
# RUN: %lld -bundle -o %t/bundle %t/test.o -lSystem
|
|
|
|
# RUN: llvm-objdump --macho --all-headers %t/exec | \
|
|
# RUN: FileCheck %s --check-prefixes=EXEC,COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/dylib | \
|
|
# RUN: FileCheck %s --check-prefixes=DYLIB,COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/bundle | \
|
|
# RUN: FileCheck %s --check-prefix=COMMON
|
|
|
|
## Check that load commands and sections within segments occur in the proper
|
|
## sequence. On ARM64 kernel is especially picky about layout, and will
|
|
## barf with errno=EBADMACHO when the sequence is wrong.
|
|
|
|
# EXEC: cmd LC_SEGMENT_64
|
|
# EXEC: segname __PAGEZERO
|
|
|
|
# COMMON: cmd LC_SEGMENT_64
|
|
# COMMON: segname __TEXT
|
|
# COMMON: sectname __text
|
|
# COMMON: segname __TEXT
|
|
# COMMON: sectname __cstring
|
|
# COMMON: segname __TEXT
|
|
# COMMON: cmd LC_SEGMENT_64
|
|
# COMMON: segname __DATA_CONST
|
|
# COMMON: sectname __got
|
|
# COMMON: segname __DATA_CONST
|
|
# COMMON: sectname __const
|
|
# COMMON: segname __DATA_CONST
|
|
# COMMON: cmd LC_SEGMENT_64
|
|
# COMMON: segname __DATA
|
|
# COMMON: sectname __data
|
|
# COMMON: segname __DATA
|
|
# COMMON: cmd LC_SEGMENT_64
|
|
# COMMON: segname __LINKEDIT
|
|
# COMMON: cmd LC_DYLD_INFO_ONLY
|
|
# COMMON: cmd LC_SYMTAB
|
|
# COMMON: cmd LC_DYSYMTAB
|
|
|
|
# EXEC: cmd LC_LOAD_DYLINKER
|
|
# EXEC: cmd LC_MAIN
|
|
# DYLIB: cmd LC_ID_DYLIB
|
|
|
|
# COMMON: cmd LC_UUID
|
|
# COMMON: cmd LC_BUILD_VERSION
|
|
# COMMON: cmd LC_LOAD_DYLIB
|
|
|
|
.section __TEXT,__cstring
|
|
_str:
|
|
.asciz "Help me! I'm trapped in a test!\n"
|
|
|
|
.globl _mutable
|
|
.section __DATA,__data
|
|
mutable:
|
|
.long 0x1234
|
|
|
|
.globl _constant
|
|
.section __DATA,__const
|
|
constant:
|
|
.long 0x4567
|
|
|
|
.text
|
|
.global _main
|
|
_main:
|
|
mov ___nan@GOTPCREL(%rip), %rax
|
|
ret
|