<div dir="ltr">I'm not sure whether we'd want <i>every</i> unreachable to emit a trap, but I do think we should try not to let code fall out of one function and into a completely unrelated one. That is: I'd propose that the last basic-block in every function should get a trap instruction added unless it already ends in a control transfer instruction (jmp, ret, or branch -- call doesn't count, since it may return).</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Mar 19, 2021 at 5:12 PM David Blaikie via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<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 dir="ltr">Just writing it down in this thread - this issue's been discussed a bit in this bug: <a href="https://bugs.llvm.org/show_bug.cgi?id=49599" target="_blank">https://bugs.llvm.org/show_bug.cgi?id=49599</a><br><br>And yeah, I'm considering adopting MachO's default (TrapUnreachable + NoTrapOnNoreturn) as the default for LLVM (will require some design discussion, no doubt) since it seems to capture most of the functionality desired. Maybe there are some cases where we have extra unreachables that could've otherwise been optimized away/elided, but hopefully nothing drastic.<br><br>(some platforms still need the trap-on-noreturn - Windows+AArch64 and maybe Sony, etc - happy for some folks to opt into that). I wonder whether TrapUnreachable shouldn't even be an option anymore though, if it becomes load bearing for correctness - or should it become a fallback option - "no trap unreachable" maybe means nop instead of trap, in case your target can't handle a trap sometimes (I came across an issue with AMDGPU not being able to add traps to functions that it isn't expecting - the function needs some special attribute to have a trap in it - but I guess it can be updated to add that attribute if the function has an unreachable in it (though then it has to recreate the no-trap-on-noreturn handling too when deciding whether to add the attribute... ))</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jul 27, 2020 at 9:20 AM Robinson, Paul <<a href="mailto:paul.robinson@sony.com" target="_blank">paul.robinson@sony.com</a>> wrote:<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>
> -----Original Message-----<br>
> From: llvm-dev <<a href="mailto:llvm-dev-bounces@lists.llvm.org" target="_blank">llvm-dev-bounces@lists.llvm.org</a>> On Behalf Of Hans<br>
> Wennborg via llvm-dev<br>
> Sent: Monday, July 27, 2020 9:11 AM<br>
> To: David Blaikie <<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>><br>
> Cc: llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>>; Clang Dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>><br>
> Subject: Re: [llvm-dev] [cfe-dev] Zero length function pointer equality<br>
> <br>
> On Sat, Jul 25, 2020 at 3:40 AM David Blaikie <<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>> wrote:<br>
> ><br>
> > Looks perfect to me!<br>
> ><br>
> > well, a couple of questions: Why a noop, rather than int3/ud2/etc?<br>
> <br>
> Probably no reason.<br>
<br>
FTR there is TargetOptions.TrapUnreachable, which some targets turn on<br>
(for X86 it's on for MachO and PS4), this turns 'unreachable' into ud2.<br>
Clearly it covers more than "empty" functions but is probably the kind<br>
of thing you're looking for.<br>
--paulr<br>
<br>
> <br>
> > Might be worth using the existing code that places such an instruction<br>
> > when building at -O0?<br>
> <br>
> I wasn't aware of that. Does it happen for all functions (e.g. I think<br>
> I got pulled into this due to functions with the naked attribute)?<br>
> <br>
> > & you mention that this causes problems on Windows - but ICF done by<br>
> > the Windows linker does not cause such problems? (I'd have thought<br>
> > they'd result in the same situation - two functions described as being<br>
> > at the same address?) is there a quick summary of why those two cases<br>
> > turn out differently?<br>
> <br>
> The case that we hit was that the Control Flow Guard table of<br>
> addresses in the binary ended up listing the same address twice, which<br>
> the loader didn't expect. It may be that the linker took care to avoid<br>
> that for ICF (if two ICF'd functions got the same address, only list<br>
> it once in the CFG table) but still didn't handle the "empty function"<br>
> problem.<br>
> <br>
> > On Fri, Jul 24, 2020 at 6:17 AM Hans Wennborg <<a href="mailto:hans@chromium.org" target="_blank">hans@chromium.org</a>> wrote:<br>
> > ><br>
> > > Maybe we can just expand this to always apply:<br>
> <a href="https://reviews.llvm.org/D32330" rel="noreferrer" target="_blank">https://reviews.llvm.org/D32330</a><br>
> > ><br>
> > > On Fri, Jul 24, 2020 at 2:46 AM David Blaikie via cfe-dev<br>
> > > <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
> > > ><br>
> > > > LLVM can produce zero length functions from cases like this (when<br>
> > > > optimizations are enabled):<br>
> > > ><br>
> > > > void f1() { __builtin_unreachable(); }<br>
> > > > int f2() { /* missing return statement */ }<br>
> > > ><br>
> > > > This code is valid, so long as the functions are never called.<br>
> > > ><br>
> > > > I believe C++ requires that all functions have a distinct address<br>
> (ie:<br>
> > > > &f1 != &f2) and LLVM optimizes code on this basis (assert(f1 == f2)<br>
> > > > gets optimized into an unconditional assertion failure)<br>
> > > ><br>
> > > > But these zero length functions can end up with identical addresses.<br>
> > > ><br>
> > > > I'm unaware of anything in the C++ spec (or the LLVM langref) that<br>
> > > > would indicate that would allow distinct functions to have identical<br>
> > > > addresses - so should we do something about this in the LLVM<br>
> backend?<br>
> > > > add a little padding? a nop instruction? (if we're adding an<br>
> > > > instruction anyway, perhaps we might as well make it an int3?)<br>
> > > ><br>
> > > > (I came across this due to DWARF issues with zero length functions &<br>
> > > > thinking about if/how this should be supported)<br>
> > > > _______________________________________________<br>
> > > > cfe-dev mailing list<br>
> > > > <a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
> > > > <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div>