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

Method vfloor64x2

pulley/src/interp.rs:3607–3614  ·  view source on GitHub ↗
(&mut self, dst: VReg, src: VReg)

Source from the content-addressed store, hash-verified

3605
3606 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
3607 fn vfloor64x2(&mut self, dst: VReg, src: VReg) -> ControlFlow<Done> {
3608 let mut a = self.state[src].get_f64x2();
3609 for elem in a.iter_mut() {
3610 *elem = elem.wasm_floor();
3611 }
3612 self.state[dst].set_f64x2(a);
3613 ControlFlow::Continue(())
3614 }
3615
3616 fn fceil32(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3617 let a = self.state[src].get_f32();

Callers

nothing calls this directly

Calls 4

get_f64x2Method · 0.80
wasm_floorMethod · 0.80
set_f64x2Method · 0.80
iter_mutMethod · 0.45

Tested by

no test coverage detected