[PATCH] D35119: [ELF] Fix functionality treating IFunc definitions in DSOs as functions.

George Rimar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 7 05:18:03 PDT 2017


grimar created this revision.
Herald added a subscriber: emaste.

It was intially implemented in https://reviews.llvm.org/D19517 but then broken.
Patch fixes PR33707, testcase is based on PR's case.


https://reviews.llvm.org/D35119

Files:
  ELF/Symbols.h
  test/ELF/Inputs/gnu-ifunc-dso.s
  test/ELF/gnu-ifunc-dso.s


Index: test/ELF/gnu-ifunc-dso.s
===================================================================
--- test/ELF/gnu-ifunc-dso.s
+++ test/ELF/gnu-ifunc-dso.s
@@ -0,0 +1,13 @@
+# REQUIRES: x86
+# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %S/Inputs/gnu-ifunc-dso.s -o %t1.o
+# RUN: ld.lld -shared %t1.o -o %t.so
+# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t2.o
+# RUN: ld.lld -shared %t2.o %t.so -o %t
+# RUN: llvm-readobj -dyn-relocations %t | FileCheck %s
+
+# CHECK:      Dynamic Relocations {
+# CHECK-NEXT:   0x1000 R_X86_64_64 foo 0x0
+# CHECK-NEXT: }
+
+.data
+ .quad foo
Index: test/ELF/Inputs/gnu-ifunc-dso.s
===================================================================
--- test/ELF/Inputs/gnu-ifunc-dso.s
+++ test/ELF/Inputs/gnu-ifunc-dso.s
@@ -0,0 +1,3 @@
+.type foo STT_GNU_IFUNC
+.globl foo
+foo:
Index: ELF/Symbols.h
===================================================================
--- ELF/Symbols.h
+++ ELF/Symbols.h
@@ -218,7 +218,7 @@
         Verdef(Verdef), ElfSym(ElfSym) {
     // IFuncs defined in DSOs are treated as functions by the static linker.
     if (isGnuIFunc())
-      Type = llvm::ELF::STT_FUNC;
+      this->Type = llvm::ELF::STT_FUNC;
     this->File = File;
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35119.105622.patch
Type: text/x-patch
Size: 1236 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170707/5d96ffca/attachment.bin>


More information about the llvm-commits mailing list