<div dir="ltr">Thank you very much!<div><br></div><div>You're right. The error happens because of some defects in my checker. With the help of Gábor Horváth, I have made some changes to my checker which will use the checkBeginFunction instead of checkPreCall to capture the construcor.</div><div><br></div><div>Regards,</div><div>Xin</div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-07-07 3:14 GMT-07:00 Artem Dergachev <span dir="ltr"><<a href="mailto:noqnoqneo@gmail.com" target="_blank">noqnoqneo@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">There may be various reasons why the analyzer doesn't inline the function; this option allows inlining of allocation calls, but the function may fail to be inlined for a different reason. The logic is complicated and is mostly concentrated in ExprEngine::defaultEvalCall() and ExprEngine::shouldInlineCall() and a few surrounding functions. Whenever i badly want to know why is or isn't a certain function not inlined, i just sit in this code under a debugger and see why he does it.<br>
<br>
I do not remember the current status of C++ allocation functions, but it might be that they're explicitly disabled because of some weird false positives in other checkers, that we didn't have time to fix.<br>
<br>
Generally, though, you should not rely on any function being inlined when making a checker, because we'd never be able to inline all functions. For example, we may skip inlining because the function's body looks too complex. The checker should ideally work safely even when inlining is completely disabled.<span class=""><br>
<br>
<br>
On 7/4/17 2:34 PM, Xin Wang via cfe-dev wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello everyone!<br>
<br>
I am writing a checker to explore the constructor and the destructor. It seems that the analyzer doesn't inline the new operator like/A *a = new A();. /So I set /c++-allocator-inlining /to be true which I think will let the analyzer inline the constructor, but it didn't work. Can anyone explain this?<span class=""><br>
<br>
Look forward to your help!<br>
<br>
Regards,<br>
Xin<br>
<br>
<br></span><span class="">
______________________________<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" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
</span></blockquote>
<br>
</blockquote></div><br></div>