From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 85519 invoked by alias); 18 May 2015 18:24:53 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 85508 invoked by uid 89); 18 May 2015 18:24:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: smtp.ispras.ru Received: from smtp.ispras.ru (HELO smtp.ispras.ru) (83.149.199.79) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 18 May 2015 18:24:50 +0000 Received: from [10.10.3.121] (unknown [83.149.199.91]) by smtp.ispras.ru (Postfix) with ESMTP id E31E3214EC; Mon, 18 May 2015 21:24:47 +0300 (MSK) Date: Mon, 18 May 2015 18:25:00 -0000 From: Alexander Monakov To: Jan Hubicka cc: "H.J. Lu" , GCC Patches , Rich Felker , Uros Bizjak Subject: Re: [PATCH i386] Allow sibcalls in no-PLT PIC In-Reply-To: <20150515194824.GB14415@kam.mff.cuni.cz> Message-ID: References: <1430757479-14241-1-git-send-email-amonakov@ispras.ru> <1430757479-14241-5-git-send-email-amonakov@ispras.ru> <20150515194824.GB14415@kam.mff.cuni.cz> User-Agent: Alpine 2.11 (LNX 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2015-05/txt/msg01607.txt.bz2 On Fri, 15 May 2015, Jan Hubicka 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. > > The patches makes sense to be given that we support -fno-plt now. After this message the discussion diverged in the direction of H.J.Lu's proposed relaxation scheme involving new type of relocations. I'm not clear if my patch is actually approved. I'd like to point out that it doesn't clash with H.J.Lu's work. It improves codegen by allowing sibcalls in more circumstances. Alexander