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

Method xctz32

pulley/src/interp.rs:2435–2439  ·  view source on GitHub ↗
(&mut self, dst: XReg, src: XReg)

Source from the content-addressed store, hash-verified

2433 }
2434
2435 fn xctz32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> {
2436 let a = self.state[src].get_u32();
2437 self.state[dst].set_u32(a.trailing_zeros());
2438 ControlFlow::Continue(())
2439 }
2440
2441 fn xctz64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> {
2442 let a = self.state[src].get_u64();

Callers

nothing calls this directly

Calls 3

trailing_zerosMethod · 0.80
get_u32Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected