fn psadbw<'tcx>(
ecx: &mut MiriInterpCx<'tcx>,
left: &OpTy<'tcx>,
right: &OpTy<'tcx>,
dest: &MPlaceTy<'tcx>,
) -> InterpResult<'tcx, ()>Expand description
Compute the absolute differences of packed unsigned 8-bit integers
in left and right, then horizontally sum each consecutive 8
differences to produce unsigned 16-bit integers, and pack
these unsigned 16-bit integers in the low 16 bits of 64-bit elements
in dest.
https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_sad_epu8 https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_sad_epu8 https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_sad_epu8