File: entry-weak-external.s

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (41 lines) | stat: -rw-r--r-- 1,688 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# REQUIRES: x86
# RUN: rm -rf %t && split-file %s %t

## Ensure that we resolve the entry point to the unmangled weak alias instead of
## the mangled library definition (which would fail with an undefined symbol).

# RUN: llvm-mc -triple x86_64-windows-msvc -filetype obj -o %t/entry-weak.obj %t/entry-weak.s
# RUN: llvm-mc -triple x86_64-windows-msvc -filetype obj -o %t/entry-mangled.obj %t/entry-mangled.s
# RUN: llvm-lib -out:%t/entry-mangled.lib %t/entry-mangled.obj
# RUN: lld-link -subsystem:console -entry:entry -out:%t/entry-weak-external.exe %t/entry-weak.obj %t/entry-mangled.lib
# RUN: llvm-readobj --file-headers %t/entry-weak-external.exe | FileCheck %s

## Ensure that we don't resolve the entry point to a weak alias pointing to an
## undefined symbol (which would have caused the entry point to be 0 instead of
## an actual address). I can't think of a way of triggering this edge case
## without using /force:unresolved, which means it likely doesn't matter in
## practice, but we still match link.exe's behavior for it.

# RUN: llvm-mc -triple x86_64-windows-msvc -filetype obj -o %t/entry-weak-undefined.obj %t/entry-weak-undefined.s
# RUN: lld-link -subsystem:console -entry:entry -force:unresolved -out:%t/entry-undefined-weak-external.exe \
# RUN:   %t/entry-weak-undefined.obj %t/entry-mangled.lib
# RUN: llvm-readobj --file-headers %t/entry-undefined-weak-external.exe | FileCheck %s

# CHECK: AddressOfEntryPoint: 0x1000

#--- entry-weak.s
.globl default_entry
default_entry:
	ret

.weak entry
entry = default_entry

#--- entry-mangled.s
.globl "?entry@@YAHXZ"
"?entry@@YAHXZ":
	jmp	does_not_exist

#--- entry-weak-undefined.s
.weak entry
entry = does_not_exist