<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 12, 2015 at 11:00 AM, Duncan P. N. Exon Smith via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span class=""><br>
> On 2015-Oct-12, at 10:41, Sanjoy Das <<a href="mailto:sanjoy@playingwithpointers.com">sanjoy@playingwithpointers.com</a>> wrote:<br>
><br>
><br>
><br>
> Vedant Kumar wrote:<br>
>>>> That's a neat idea. To summarize: make Function have 3 optional operands. (For context -- Function currently has 1 optional operand, and my proposal is to move to 0.)<br>
>>>><br>
>>>> Could someone else chime in on what they'd like to see?<br>
>>> Sanjoy's idea makes sense to me, but only if we never need to add<br>
>>> prefix/prologue data after functions are created. Are there any places<br>
>>> where we need/want to add them after the fact?<br>
>><br>
>> I think so. I see:<br>
>><br>
>> LinkModules.cpp: Dst.setPrefixData(MapValue(Src.getPrefixData(), ValueMap,<br>
>> BitcodeReader.cpp: FunctionPrologueWorklist.back().first->setPrologueData(C);<br>
>> InlineFunction.cpp: Caller->setPersonalityFn(CalledPersonality);<br>
>><br>
>> Some of these sites could be refactored so that the Functions are created with the prefix/prologue data they need. I don't think that's possible for personality functions (see my third example).<br>
>><br>
>> Would we inhibit any future patches which add prefix/prologue data to Functions on the fly by taking this approach?<br>
><br>
> You should always be able to create a new `llvm::Function` instance (and RAUW it in) if you want to add prefix/prologue data to functions after they've been created; just like you have to do today for any other `llvm::User`s that do not have hung off uses.<br>
<br>
</span>It's possible, but a lot more involved with `Function`s. Besides<br>
RAUW, you need to transfer over all the basic blocks.<br>
<br>
This seems kind of wrong to me, if we expect it to happen.<br>
<span class=""><br>
> Which brings me to -- can you use hung off uses for this? These use lists can be resized on the fly, so you should be able to add and remove prologue data on the fly. If you're using hung off uses, you'll probably still need a descriptor to remember whether / which operands are prologue data etc.<br>
<br>
</span>Sure, this is another option. It might be simplest. I'd be<br>
tempted to start with a 0/3 choice (if we allocate any hung-off<br>
uses, allocate enough for all three operands) to simplify the<br>
logic. Although I can't remember right now whether that's<br>
legal (having nullptr operands followed by real ones)...<br>
<span class=""><br>
>>>>>> Personalities are stored as ``optional`` Function operands. We actually always<br>
>>>>>> allocate the space for this ``optional`` operand: there's a FIXME in the<br>
>>>>>> destructor for Function about this.<br>
<br>
</span>Makes me wonder, why didn't we use hung off uses to begin with?<br>
Do functions "usually" have personality functions, for some<br>
definition of?<br></blockquote><div><br></div><div>Depends. In C++? It's pretty common to have objects which have non-trivial destructors on the stack which means calling a function will be an invoke which will require the function to have a personality. In C? It's pretty rare. You'd need something like __attribute__((cleanup)) to do it, the most common source of this will be something like pthread_cleanup_push. If I recall correctly, Julia sets the personality on functions regardless of whether or not there are any invokes, they need the AsmPrinter to scribble something down. I can't say for other languages (Rust, etc.). From what I understand, Swift doesn't use landingpad for EH so they wouldn't need the personality set.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div class=""><div class="h5">_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div></div>