Skip to content

[LinkerWrapper] Fix resolution of weak symbols during LTO #68215

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions clang/tools/clang-linker-wrapper/ClangLinkerWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,7 @@ Error linkBitcodeFiles(SmallVectorImpl<OffloadFile> &InputFiles,
StringRef Arch = Args.getLastArgValue(OPT_arch_EQ);

SmallVector<OffloadFile, 4> BitcodeInputFiles;
DenseSet<StringRef> StrongResolutions;
DenseSet<StringRef> UsedInRegularObj;
DenseSet<StringRef> UsedInSharedLib;
BumpPtrAllocator Alloc;
Expand All @@ -608,6 +609,18 @@ Error linkBitcodeFiles(SmallVectorImpl<OffloadFile> &InputFiles,
file_magic Type = identify_magic(Buffer.getBuffer());
switch (Type) {
case file_magic::bitcode: {
Expected<IRSymtabFile> IRSymtabOrErr = readIRSymtab(Buffer);
if (!IRSymtabOrErr)
return IRSymtabOrErr.takeError();

// Check for any strong resolutions we need to preserve.
for (unsigned I = 0; I != IRSymtabOrErr->Mods.size(); ++I) {
for (const auto &Sym : IRSymtabOrErr->TheReader.module_symbols(I)) {
if (!Sym.isFormatSpecific() && Sym.isGlobal() && !Sym.isWeak() &&
!Sym.isUndefined())
StrongResolutions.insert(Saver.save(Sym.Name));
}
}
BitcodeInputFiles.emplace_back(std::move(File));
continue;
}
Expand Down Expand Up @@ -696,6 +709,7 @@ Error linkBitcodeFiles(SmallVectorImpl<OffloadFile> &InputFiles,
// it is undefined or another definition has already been used.
Res.Prevailing =
!Sym.isUndefined() &&
!(Sym.isWeak() && StrongResolutions.contains(Sym.getName())) &&
PrevailingSymbols.insert(Saver.save(Sym.getName())).second;

// We need LTO to preseve the following global symbols:
Expand Down
33 changes: 33 additions & 0 deletions openmp/libomptarget/test/offloading/weak.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// RUN: %libomptarget-compile-generic -DA -c -o %t-a.o
// RUN: %libomptarget-compile-generic -DB -c -o %t-b.o
// RUN: %libomptarget-compile-generic %t-a.o %t-b.o && \
// RUN: %libomptarget-run-generic | %fcheck-generic

#if defined(A)
__attribute__((weak)) int x = 999;
#pragma omp declare target to(x)
#elif defined(B)
int x = 42;
#pragma omp declare target to(x)
__attribute__((weak)) int y = 42;
#pragma omp declare target to(y)
#else

#include <stdio.h>

extern int x;
#pragma omp declare target to(x)
extern int y;
#pragma omp declare target to(y)

int main() {
x = 0;

#pragma omp target update from(x)
#pragma omp target update from(y)

// CHECK: PASS
if (x == 42 && y == 42)
printf("PASS\n");
}
#endif