<div dir="ltr"><div>This sounds right to me.</div><div><br></div><div>IIUC, historically, readonly and readnone are meant to model the "pure" and "const" GCC attributes. These attributes make pretty strong guarantees:</div><div><br></div><div><div>"[a pure] function can be subject to common subexpression elimination and loop optimization just as an arithmetic operator would be. These functions should be declared with the attribute pure [...] Interesting non-pure functions are functions with infinite loops or those depending on volatile memory or other system resource, that may change between two consecutive calls (such as feof in a multithreading environment)."</div><div><br></div><div>In particular, pure/const imply termination - something that's not entirely clear w.r.t readonly. However, apparently, they don't imply nothrow. I've actually always thought they *do* imply it - and said so on-list :-) - but it looks like GCC itself doesn't interpret them that way. E.g. see John Regher's example here: <a href="https://t.co/REzy5m1tT3">https://t.co/REzy5m1tT3</a></div><div>So there's at least one use-case for possibly throwing readonly/readnone.</div><div><div><br></div><div>As a side note, I'm slightly less optimistic about the amount of required code fixes. One thing that comes to mind is that we need to make sure we mark all(?) the intrinsics currently marked readonly/argmemonly/readnone as nothrow. This should be mostly mechanical, I hope, but it's a decent amount of churn.</div><div><br></div><div>Michael<br></div><div><br></div><div><br></div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 2 January 2017 at 22:18, Sanjoy Das 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">LLVM today does not clearly specify if a function specified to not<br>
write to memory (i.e. readonly or readnone) is allowed to throw<br>
exceptions.<br>
<br>
LangRef is ambiguous on this issue.  The normative statement is<br>
"[readnone/readonly functions] cannot unwind exceptions by calling the<br>
C++ exception throwing methods" which does not decide an answer for<br>
non C++ languages.  It used to say (h/t Daniel Berlin): "This means<br>
that it cannot unwind exceptions by calling the C++ exception throwing<br>
methods, but could use the unwind instruction.", but that bit of<br>
documentation died with the unwind instruction.<br>
<br>
I'd like to separate unwindability from memory effects, and officially<br>
change our stance to be "readonly / readnone functions are allowed to<br>
throw exceptions".<br>
<br>
Here are two supporting reasons:<br>
<br>
# `resume` is already modeled as readnone<br>
<br>
The easiest way to verify this is via FunctionAttrs; it infers the<br>
following function as readnone:<br>
<br>
define void @f() personality i8 42 {<br>
  resume i32 0<br>
}<br>
<br>
<br>
Modeling `resume` as `readnone` is defensible -- it is a control flow<br>
transfer instruction, not so different from `ret`.  Moreover, it<br>
_cannot_ be modeled as having observable side effects or writes to<br>
memory (`resume` cannot send packets over the network or write to a<br>
global) because otherwise we'd be unable to inline @f into @g below:<br>
<br>
define void @f(i32 %x) personality i32 3 {<br>
  resume i32 %x<br>
}<br>
<br>
define i32 @g(i32 %x) personality i32 3 {<br>
  invoke void @f(i32 %x) to label %normal unwind label %unwind<br>
<br>
normal:<br>
  ret i32 0<br>
<br>
unwind:<br>
  %t = landingpad i32 cleanup<br>
  ret i32 %t<br>
}<br>
<br>
since it gets rid of a `resume` and thus a side effect (by<br>
assumption).<br>
<br>
<br>
# We're probably already there (but we need an audit)<br>
<br>
All said and done, the situation is not as "loosey goosey" as I made<br>
it sound like.  mayHaveSideEffects() is defined as "mayWriteToMemory()<br>
|| mayThrow()"; and this shows in e.g. EarlyCSE which will refuse to<br>
DCE the call to @f in @g<br>
<br>
declare void @f() readnone<br>
<br>
define void @g() {<br>
  call void @f()<br>
  ret void<br>
}<br>
<br>
unless @f is also marked nounwind.<br>
<br>
I've already fixed the one other instance I was aware of in<br>
<a href="https://reviews.llvm.org/rL290794" rel="noreferrer" target="_blank">https://reviews.llvm.org/<wbr>rL290794</a> (but I will revert that patch if we<br>
decide against this RFC).<br>
<br>
We won't lose any expressive power either -- if there are situations<br>
where we have important optimizations firing under the "readonly<br>
implies nounwind" assumption, we can either<br>
<br>
 - Teach FunctionAttrs to infer nounwind for readonly functions with<br>
   C++ unwind personalities.<br>
<br>
 - For external declarations generated by the compiler (say from the<br>
   standard library): if the functions are actually nounwind, mark<br>
   them as nounwind; and not rely on LLVM inferring nounwind from<br>
   readonly.<br>
<br>
<br>
My (unrealistic?) hope is that this would mostly be a specification<br>
change and not involve a lot of code fixes.<br>
<br>
The change is also trivially upgrade-safe for older bitcode -- calls<br>
to readonly / readnone functions that do not throw _may_ get optimized<br>
less, but that should not be a correctness problem.<br>
<br>
What do you think?<br>
<br>
-- Sanjoy<br>
______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div>