On Fri, Aug 24, 2007 at 02:34:27PM -0400, Ross Ridge wrote:
> Mark Mitchell 
> >Let's assume that the recent change is what we want, i.e., that the
> >answer to (1) is "No, these operations should not be part of the vector
> >extensions because they are not valid scalar extensions."  
> 
> I don't think we should assume that.  If we were to we'd also have
> to change vector casts to work like scalar casts and actually convert
> the values.  (Or like valarray, disallow them completely.)  That would
> force a solution like Paolo Bonzini's to use unions instead of casts,
> making it even more cumbersome.

In C++, you could use reinterpret_cast (meaning that
values are not converted, just reinterpreted as integers of the same
size).  That would avoid the need for unions, you'd just cast.  But this
solution doesn't work for C.

> Using vector casts that behave differently than
> scalar casts has a lot more potential to generate confusion than allowing
> bitwise operations on vector floats does.

I suppose you could have an appropriately named intrinsic for doing
a reinterpret_cast in C (that is, the type would be reinterpreted but it would
be a no-op at machine level).  Then, to do a masking operation you could
write

ovec = __as_float_vector(MASK | __as_int_vector(ivec));

Reply via email to