<div dir="ltr"><div class="gmail_quote">On Sat, Mar 28, 2015 at 11:50 PM Steven Lu <<a href="mailto:stevenlu443@gmail.com">stevenlu443@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">I am creating a source instrumentation tool, and although the primary mode of operation is additive in nature (which is quite a comfortable subset of general C++ source-to-source transformation), I would like to get a better handle on where things stand. <div><br></div><div>I am looking at <a href="http://clang.llvm.org/extra/doxygen/namespaceclang_1_1replace.html" target="_blank">http://clang.llvm.org/extra/doxygen/namespaceclang_1_1replace.html</a> and I see that this appears to have friendly code that maybe I could use to help me get helpful structures to browse and reveal any conflicts in my tool. The tool is a RecursiveASTVisitor based tool that uses AST Matchers. </div><div><br></div><div>However I find in my checked-out source tree that ApplyReplacements.h lives here: tools/clang/tools/extra/clang-apply-replacements/include/clang-apply-replacements/Tooling/ApplyReplacements.h</div><div><br></div><div>This seems kind of secluded and I am unable to find examples that use ApplyReplacements.h along with a workflow that seems to use clang tooling Replacements. </div><div><br></div><div>So at this point my deduction is that ApplyReplacements.h might be old, or some one-off code for another example tool or unit tests. Maybe Replacements is newer and I have to find something else to use with my Replacements. </div></div></blockquote><div><br></div><div>applyAllReplacements from include/clang/Tooling/Core/Replacement.h? </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>Now I have found in here: (<a href="http://clang.llvm.org/doxygen/namespaceclang_1_1tooling.html" target="_blank">http://clang.llvm.org/doxygen/namespaceclang_1_1tooling.html</a>) the function </div><div><br></div><div>void clang::tooling::deduplicate(std::vector< Replacement > & Replaces, std::vector< Range > & <span style="white-space:pre-wrap">   </span>Conflicts)</div><div><br></div><div>This seems promising... So I grep the llvm source tree once again for references to this function and -- lo and behold -- I am staring at the guts of ApplyReplacements.h again!! </div><div><br></div><div>Maybe I need some hints about how I can fit these puzzle pieces together. I have found that FileToReplacementMap and TUReplacements are just typedefs and I eventually traced it back to collectReplacementsFromDirectory which seems to be infiltrating replacements stored in YAML (or something to this effect). This is cool, but I guess I'm more interested in how to get to use the ApplyReplacements code with my non-YAML Replacements that are generated on the fly with my RecursiveASTVisitor.</div><div><br></div><div>Thanks for reading my question.</div><div><br></div><div>Steven</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></div>