<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 21, 2016 at 5:29 PM, Mehdi Amini <span dir="ltr"><<a href="mailto:mehdi.amini@apple.com" target="_blank">mehdi.amini@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-"><br>
> On Sep 21, 2016, at 5:16 PM, Duncan P. N. Exon Smith <<a href="mailto:dexonsmith@apple.com">dexonsmith@apple.com</a>> wrote:<br>
><br>
><br>
>> On 2016-Sep-20, at 17:03, Peter Collingbourne <<a href="mailto:peter@pcc.me.uk">peter@pcc.me.uk</a>> wrote:<br>
>><br>
>> (summarising IRC)<br>
>><br>
>> Rethinking a little, I would be inclined to agree that combined hosted and freestanding modules should not be compiled in hosted mode. Here's one scenario where we may break: suppose I LTO-link an implementation of memset compiled with -ffreestanding with a program compiled with -fhosted. With the proposed rule, the loop idiom recognizer may transform the body of the memset function into a self-call.<br>
><br>
> Agreed, that would be weird (and wrong).<br>
><br>
>> So that leaves either compile in freestanding or error out. Freestanding would produce a conservatively correct result, but it may lead to unintentional pessimisations, so unless we error out we'd likely want to warn on mixed. In principle erroring out could break existing builds, but I suppose these builds are already wrong in LTO mode, so it may not matter.<br>
>><br>
>> In my view the higher order bit is resolved: we should not support mixed hosted/freestanding "well". Users would be expected to compile the freestanding parts of their program in non-LTO mode. Vendors would not be able to compile their low-level runtime libraries with LTO. I would also agree with Eric that we should error out on mixed instead of trying to half-support it. But I'd like to get the opinions of others as well.<br>
><br>
> If we're not going to support it well (sadness), then I could be convinced of either: error, or freestanding-wins.  I'd like to hear what others think too.<br>
<br>
</span>I’d rather not default to freestanding: this would lead to confusing performance issue where the origin would be hard to figure.<br></blockquote><div><br></div><div>Right, that's why I proposed that if we do default to freestanding we should warn on mixed.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
—<br>
<span class="gmail-HOEnZb"><font color="#888888">Mehdi<br>
</font></span><div class="gmail-HOEnZb"><div class="gmail-h5"><br>
><br>
>> Peter<br>
>><br>
>>> On Tue, Sep 20, 2016 at 3:48 PM, Eric Christopher <<a href="mailto:echristo@gmail.com">echristo@gmail.com</a>> wrote:<br>
>>> Two thoughts on this:<br>
>>><br>
>>> 1) My personal preference is that certain command line flags that affect the final generated code get passed at LTO time. This is a fairly good example of that.<br>
>>> 2) I know that I'm not going to get #1, so figuring out a good way to encode additional module level flags is fine. For -ffreestanding I'm inclined to think that we should perhaps error on merge? With inlining we're not going to be able to tell the difference. Alternately the TLI function model can also be encoded on a function level and affect cross module inlining.<br>
><br>
> Doing TLI on the function model seems best to me, but maybe impractical.  Peter pointed out up-thread (or maybe in the PR?) that -globalopt uses TLI to find __cxa_at_exit.  Maybe it doesn't really need to?  Or -globalopt could get smarter somehow?<br></div></div></blockquote><div><br></div><div>Here's my earlier comment on function context: <a href="https://llvm.org/bugs/show_bug.cgi?id=30403#c6">https://llvm.org/bugs/show_bug.cgi?id=30403#c6</a><br></div><div><br></div><div>I suspect that it may be possible to encode on the function. I think I was mistaken about __cxa_atexit -- it looks like there is function context available in the only user, OptimizeEmptyGlobalCXXDtors.<br></div><div><br></div><div>I'll give it a shot and report back to the list if any other issues come up.</div><div><br></div><div>Peter</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail-HOEnZb"><div class="gmail-h5">
><br>
>>><br>
>>> -eric<br>
>>><br>
>>> On Fri, Sep 16, 2016 at 2:52 PM Duncan P. N. Exon Smith <<a href="mailto:dexonsmith@apple.com">dexonsmith@apple.com</a>> wrote:<br>
>>> +Eric and Akira (for thoughts on module flags)<br>
>>><br>
>>>> On 2016-Sep-16, at 12:47, Mehdi Amini <<a href="mailto:mehdi.amini@apple.com">mehdi.amini@apple.com</a>> wrote:<br>
>>>><br>
>>>>> On Sep 16, 2016, at 12:30 PM, Peter Collingbourne <<a href="mailto:peter@pcc.me.uk">peter@pcc.me.uk</a>> wrote:<br>
>>>>><br>
>>>>> In PR30403 we've been discussing how to encode -ffreestanding when using LTO. This bit is currently dropped during LTO because its only representation is in the TargetLibraryInfo created by clang (<a href="http://llvm-cs.pcc.me.uk/tools/clang/lib/CodeGen/BackendUtil.cpp#258" rel="noreferrer" target="_blank">http://llvm-cs.pcc.me.uk/<wbr>tools/clang/lib/CodeGen/<wbr>BackendUtil.cpp#258</a>).<br>
>>>>><br>
>>>>> The proposal is to introduce a module flag that we set in any translation unit compiled in hosted (i.e. -fno-freestanding) mode. At LTO time, if the combined module has this flag (i.e. if any of the inputs have this flag), we compile in hosted mode. This means that if we combine freestanding and hosted modules, the entire resulting module will be compiled in hosted mode.<br>
>>>>><br>
>>>>> The justification for this behaviour (per Duncan) is that hosted/freestanding is a property of the linkage environment, and if the standard library is claimed to be available for any one translation unit in the linkage unit, it should be available for every other translation unit in the linkage unit.<br>
>>><br>
>>> (Tangent, but related: I'm also wondering if this logic could/should be used to encode other TLI flags, such as -fveclib=<lib>.  I.e., if one translation unit has -fveclib=Accelerate, does that imply that we can use that for the entire linkage unit?  If there's a conflict, such as -fveclib=SVML in one and -fveclib=Accelerate in another, can we safely pick the first one arbitrarily?)<br>
>>><br>
>>>>> One question that arises is how to handle old modules which were compiled in hosted mode and lack the hosted module flag. With the above scheme, LTO would run in freestanding mode if there are no contemporaneous modules. I think this is probably fine, since (1) I'd normally expect there to be at least one contemporaneous module (i.e. the main program, as opposed to old modules belonging to a prebuilt library) and (2) the loop idiom recognizer has already been run over these modules at compile time, so even if all modules are old there's unlikely to be a huge perf regression.<br>
>>>><br>
>>>> As an alternative view: since we didn’t support -ffreestanding in LTO mode before, we should be able to just auto-upgrade these bitcode to the -fnofreestanding version.<br>
>>>><br>
>>>> That said, as you mentioned it is probably not the common case and I don’t expect us to hit this in practice.<br>
>>><br>
>>> I completely agree with Mehdi here.  We could auto-upgrade to -fno-freestanding, but it's also not important.<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> --<br>
>> --<br>
>> Peter<br>
><br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr">-- <div>Peter</div></div></div>
</div></div>