<div style="font-family: arial, helvetica, sans-serif"><font size="2">On Tue, Jun 19, 2012 at 2:34 PM, Felix Schmitt <span dir="ltr"><<a href="mailto:felix.schmitt@zih.tu-dresden.de" target="_blank">felix.schmitt@zih.tu-dresden.de</a>></span> wrote:<br>
<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I got the following problem:<br>
I need to traverse the AST (currently using RecursiveASTVisitor) and get the<br>
file name for every function declaration.<br>
Currently, I only get the filename for function declarations in my main file but<br>
how do I get these for functions in #included files?<br>
<br>
My relevant code looks like this (srcMgr is the SourceManager):<br>
<br>
bool CMyASTVisitor::VisitFunctionDecl(FunctionDecl* decl)<br>
{<br>
...<br>
<br>
const FileEntry* file_entry =<br>
srcMgr.getFileEntryForID(srcMgr.getFileID(decl->getLocStart()));<br>
<br>
if (file_entry == NULL)<br>
   std::cout << "no file entry" << std::endl;<br>
<br>
...<br>
}<br>
<br>
Is there a way to get these filenames?<br></blockquote><div><br></div><div>Why does file_entry->getName() not work?</div><div><br></div><div>Cheers,</div><div>/Manuel</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
Regards,<br>
Felix<br>
<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>
</blockquote></div><br></font></div>