<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Aug 19, 2014 at 3:10 PM, Rafael Espíndola <span dir="ltr"><<a href="mailto:rafael.espindola@gmail.com" target="_blank">rafael.espindola@gmail.com</a>></span> wrote:<br>
<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"><div class="">> There are two reasons this doesn’t work:<br>

><br>
> (1) Cases where I might want to set a debug variable for the WebKit JIT but not for Mesa - if the option storage is global it will get overwritten for all users<br>
<br>
</div>This really comes up? Really, we are not talking -O2/-O3 or inlining<br>
thresholds. We are talking things like lcr-max-depth being needed for<br>
a debugging session.<br>
<div class=""><br>
> (2) cl::ParseCommandLineOptions today is C++ API, WebKit restricts itself to the C API, so at the least we’d need to expose it as part of the C API<br>
<br>
</div>This seems a much smaller change than adding a LLVMConfig object.<br>
<div class=""><br>
>> * We don't need a LLVMConfig object that gets passed around.<br>
><br>
> For the sake of this discussion, let’s just scrap my phase two idea for a configuration object and treat that as a separate issue.<br>
<br>
</div>But it makes a big difference on how the first phase is handled. If we<br>
don't want the LLVMConfig object, the first phase should really just<br>
remove the static constructors and not add a stringly typed interface.<br>
<div class=""><br>
> I think that there are advantages to a string-based interface. Sean Silva actually suggested that interface when I first sent out an email about our plans to rework command line options back on 8/6. Based on Sean’s feedback and a few discussions I had offline with other LLVM contributors I thought a stringly typed interface was the best approach to eliminating both the static constructors and the static storage which are explicit goals for our project.<br>

<br>
</div>Sorry I missed the original discussion. Sean, would you mind<br>
summarizing the why of the stringly interface? Even if we do need a<br>
LLVMConfig object (seems unlikely), I would still suggest using some<br>
other key format. With strings we would suddenly be exposing every<br>
command line option to the C API, which seems highly undesirable.<br></blockquote><div><br></div><div>I think that what/how/if we expose in the C API is orthogonal to my suggestions, which are more about removing the static initializers and global state. The stringly typed interface is motivated by the need to late-resolve which options there are and what their types are; this need itself arises from eliminating the static initializers which serve as a backdoor for globally propagating type and option information on startup.</div>
<div><br></div><div>For more details, see my lengthy musings that I just replied to the OP.<br></div><div><br></div><div>Personally, I am very wary of exposing a stringly typed interface in the C API.</div><div><br></div>
<div>-- Sean Silva</div><div> </div><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">
<br>
Cheers,<br>
Rafael<br>
</blockquote></div><br></div></div>