[cfe-dev] Why no NSW/NUW with SHL instruction?

Reid Kleckner rnk at google.com
Fri Nov 21 09:55:26 PST 2014


On Fri, Nov 21, 2014 at 9:39 AM, Ryan Taylor <ryta1203 at gmail.com> wrote:

> So again, I'm not sure why this is the case. I know this has probably been
> discussed ad nauseam (as evidenced by the multiple posts asking about this,
> including mine), but it seems pretty clear cut that you'd want separate
> shl, one for logical (non-overflow) and one for arithmetic (overflow). In
> fact, you might want a logical, signed arith and unsigned arith, at least
> in the hardware.
>
> I don't care if clang only produces shl, I'm more curious how to get the
> signed info to the backend for shl when it's not producing a nsw/nuw flag?
> I'm currently not sure how this would be done, is there another arch that
> manages this somehow?
>

LLVM defines left shift overflow to produce an undefined value, so I don't
think it matters which machine instruction you use to implement shl, as
long as it doesn't trap. The user can't rely on the result being any thing
in particular. You should be able to just always emit logical or arithmetic
left shift and the program will behave correctly.

I think this is kind of like asking what to do with the 32 high bits in edx
after 32-bit multiplication on x86. LLVM doesn't define a way to get at
them, so you can just drop it on the floor. LLVM doesn't define what
happens on shl overflow, so you can produce any result you like.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20141121/b6df0c5f/attachment.html>


More information about the cfe-dev mailing list