<br><br><div class="gmail_quote">On Tue Aug 26 2014 at 12:44:50 PM Luke Titley <<a href="mailto:luke.titley@gmail.com">luke.titley@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hi my name is Luke Titley,<div><br></div><div>I'm a c++ developer based in London and I'm experimenting with clang libtooling.</div><div>It's really a lot of fun and already I can see the power of using AST matchers for automatic re-factoring.</div>


<div><br></div><div>clang, really does provide a top notch set of tools.</div><div><br></div><div>There's one thing I'm not 100 % clear on.</div><div>Is is possible to create recursive/(self referential) ASTMatcher expressions?</div>


<div><br></div><div>For example, if I wanted a matcher to match this scenario.</div><div><br></div><div>int var = 1;</div><div>int * foo = &var;</div><div>int * bar = foo;</div><div>int * baz = bar;</div><div>... Add infinitum ...</div>


<div><br></div><div>I'd like my matcher to match</div><div>foo</div><div>bar</div><div>and baz</div><div><br></div><div>I want to track every pointer that is initialized with a reference to a variable that is initialized with a value of 1.</div>


<div><br></div><div>I imagine this would be done with some sort of self referential definition. Is that correct ?</div></div></blockquote><div><br></div><div>Well, we have self-referential matchers (equalsBoundNode), but this would also require looping over the initialization sequences, which we don't support yet.</div>
<div><br></div><div>Currently the easiest way is to get a callback for each pointer, and then do the traversal yourself in the callback.</div><div>I'd also be curious whether we can implement matchers that would lead to this, but I think they'd need to be somehow integrated into the matching process (you'd want to memoize based on the matches, otherwise you have an extra O(N) you don't really need).</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"><div dir="ltr"><div>Thanks in advance,</div><div>and thanks for all the hard work!</div>
<div><br></div>

<div>Luke</div><div><br></div></div>
______________________________<u></u>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">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/<u></u>mailman/listinfo/cfe-dev</a><br>
</blockquote></div>