<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Mon, 1 Oct 2018 at 16:16, George Karpenkov 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><br><div><br><blockquote type="cite"><div>On Sep 18, 2018, at 12:40 AM, David Chisnall <<a href="mailto:David.Chisnall@cl.cam.ac.uk" target="_blank">David.Chisnall@cl.cam.ac.uk</a>> wrote:</div><br class="m_5800431252883899930Apple-interchange-newline"><div><div dir="auto"><div><span style="background-color:rgba(255,255,255,0)">It’s worth noting that this warning is very easy to silence and it’s probably better to do that in most cases.  There are two common ways of silencing the warning.</span></div></div></div></blockquote><div><br></div><div>1. There’s actually three ways: one can also do __attribute__((unused))</div></div></div></blockquote><div><br></div><div>Since C++17, there's four ways: you can also use the standard [[maybe_unused]] attribute. It makes sense for us to choose a direction that's aligned with that (doubly so if C adopts that attribute if/when it picks up C++ attribute syntax).</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><div><div>2. All three ways are bad for some use cases.</div><div>As a data point, I have recently tried compiling the static analyzer core with -Wunused-parameter,</div><div>and have removed 100+ lines of dead code, so the warning is clearly useful.</div><div>I really wish there was a way to enable it in a not-so-disruptive way.</div><div><br></div><div>One pattern for which no good suppression work is a method in an abstract base class with a dummy implementation:</div><div><br></div><div>e.g. “void foo(A a, B b, C c) {}”</div><div><br></div><div>Then all three suppression ways are bad:</div><div><br></div><div> - Adding "(void) p” for each parameter adds unnecessary code to the method body, hiding the fact that this is a dummy do-nothing implementation</div><div> - __attribute__((unused)) makes declaration much harder to read, and hides the meaning</div><div> - Removing the parameter name makes the documentation unusable</div><div><br></div><div>George</div><br><blockquote type="cite"><div><div dir="auto"><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">Starting with:</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)">int foo(int a, int b)</span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">You can (in all languages) do this:</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)">(void)b;</span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">To indicate that `b` is unused.  Most projects have an `UNUSED` macro to do this.  This improves code readability by indicating that the parameter is intentionally unused in this implementation of the function.  C++ provides a nicer way of doing this and you can just rewrite the function declaration to:</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)">int foo(int a, int)</span></div><div><span style="background-color:rgba(255,255,255,0)">```</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">Now the second parameter exists, but has no name and so is implicitly unused because nothing can possibly refer to it.  This is even easier to read because you know from the first line of the function that this parameter will not be used in the definition.</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">I believe that clang-tidy can perform the latter transformation automatically, though it’s generally a good idea to audit the non-uses of parameters to check that they’re intentional and unavoidable.</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">David </span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span><div></div><font><span style="background-color:rgba(255,255,255,0)">On 18 Sep 2018, at 02:40, George Karpenkov via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br><br></span></font></div><blockquote type="cite"><font><span style="background-color:rgba(255,255,255,0)">Many projects, including LLVM have to turn -Wunused-param off, as it has too many false positives.<br><br>Most false positives stem from the fact that often a function has to take a parameter not because it wants to, but because:<br><br>1. It’s part of an interface, and has to be API/ABI compatible<br>2. It overrides another function which does need that parameter<br><br>However, this warning is still very useful when the function is:<br><br>- static <br>- private<br>- in an anonymous namespace<br><br>This asks for a warning on unused parameters which is restricted to “private" (static local / etc) functions.<br>Am I missing something there?<br>Has anyone tried to implement such a warning before?<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="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a></span></font><br></blockquote></div></div></blockquote></div><br></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="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div></div>