[PATCH] D56782: [PPC64] Preserve LocalEntry when linking
Leandro Lupori via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 14 06:54:11 PST 2019
luporl updated this revision to Diff 186838.
luporl added a comment.
Herald added a subscriber: kbarton.
- Addressed review's comments
- Added a test for the fix
Repository:
rLLD LLVM Linker
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56782/new/
https://reviews.llvm.org/D56782
Files:
ELF/SyntheticSections.cpp
test/ELF/ppc64-local-entry.s
Index: test/ELF/ppc64-local-entry.s
===================================================================
--- /dev/null
+++ test/ELF/ppc64-local-entry.s
@@ -0,0 +1,47 @@
+# REQUIRES: ppc
+
+# RUN: llvm-mc -filetype=obj -triple=powerpc64 %s -o %t
+# RUN: ld.lld -r %t -o %t2
+# RUN: llvm-objdump -s -section=.symtab %t2 | FileCheck %s
+
+.text
+.abiversion 2
+.globl _start
+.p2align 2
+.type _start, at function
+
+_start:
+.Lfunc_begin0:
+.Lfunc_gep0:
+ addis 2, 12, .TOC.-.Lfunc_gep0 at ha
+ addi 2, 2, .TOC.-.Lfunc_gep0 at l
+.Lfunc_lep0:
+ .localentry _start, .Lfunc_lep0-.Lfunc_gep0
+ # The code below is not important, it just needs to access some
+ # global data or function, in order to use the TOC.
+ # In this case, it performs the following:
+ # g += 10;
+ # Also note that this code is not intended to be run, but only
+ # to check if the linker will preserve the localentry info.
+ addis 3, 2, g at toc@ha
+ addi 3, 3, g at toc@l
+ lwz 4, 0(3)
+ addi 4, 4, 10
+ stw 4, 0(3)
+ blr
+ .long 0
+ .quad 0
+.Lfunc_end0:
+ .size _start, .Lfunc_end0-.Lfunc_begin0
+
+ .type g, at object # @g
+ .lcomm g,4,4
+
+// We expect the st_other byte to be 0x60:
+// localentry = 011 (gep + 2 instructions), reserved = 000,
+// visibility = 00 (STV_DEFAULT)
+// Currently, llvm-objdump does not support displaying
+// st_other's PPC64 specific flags, thus we check the
+// result of the hexdump of .symtab section.
+
+// CHECK: 0070 00000000 00000000 00000009 12600001
Index: ELF/SyntheticSections.cpp
===================================================================
--- ELF/SyntheticSections.cpp
+++ ELF/SyntheticSections.cpp
@@ -2012,6 +2012,11 @@
ESym->setVisibility(Sym->Visibility);
}
+ // The 3 most significant bits of st_other are used by OpenPOWER ABI.
+ // See getPPC64GlobalEntryToLocalEntryOffset() for more details.
+ if (Config->EMachine == EM_PPC64)
+ ESym->st_other |= Sym->StOther & 0xe0;
+
ESym->st_name = Ent.StrTabOffset;
ESym->st_shndx = getSymSectionIndex(Ent.Sym);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56782.186838.patch
Type: text/x-patch
Size: 2025 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190214/cbfb73bf/attachment.bin>
More information about the llvm-commits
mailing list