You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
# REQUIRES: aarch64
|
|
|
|
# RUN: echo -e ".global variable\n.global DllMainCRTStartup\n.text\nDllMainCRTStartup:\nret\n.data\nvariable:\n.long 42" > %t-lib.s
|
|
# RUN: llvm-mc -triple=aarch64-windows-gnu %t-lib.s -filetype=obj -o %t-lib.obj
|
|
# RUN: lld-link -out:%t-lib.dll -dll -entry:DllMainCRTStartup %t-lib.obj -lldmingw -implib:%t-lib.lib
|
|
|
|
# RUN: llvm-mc -triple=aarch64-windows-gnu %s -filetype=obj -o %t.obj
|
|
# RUN: lld-link -lldmingw -out:%t.exe -entry:main %t.obj %t-lib.lib -verbose
|
|
|
|
# RUN: llvm-readobj --coff-imports %t.exe | FileCheck -check-prefix=IMPORTS %s
|
|
# RUN: llvm-objdump -s %t.exe | FileCheck --check-prefix=CONTENTS %s
|
|
|
|
# IMPORTS: Import {
|
|
# IMPORTS-NEXT: Name: autoimport-arm64-data.s.tmp-lib.dll
|
|
# IMPORTS-NEXT: ImportLookupTableRVA: 0x2060
|
|
# IMPORTS-NEXT: ImportAddressTableRVA: 0x2070
|
|
# IMPORTS-NEXT: Symbol: variable (0)
|
|
# IMPORTS-NEXT: }
|
|
|
|
# Runtime pseudo reloc list header consisting of 0x0, 0x0, 0x1.
|
|
# First runtime pseudo reloc, with import from 0x2070,
|
|
# applied at 0x3000, with a size of 32 bits.
|
|
# CONTENTS: Contents of section .rdata:
|
|
# CONTENTS: 140002000 00000000 00000000 01000000 70200000
|
|
# CONTENTS: 140002010 00300000 40000000
|
|
# ptr: pointing at the IAT RVA at 0x2070
|
|
# relocs: pointing at the runtime pseudo reloc list at
|
|
# 0x2000 - 0x2018.
|
|
# CONTENTS: Contents of section .data:
|
|
# CONTENTS: 140003000 70200040 01000000 00200040 01000000
|
|
# CONTENTS: 140003010 18200040 01000000
|
|
|
|
.global main
|
|
.text
|
|
main:
|
|
ret
|
|
.data
|
|
ptr:
|
|
.quad variable
|
|
relocs:
|
|
.quad __RUNTIME_PSEUDO_RELOC_LIST__
|
|
.quad __RUNTIME_PSEUDO_RELOC_LIST_END__
|