<div dir="ltr">The compiler itself has no idea where your calls point to. It just requires that you provide declaration for functions and classes you're using and these are pulled in via includes. <div><br></div><div>That doesn't mean that you can't detect this yourself. If your library headers are located inside /mylib you could:</div>

<div><br></div><div>- get the callee from CallExpr</div><div>- get the location of the function or member declaration</div><div>- and ask SourceManager what file it belongs to</div><div>- compare paths.</div><div><br></div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Aug 12, 2014 at 10:23 AM, Sandeep K Chaudhary <span dir="ltr"><<a href="mailto:babbusandy2006@gmail.com" target="_blank">babbusandy2006@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Guys,<div><br></div><div>I am trying to identify all the function calls made to a particular library. While visiting all the statements in the Clang AST, I can find the "CallExpr" but I don't know how I can figure out if the callee belongs to a particular library.</div>


<div><br></div><div>What characteristics a callee belonging to a library will have? Is there even a way to distinguish a callee in a library from a  callee defined in the same source file? Please let me know.</div><div><br>


</div><div>Thanks a lot ! </div><div><br></div><div>Regards,<br>Sandeep.</div></div>
<br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div>