This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] BZ #19590: Fixed build of shared objects that use libmvec.so functions


2016-02-10 15:08 GMT+03:00 Florian Weimer <fweimer@redhat.com>:
> On 02/10/2016 12:36 PM, Andrew Senkevich wrote:
>
>>  #define ALIAS_IMPL(alias, target) \
>>  ENTRY (alias); \
>> -       call target; \
>> +       call target@PLT; \
>>         ret; \
>>  END (alias)
>
> This needs a comment why this cannot be a tail call (JMP).

Yes, it should be jmp.

> Out of curiosity, why is it not possible to avoid this indirection?  Why
> is this logic required in libmvec_nonshared.a?

It is workaround to exclude unnecessary symbol aliases in libmvec.so
(BZ #19058).


--
WBR,
Andrew


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]