<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Jan 14, 2015 at 12:47 PM, Joerg Sonnenberger <span dir="ltr"><<a href="mailto:joerg@britannica.bec.de" target="_blank">joerg@britannica.bec.de</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"><span class="">On Sun, Jan 11, 2015 at 02:21:53PM +0100, Joerg Sonnenberger wrote:<br>
> > Fortunately, pixman is the only example of code I have seen that was<br>
> > regressed by this, and the code in pixman I think can even fail with GCC<br>
> > under the right circumstances, so I don't see this as a problem.<br>
><br>
> Not true, variants like the attached code have been in use for a while.<br>
> In fact, my clang 3.5.0 build does the correct thing here where ToT now<br>
> complains.<br>
<br>
</span>I am still waiting for an actual test case where ToT or 3.5 didn't<br>
already bail out. So far this is strictly a regression. Code that<br>
compiled before failed and as the given example, some code no longer can<br>
be expressed optimally. It has been discussed on IRC that the x86<br>
backend is somewhat weak with regards to range checks of immediates, but<br>
that is a problem with or without inline asm constrraints. In summary:<br>
I'd like to see this reverted for ToT and 3.6.</blockquote><div><br></div><div>I disagree, this is just a new instance of an old problem. See the way we define this Intel intrinsic:</div><div><br></div><div>#define _mm_shuffle_pi16(a, n) __extension__ ({ \</div><div>  __m64 __a = (a); \</div><div>  (__m64)__builtin_ia32_pshufw((__v4hi)__a, (n)); })</div><div><br></div><div>This builtin only works if 'n' is an integer constant. We cannot use an always_inline wrapper because inlining happens after semantic analysis and we wish to avoid diagnostics after semantic analysis. There are many similar intrinsics with this problem, and we always use macros.</div><div><br></div><div>This change simply allows us to reject bad code earlier in a more user friendly way.</div></div></div></div>