<div dir="auto">Good point, but I don't think that it should be done -- are checkers modifying the ProgramState so heavily this simple check would be too costly, if avoidable? I personally do not believe so.</div><div class="gmail_extra"><br><div class="gmail_quote">On 9 Oct 2018 14:50, "Whisperity" <<a href="mailto:whisperity@gmail.com">whisperity@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div lang="HU" link="blue" vlink="#954F72"><div class="m_1482972652148710489WordSection1"><p class="MsoNormal"><span lang="EN-US">Use Occam’s razor, there is a very easy explanation for that particular TODO. Namely that no one had the time or effort to fix the checkers mentioned in the comment, and potentially the plethora of others introduced that exploit the early return. </span><span lang="EN-US" style="font-family:"Segoe UI Emoji",sans-serif">😊</span></p><p class="MsoNormal"><u></u> <u></u></p><div style="border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal" style="border:none;padding:0cm"><b>From: </b><a href="mailto:cfe-dev@lists.llvm.org" target="_blank">Donát Nagy via cfe-dev</a><br><b>Sent: </b>2018. október 9., kedd 14:03<br><b>To: </b><a href="mailto:dkszelethus@gmail.com" target="_blank">dkszelethus@gmail.com</a>; <a href="mailto:lewisurn@gmail.com" target="_blank">lewisurn@gmail.com</a><br><b>Cc: </b><a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br><b>Subject: </b>Re: [cfe-dev] avoid loops in the exploded graph?</p></div><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">Hi,<u></u><u></u></p><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">My intuition is that in some situations it is guaranteed that the state will be modified and then the if (NewState!=State) check is unnecessary. In other situations there is a possibility that the state will remain the same (e.g. the expression was already marked as tainted, so nothing changes) and this could theoretically create to a loop edge (an edge from the current node to itself) in the exploded graph.<u></u><u></u></p></div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">A loop edge is obviously undesirable, because it could send graph traversal into infinite loops, so wee need to guarantee that they do not appear in the exploded graph.  As Kristóf wrote, the method CheckerContext::<wbr>addTransitionImpl() always guarantees this with a defensive check (with a TODO to turn it into an assert); but in some checkers it is also tested by the checker itself.<u></u><u></u></p></div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">Donát<u></u><u></u></p></div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">On k, 2018-10-09 at 11:10 +0200, Kristóf Umann via cfe-dev wrote:<u></u><u></u></p></div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><div><div><p class="MsoNormal" style="margin-bottom:12.0pt">Hi!<u></u><u></u></p></div><div><p class="MsoNormal">If you look at how <span style="font-family:"Courier New"">addTransition</span> is implemented, you can see a big TODO before a defensive check:<br><a href="https://github.com/llvm-mirror/clang/blob/7c8e954f273730037b454edf94c8d13123dbedf6/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h#L289" target="_blank">https://github.com/llvm-<wbr>mirror/clang/blob/<wbr>7c8e954f273730037b454edf94c8d1<wbr>3123dbedf6/include/clang/<wbr>StaticAnalyzer/Core/<wbr>PathSensitive/CheckerContext.<wbr>h#L289</a><u></u><u></u></p></div><div><p class="MsoNormal" style="margin-bottom:12.0pt">According to that, it would seem that a checker-side check should always be there.<u></u><u></u></p></div><div><p class="MsoNormal">Let's see what others think of this -- to me it would make more sense to have this check within <span style="font-family:"Courier New"">addTransition</span>, and I'm unsure myself why that TODO is there.<u></u><u></u></p></div></div></div><p class="MsoNormal"><u></u> <u></u></p><div><div><p class="MsoNormal">Lou Wynn via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> ezt írta (időpont: 2018. okt. 9., K, 3:42):<u></u><u></u></p></div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><p><span style="font-size:13.5pt">Hi,</span></p><p><span style="font-size:13.5pt">I read the comment "avoid loops in the exploded graph" in the following snippet of code which is on page 32 of the <a href="https://github.com/haoNoQ/clang-analyzer-guide/releases/download/v0.1/clang-analyzer-guide-v0.1.pdf" target="_blank">workbook</a>.</span></p><p><tt><span style="font-size:13.5pt">LocationContext *LC = C. getLocationContext (); </span></tt><span style="font-size:13.5pt;font-family:"Courier New""><br><tt>ProgramStateRef State = C. getState (); </tt><br><tt>const Expr *E = /* Obtain an expression value of which is untrusted */; </tt><br><tt>ProgramStateRef NewState = State -> addTaint (E, LC ); </tt><br><tt>if ( NewState != State ) // avoid loops in the exploded graph </tt><br><tt>  C. addTransition ( NewState );</tt></span></p><p><span style="font-size:13.5pt">My question is why the new tainted state requires the if statement to prevent loops, while other new states in the book do not have the if statement when C.addTransition(State) is used? Do other states which are not tainted not need to prevent loops? For example, on page 30, when a new state is added, it reads:</span></p><p><tt><span style="font-size:13.5pt">ProgramStateRef State = C. getState (); </span></tt><span style="font-size:13.5pt;font-family:"Courier New""><br><tt>State = modifyState ( State ); // do stuff </tt><br><tt>C. addTransition ( State );</tt></span></p><p><span style="font-size:13.5pt">There is no if state to prevent a loop.</span><u></u><u></u></p><pre>-- </pre><pre>Love,</pre><pre>Lou</pre><pre><u></u> <u></u></pre></div><p class="MsoNormal" style="margin-bottom:12.0pt">______________________________<wbr>_________________<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/<wbr>mailman/listinfo/cfe-dev</a><u></u><u></u></p></blockquote></div><pre>______________________________<wbr>_________________</pre><pre>cfe-dev mailing list</pre><pre><a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a></pre></blockquote><pre style="margin-right:36.0pt;margin-bottom:5.0pt;margin-left:36.0pt"><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a></pre><p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New""><u></u> <u></u></span></p></div></div></blockquote></div></div>