WebAssembly SIMD load/store instructions.
loadLoads all lanes of a v128 value interpretation with values from a given memory address.
load8_laneLoads a single value from a given memory address into the specified lane of a v128 i8x16 value interpretation.
load16_laneLoads a single value from a given memory address into the specified lane of a v128 i16x8 value interpretation.
load32_laneLoads a single value from a given memory address into the specified lane of a v128 i32x4 value interpretation.
load64_laneLoads a single value from a given memory address into the specified lane of a v128 i64x2 value interpretation.
load8x8_sLoads eight 8-bit integers from a given memory address and sign extends each one to a 16-bit lane, outputting a v128 i16x8 value interpretation.
load8x8_uLoads eight 8-bit integers from a given memory address and zero extends each one to a 16-bit lane, outputting a v128 i16x8 value interpretation.
load16x4_sLoads four 16-bit integers from a given memory address and sign extends each one to a 32-bit lane, outputting a v128 i32x4 value interpretation.
load16x4_uLoads four 16-bit integers from a given memory address and zero extends each one to a 32-bit lane, outputting a v128 i32x4 value interpretation.
load32x2_sLoads two 32-bit integers from a given memory address and sign extends each one to a 64-bit lane, outputting a v128 i64x2 value interpretation.
load32x2_uLoads two 32-bit integers from a given memory address and zero extends each one to a 64-bit lane, outputting a v128 i64x2 value interpretation.
load8_splatLoads a single value from a given memory address into all lanes of a v128 i8x16 value interpretation.
load16_splatLoads a single value from a given memory address into all lanes of a v128 i16x8 value interpretation.
load32_splatLoads a single value from a given memory address into all lanes of a v128 i32x4 value interpretation.
load64_splatLoads a single value from a given memory address into all lanes of a v128 i64x2 value interpretation.
load32_zeroLoads a single value from a given memory address into the first lane of a v128 i32x4 value interpretation, and initializes the other lanes to 0.
load64_zeroLoads a single value from a given memory address into the first lane of a v128 i64x2 value interpretation, and initializes the other lane to 0.
storeStores all lanes of a v128 value interpretation at a given memory address.
store8_laneStores a specified lane of a v128 i8x16 value interpretation at a given memory address.
store16_laneStores a specified lane of a v128 i16x8 value interpretation at a given memory address.
store32_laneStores a specified lane of a v128 i32x4 value interpretation at a given memory address.
store64_laneStores a specified lane of a v128 i64x2 value interpretation at a given memory address.