MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / get_f32x4

Method get_f32x4

pulley/src/interp.rs:727–730  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

725 }
726
727 fn get_f32x4(&self) -> [f32; 4] {
728 let val = unsafe { self.0.f32x4 };
729 val.map(|e| f32::from_bits(u32::from_le(e)))
730 }
731
732 fn set_f32x4(&mut self, val: [f32; 4]) {
733 self.0.f32x4 = val.map(|e| e.to_bits().to_le());

Callers 15

vsubf32x4Method · 0.80
vmulf32x4Method · 0.80
vdivf32x4Method · 0.80
vtrunc32x4Method · 0.80
vfloor32x4Method · 0.80
vceil32x4Method · 0.80
vnearest32x4Method · 0.80
vsqrt32x4Method · 0.80
vnegf32x4Method · 0.80
vaddf32x4Method · 0.80
vi32x4_from_f32x4_sMethod · 0.80
vi32x4_from_f32x4_uMethod · 0.80

Calls 1

mapMethod · 0.45

Tested by

no test coverage detected