<div dir="ltr"><div class="gmail_extra"><div>On Thu, Aug 22, 2013 at 12:54 PM, Shankar Easwaran <span dir="ltr"><<a href="mailto:shankare@codeaurora.org" target="_blank">shankare@codeaurora.org</a>></span> wrote:<br>
</div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi Nick,<br>
<br>
I am planning to work on adding support for definining expressions for the Gnu flavor.<br>
<br>
Currently Gnu ld supports an option --defsym symbol=expression. The expression may be composed of other symbols.<br>
Any symbol that appears in the expression, gets its value from the output symbol value (address of the symbol in the output file).<br>
<br>
In addition the symbol only gets defined if and only if there is a relocation, that refers to the symbol.<br>
<br>
I was wondering how to accomplish this with lld. One thought that I had was to take list of  user defined symbols and the expressions associated with the symbols and evaluate at the time of writing the output file.<br>
The problem with that is<br>
<br>
a) if the expression uses a symbol thats not defined anywhere else except the defsym expression, the symbol would get garbage collected.<br>
b) Supporting linker scripts which create new symbols, will be an issue.<br>
<br>
What are your thoughts ? </blockquote><div><br></div><div>Linker scripts have the same need. My idea for this was to allow atoms to have an associated expression tree and would have references to all symbols in that tree. The resolver wouldn't need any special handling for this, and the backend would just need to evaluate the expression at the end.</div>
<div><br></div><div>- Michael Spencer </div></div></div></div>