
MSVC linker accepts native ARM64 object files as input with `-machine:arm64ec`, similar to `-machine:arm64x`. Its usefulness is very limited; for example, both exports and imports are not reflected in the PE structures and can't work. However, their symbol tables are otherwise functional. Since we already have handling of multiple symbol tables implemented for ARM64X, the required changes are mostly about adjusting relevant checks to account for them on the ARM64EC target. Delay-load helper handling is a bit of a shortcut. The patch never pulls it for native object files and just ensures that the code is fine with that. In general, I think it would be nice to adjust the driver to pull it only when it's actually referenced, which would allow applying the same logic to the native symbol table on ARM64EC without worrying about pulling too much.
46 lines
1.8 KiB
ArmAsm
46 lines
1.8 KiB
ArmAsm
// REQUIRES: aarch64, x86
|
|
// RUN: split-file %s %t.dir && cd %t.dir
|
|
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64-windows crt1-arm64.s -o crt1-arm64.obj
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64-windows crt2-arm64.s -o crt2-arm64.obj
|
|
// RUN: llvm-mc -filetype=obj -triple=arm64ec-windows crt1-arm64ec.s -o crt1-arm64ec.obj
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-windows crt2-amd64.s -o crt2-amd64.obj
|
|
|
|
// Check that .CRT chunks are correctly sorted and that EC and native chunks are split.
|
|
|
|
// RUN: lld-link -out:out.dll -machine:arm64x -dll -noentry crt1-arm64.obj crt2-arm64.obj crt1-arm64ec.obj crt2-amd64.obj
|
|
// RUN: llvm-readobj --hex-dump=.CRT out.dll | FileCheck %s
|
|
|
|
// RUN: lld-link -out:out2.dll -machine:arm64x -dll -noentry crt1-arm64.obj crt1-arm64ec.obj crt2-arm64.obj crt2-amd64.obj
|
|
// RUN: llvm-readobj --hex-dump=.CRT out2.dll | FileCheck %s
|
|
|
|
// RUN: lld-link -out:out3.dll -machine:arm64x -dll -noentry crt2-amd64.obj crt1-arm64ec.obj crt2-arm64.obj crt1-arm64.obj
|
|
// RUN: llvm-readobj --hex-dump=.CRT out3.dll | FileCheck %s
|
|
|
|
// RUN: lld-link -out:out4.dll -machine:arm64ec -dll -noentry crt2-amd64.obj crt1-arm64ec.obj crt2-arm64.obj crt1-arm64.obj
|
|
// RUN: llvm-readobj --hex-dump=.CRT out4.dll | FileCheck %s
|
|
|
|
// CHECK: 0x180002000 01000000 00000000 02000000 00000000
|
|
// CHECK-NEXT: 0x180002010 03000000 00000000 11000000 00000000
|
|
// CHECK-NEXT: 0x180002020 12000000 00000000 13000000 00000000
|
|
|
|
#--- crt1-arm64.s
|
|
.section .CRT$A,"dr"
|
|
.xword 1
|
|
.section .CRT$Z,"dr"
|
|
.xword 3
|
|
|
|
#--- crt2-arm64.s
|
|
.section .CRT$B,"dr"
|
|
.xword 2
|
|
|
|
#--- crt1-arm64ec.s
|
|
.section .CRT$A,"dr"
|
|
.xword 0x11
|
|
.section .CRT$Z,"dr"
|
|
.xword 0x13
|
|
|
|
#--- crt2-amd64.s
|
|
.section .CRT$B,"dr"
|
|
.quad 0x12
|