I don't know if __thread is well-supported enough on compilers to use in LLVM core code.  LLVM has its own support class: ThreadLocal<br><br><a href="http://llvm.org/doxygen/classllvm_1_1sys_1_1ThreadLocal.html">http://llvm.org/doxygen/classllvm_1_1sys_1_1ThreadLocal.html</a><br>
<br><br>And if randr_r() is obsolete, I'm not sure we should be using it.  What platforms have you tested this on?  Is it available on Windows, Mac, BSDs?  If not touching global state is important enough, perhaps we should add a (simple) random number generator to the Support library.  I don't think LLVM would require anything fancy.<br>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Dec 1, 2012 at 2:25 PM, Dmitry Mikushin <span dir="ltr"><<a href="mailto:dmitry@kernelgen.org" target="_blank">dmitry@kernelgen.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Correcting my patch, reg. __thread stuff I'm not very familiar with.<span class="HOEnZb"><font color="#888888"><br>
<br>- D.</font></span><div class="HOEnZb"><div class="h5"><br><br><div class="gmail_quote">2012/12/1 Dmitry Mikushin <span dir="ltr"><<a href="mailto:dmitry@kernelgen.org" target="_blank">dmitry@kernelgen.org</a>></span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Agreed, done.<br><br>One thing I'm not sure about is this statement in docs:<br><br>POSIX.1-2008 marks <b>rand_r</b>() as obsolete.
<br><br>- And... what is the replacement?<div><div><br><br><div class="gmail_quote">2012/12/1 Justin Holewinski <span dir="ltr"><<a href="mailto:justin.holewinski@gmail.com" target="_blank">justin.holewinski@gmail.com</a>></span><br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">If we're keeping the state locally now, perhaps we should store it in a per-thread variable.  I know rand() isn't thread safe to begin with, but it seems like rand_r() can be since it should keep no external state.<br>



<div class="gmail_extra"><br><br><div class="gmail_quote"><div><div>On Sat, Dec 1, 2012 at 11:17 AM, Dmitry Mikushin <span dir="ltr"><<a href="mailto:dmitry@kernelgen.org" target="_blank">dmitry@kernelgen.org</a>></span> wrote:<br>



</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>Dear all,<br><br>In our LLVM-based compiler pipeline a major part of code generation is taken into application runtime. One side-effect of this organization is a need to be very careful about using code that might diverge application state. And we found that simple generation of temporary files over LLVM APIs introduces random noise into the program result. There reason is that LLVM's GetRandomNumber call uses rand(), that clashes with rand() used in application. Taking in account that many client applications developers may be not aware of this at all [and just complain to us, that our compiler is bad because their program is now wrong], we propose switching to self- state maintaining rand() on LLVM side. Attached patch simply replaces the calls to srand() and rand() with a call to rand_r(), which uses static unsigned x value to keep its state locally.<br>




<br>Best,<br>- D.<br>
<br></div></div>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><span><font color="#888888"><br><br clear="all"><br>-- <br><br><div>Thanks,</div><div><br></div><div>Justin Holewinski</div><br>
</font></span></div>
</blockquote></div><br>
</div></div></blockquote></div><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><br><div>Thanks,</div><div><br></div><div>Justin Holewinski</div><br>
</div>