We often bitcast for bitwise ops before bitcasting back to the original value type (promotion etc.):
v16i8 result = bitcast( v16i8, and( bitcast( v2i64, v16i8 x ), bitcast( v2i64, v16i8 y ) ) )
In such cases, we can safely peek through the bitcasts to determine the minimum number of sign bits.