My guess is - these method have managed implementation behind them involving ConvertScalarToVector128[U]Int64() (MOVQ xmm, r64) unavailable in 32-bit mode.
Since these are all just helper methods not necessarily mapped to some specific HW intrinsic directly, my understanding is that the implementation should behave considering current process bitness - eg. use set of 32-bit HW intrinsics to setup the result when in 32-bit mode.
My guess is - these method have managed implementation behind them involving
ConvertScalarToVector128[U]Int64()(MOVQ xmm, r64) unavailable in 32-bit mode.Since these are all just helper methods not necessarily mapped to some specific HW intrinsic directly, my understanding is that the implementation should behave considering current process bitness - eg. use set of 32-bit HW intrinsics to setup the result when in 32-bit mode.