<div class="gmail_quote">On Thu, Dec 8, 2011 at 1:56 AM, eyasu getahun <span dir="ltr"><<a href="mailto:eya.get@gmail.com">eya.get@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<font color="#330099"><font size="2"><font face="georgia,serif">Hello,<br><br>We can get AST after a number of clang's  semantical and syntactical analysis on the source file. I would like to know where is the place that stores the resulting AST's. Is there any database that can store the intermediate results while parsing source files? Or is AST built on the fly automatically without being stored anywhere?</font></font></font></blockquote>
<div><br></div><div>This last is the most accurate description. The AST is not (generally) persisted, it is built as we parse the file.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<font color="#330099"><font size="2"><font face="georgia,serif"> To clarify more, I can dump AST for the given source code by using clang command. where is the source of this dumped file? I guess, when running the dump command, it automatically parse the source and and build AST on the fly and show the result. </font></font></font></blockquote>
<div><br></div><div>Correct.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><font color="#330099"><font size="2"><font face="georgia,serif">How someone able to capture AST if he/she needs to transform it.</font></font></font></blockquote>
<div><br></div><div>Typically it is transformed in memory after parsing has constructed it. If you need to serialize the AST to disk, there are serialization routines for the AST as well as deserialization routines to read it back off of the disk. All of the AST transformations happen on a complete AST held in memory. How you get it there and what you do afterward are orthogonal questions. </div>
</div>