<div dir="ltr">You want to go FunctionDecl to ParmVarDecl to Type to RecordType to RecordDecl to FieldDecl.<div><br></div><div>FunctionDecl has param_begin() and param_end() methods to iterate over the function parameters.</div>

<div>With a ParmVarDecl, call getType() to get the Type.  (Actually a QualType, but when used as a pointer, it forwards calls to Type).</div><div>Call getAsStructureType() on the Type.  If the RecordType returned is not null, then you've found your struct.</div>

<div>Use getDecl() on the RecordType to get the RecordDecl.</div><div>In RecordDecl, there is field_begin() and field_end() for iterating over the FieldDecl's.</div><div><br></div><div>Hope that helps.</div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Tue, Nov 5, 2013 at 1:23 PM, Alejandro Jimenez <span dir="ltr"><<a href="mailto:whilealex@gmail.com" target="_blank">whilealex@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"><div>Hello!</div><div> </div><div>I got lost on documentation about FunctionDecl.</div><div> </div><div>If I have </div><div> </div><div>struct myStruct</div><div>{</div><div>   int param; <--- this is stored in a FieldDecl object</div>

<div>};</div><div>Question1?</div><div>in which Decl Object this structure is stored?</div><div> </div><div>Now when I have </div><div> </div><div>int foo(myStruct X) <--- this is stored in FunctionDecl</div><div> </div>

<div> </div><div>My problem is that I want to validate the FieldDecl object on a function signature, so I want to iterate over this FieldDecl objects if possible when reading a FunctionDecl class. Any ideas or examples how this FieldDecl can be accessed from a FunctionDecl object.</div>
<span class="HOEnZb"><font color="#888888">
<div> </div><div>Alejandro</div></font></span></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>