[PATCH] D16201: [ELF/AArch64] - Implemented set of R_AARCH64_TLSDESC_* relocations.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 15 01:17:15 PDT 2016


grimar added a comment.

In http://reviews.llvm.org/D16201#374826, @zatrazz wrote:

> The only thing I am not sure about this patch is for the architecture that might use the new tlsdesc dialect, saying x86_64, i386, arm, and aarch64; the position seems to be architecture dependent. Using gold implementation as reference:
>
> - x86_64 places TLSDESC relocs, if any, after regular PLT followed by IRELATIVE
> - aarch64 and i386 seems to place IRELATIVE, if any, after regular PLT followed by TLSDESC


That should not be a problem. We are supporting gnu_ifunc only for static case. Therefore there are no any other than IRELATIVE relocations in rela.plt when they are used.
There is probably no real need in supporting dynamic case in closest future because as far as I know ifunc mostly needed to statically link against multiarch libc.
So for now I would not overcomplicate the solution for that.


http://reviews.llvm.org/D16201





More information about the llvm-commits mailing list