> 1. How do you model round to +Inf (avg_floor) and round to -Inf (avg_ceil) ?
That's just specified by the +1 or the lack of it in the original pattern. Actually the IFN is just a detour because we would create perfect code if not for the fallback. But as there is currently now way to check for the existence of a narrowing shift we cannot circumvent the fallback. > 2. Is it possible we could use vaadd[u] to model avg ? In principle yes (I first read it wrong that overflow must not happen but the specs actually say that it does not happen). However, we would need to set a rounding mode before vaadd or check its current value and provide a fallback. Off the spot I can't imagine a workaround like two vaadds or so. Regards Robin