On Fri, May 15, 2015 at 12:48 PM, Jan Hubicka <hubi...@ucw.cz> wrote: >> On Fri, May 15, 2015 at 9:27 AM, Alexander Monakov <amona...@ispras.ru> >> wrote: >> > Ping? Any comment about this patch? >> > >> > On Mon, 4 May 2015, Alexander Monakov wrote: >> > >> >> With -fno-plt, we don't have to reject even direct calls as sibcall >> >> candidates. >> >> >> >> This patch depends on '-fplt' flag that is introduced in another patch. >> >> >> >> This patch requires that with -fno-plt all sibcall candidates go through >> >> prepare_call_address that transforms the call to a GOT lookup. >> >> >> >> OK? >> >> * config/i386/i386.c (ix86_function_ok_for_sibcall): Check flag_plt. >> >> >> >> diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c >> >> index f29e053..b734350 100644 >> >> --- a/gcc/config/i386/i386.c >> >> +++ b/gcc/config/i386/i386.c >> >> @@ -5448,12 +5448,13 @@ ix86_function_ok_for_sibcall (tree decl, tree exp) >> >> /* If we are generating position-independent code, we cannot sibcall >> >> optimize any indirect call, or a direct call to a global function, >> >> as the PLT requires %ebx be live. (Darwin does not have a PLT.) */ >> >> if (!TARGET_MACHO >> >> && !TARGET_64BIT >> >> && flag_pic >> >> + && flag_plt >> >> && (decl && !targetm.binds_local_p (decl))) >> >> return false; >> >> >> >> /* If we need to align the outgoing stack, then sibcalling would >> >> unalign the stack, which may break the called function. */ >> >> if (ix86_minimum_incoming_stack_boundary (true) >> >> >> >> I think it should be done via psABI change similar to >> >> https://groups.google.com/forum/#!topic/x86-64-abi/n8GYMpqvBxI >> >> which I have implemented on users/hjl/relax branch in binutils. > > OK, I am trying to understand how relax branch works and what difference it > makes. > As I underestand it, the main purpose is to be able to make relaxed call of > > call function > > that will, in 64bit mode, either result to RIP relative call with extra NOP > just > before the instruction if FUNCTION binds within the DSO or to indirect call > through > GOT bypassing the PLT. This saves overhead of PLT and increase every such > call > by extra NOP for no-LTO builds and even in LTO when the symbol is defined but > interposable. This is actually really nice trick. > > Now this is about 32bit mode where explicit GOT pointer register is needed > (how this work with large code model on x86-64?). It is needed by PLT, but I > suppose > to implement the same relaxation for 32bit it would need to use EBX to lookup > the > GOT pointer, too, so the check above would still be valid. >
With relax branch in 32-bit, there are 2 cases: 1. PIC or PIE: We generate set up EBX relax call foo@PLT It is almost the same as we do now, except for the relax prefix. If foo is defined in another shared library or may be preempted, linker will generate call *foo@GOTPLT(%ebx) If foo turns out local, linker will output relax call foo 2. Non PIC/PIE: We generate relax call foo If foo is defined in a DSO, linker will generate call/jmp *foo@GOTPLT We don't set up EBX in this case. If foo turns out local, linker will output relax call foo -- H.J.