<div dir="ltr">Metadata will do exactly this, but the cost is that because you didn't teach the optimizers about your metadata, they are free to drop it on the floor whenever they optimize.<div><br></div><div>If you want something persistent, consider adding your own intrinsics or function calls that are appropriately annotated as readnone etc and hope they don't affect optimization too much.</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Oct 23, 2013 at 12:29 PM, Alejandro Jimenez Martinez <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 lang="EN-US" link="#0563C1" vlink="#954F72"><div><p class="MsoNormal">I’d like to evaluate a couple of extensions to a C-like language, and I was hoping to use Clang and LLVM to do that.<u></u><u></u></p>
<p class="MsoNormal">I ran into a couple of issues, and I’d appreciate if you could advise on the best practices to address them.<u></u><u></u></p><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">-1- I modified Clang parser to accept the extension syntax (say a property for a function, statement, parameter, or variable), <u></u><u></u></p>
<p class="MsoNormal">but how do I propagate the state from Clang to LLVM IR?<u></u><u></u></p><p class="MsoNormal">I need the state to be “persistent”; i.e., IR assembly or bitcode should contain it, and IR reader should get it into memory when deserializing.<u></u><u></u></p>
<p class="MsoNormal">How do I do this without changing LLVM IR, IR readers and writers? Is there any way to attach “custom” state to IR classes?<u></u><u></u></p><p class="MsoNormal">I noticed that there are annotations and metadata mechanisms. Should I use one of these, which one, or there are better ways?<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">-2- I need to keep this custom state (per functions, instruction, operand, variable) in LLVM IR for my optimization passes.<u></u><u></u></p><p class="MsoNormal">
In addition, I’d like to leverage a few existing optimizations: the extra state will not interfere with these, but I do not want to “educate” the existing optimizations to ignore it (I still need it preserved though).<u></u><u></u></p>
<p class="MsoNormal">What is the best way to do this? Should I subclass existing IR classes, use metadata, use annotations, or do it somehow else?<u></u><u></u></p><p class="MsoNormal">I’ll need to query and modify extra state frequently, so the mechanism should be performant.<u></u><u></u></p>
<p class="MsoNormal">Some of the state should also make it to the persistent IR forms.<u></u><u></u></p><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">Thanks in advance,<u></u><u></u></p><p class="MsoNormal">
Alex<u></u><u></u></p><p class="MsoNormal"><u></u> <u></u></p></div></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>