Skip to content

Commit 9c9eb60

Browse files
committed
[JITLink][MachO] Re-apply b64afad, MachO linker-private support, with fixes.
Global symbols with linker-private prefixes should be resolvable across object boundaries, but internal symbols with linker-private prefixes should not.
1 parent 4dfe92e commit 9c9eb60

File tree

6 files changed

+65
-8
lines changed

6 files changed

+65
-8
lines changed

llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,14 @@ Linkage MachOLinkGraphBuilder::getLinkage(uint16_t Desc) {
6464
}
6565

6666
Scope MachOLinkGraphBuilder::getScope(StringRef Name, uint8_t Type) {
67-
if (Name.startswith("l"))
68-
return Scope::Local;
6967
if (Type & MachO::N_PEXT)
7068
return Scope::Hidden;
71-
if (Type & MachO::N_EXT)
72-
return Scope::Default;
69+
if (Type & MachO::N_EXT) {
70+
if (Name.startswith("l"))
71+
return Scope::Hidden;
72+
else
73+
return Scope::Default;
74+
}
7375
return Scope::Local;
7476
}
7577

llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,8 @@ class MachOJITLinker_arm64 : public JITLinker<MachOJITLinker_arm64> {
560560
*(ulittle32_t *)FixupPtr = Value;
561561
break;
562562
}
563-
case Pointer64: {
563+
case Pointer64:
564+
case Pointer64Anon: {
564565
uint64_t Value = E.getTarget().getAddress() + E.getAddend();
565566
*(ulittle64_t *)FixupPtr = Value;
566567
break;

llvm/lib/ExecutionEngine/Orc/Mangling.cpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer) {
8989
if (!Obj)
9090
return Obj.takeError();
9191

92+
bool IsMachO = isa<object::MachOObjectFile>(Obj->get());
93+
9294
SymbolFlagsMap SymbolFlags;
9395
for (auto &Sym : (*Obj)->symbols()) {
9496
// Skip symbols not defined in this object file.
@@ -113,14 +115,20 @@ getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer) {
113115
auto SymFlags = JITSymbolFlags::fromObjectSymbol(Sym);
114116
if (!SymFlags)
115117
return SymFlags.takeError();
118+
119+
// Strip the 'exported' flag from MachO linker-private symbols.
120+
if (IsMachO && Name->startswith("l"))
121+
*SymFlags &= ~JITSymbolFlags::Exported;
122+
116123
SymbolFlags[InternedName] = std::move(*SymFlags);
117124
}
118125

119126
SymbolStringPtr InitSymbol;
120127

121-
if (auto *MachOObj = dyn_cast<object::MachOObjectFile>(Obj->get())) {
122-
for (auto &Sec : MachOObj->sections()) {
123-
auto SecType = MachOObj->getSectionType(Sec);
128+
if (IsMachO) {
129+
auto &MachOObj = cast<object::MachOObjectFile>(*Obj->get());
130+
for (auto &Sec : MachOObj.sections()) {
131+
auto SecType = MachOObj.getSectionType(Sec);
124132
if ((SecType & MachO::SECTION_TYPE) == MachO::S_MOD_INIT_FUNC_POINTERS) {
125133
std::string InitSymString;
126134
raw_string_ostream(InitSymString)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Supplies a global definition, l_foo, with a linker-private prefix. Since this
2+
# definition is marked as global it should be resolvable outside the object.
3+
4+
.section __TEXT,__text,regular,pure_instructions
5+
.macosx_version_min 10, 14
6+
.globl l_foo
7+
.p2align 4, 0x90
8+
l_foo:
9+
xorl %eax, %eax
10+
retq
11+
12+
.subsections_via_symbols
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Supplies an internal definition, l_foo, with a linker-private prefix. Since
2+
# this definition is not marked as global it should not be resolvable outside
3+
# the object.
4+
5+
.section __TEXT,__text,regular,pure_instructions
6+
.macosx_version_min 10, 14
7+
.p2align 4, 0x90
8+
l_foo:
9+
xorl %eax, %eax
10+
retq
11+
12+
.subsections_via_symbols
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# RUN: rm -rf %t && mkdir -p %t
2+
# RUN: llvm-mc -triple=x86_64-apple-macosx10.9 -filetype=obj \
3+
# RUN: -o %t/global_lp_def.o %S/Inputs/MachO_global_linker_private_def.s
4+
# RUN: llvm-mc -triple=x86_64-apple-macosx10.9 -filetype=obj \
5+
# RUN: -o %t/internal_lp_def.o %S/Inputs/MachO_internal_linker_private_def.s
6+
# RUN: llvm-mc -triple=x86_64-apple-macosx10.9 -filetype=obj \
7+
# RUN: -o %t/macho_lp_test.o %s
8+
# RUN: llvm-jitlink -noexec %t/global_lp_def.o %t/macho_lp_test.o
9+
# RUN: not llvm-jitlink -noexec %t/internal_lp_def.o %t/macho_lp_test.o
10+
#
11+
# Check that we can resolve global symbols whose names start with the
12+
# linker-private prefix 'l' across object boundaries, and that we can't resolve
13+
# internals with the linker-private prefix across object boundaries.
14+
15+
.section __TEXT,__text,regular,pure_instructions
16+
.macosx_version_min 10, 14
17+
.globl _main
18+
.p2align 4, 0x90
19+
_main:
20+
jmp l_foo
21+
22+
.subsections_via_symbols

0 commit comments

Comments
 (0)