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

Method vneg64x2

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

Source from the content-addressed store, hash-verified

5142
5143 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
5144 fn vneg64x2(&mut self, dst: VReg, src: VReg) -> ControlFlow<Done> {
5145 let a = self.state[src].get_i64x2();
5146 self.state[dst].set_i64x2(a.map(|i| i.wrapping_neg()));
5147 ControlFlow::Continue(())
5148 }
5149
5150 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
5151 fn vnegf64x2(&mut self, dst: VReg, src: VReg) -> ControlFlow<Done> {

Callers

nothing calls this directly

Calls 4

get_i64x2Method · 0.80
set_i64x2Method · 0.80
wrapping_negMethod · 0.80
mapMethod · 0.45

Tested by

no test coverage detected